Skip to content

germ

virus • microbe • bacterium • bacteria • germ • organism • cilia • pathogen • infection • disease • contagion • contamination • microbiology • health • medicine • biology • science • microorganism • pandemic • epidemic • outbreak • amoeba • flu • security • single cell • unicellular • vaccine • immunity • quarantine

Created:

v1.41.0

Last changed:

v1.41.0

Contributors:

rrod497karsa-mistmere
html
<script>
import { createIcons, Germ } from 'lucide';

createIcons({
  icons: {
    Germ
  }
});
</script>

<i data-lucide="germ"></i>  
tsx
import { Germ } from 'lucide-react';

const App = () => {
  return (
    <Germ />
  );
};

export default App;
vue
<script setup>
import { Germ } from '@lucide/vue';
</script>

<template>
  <Germ />
</template>
svelte
<script>
import { Germ } from 'lucide-svelte';
</script>

<Germ />
tsx
import { Germ } from 'lucide-preact';

const App = () => {
  return (
    <Germ />
  );
};

export default App;
tsx
import { Germ } from 'lucide-solid';

const App = () => {
  return (
    <Germ />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Germ } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ Germ })
  ],
})

// app.component.html
<lucide-icon name="germ"></lucide-icon>
html
<div class="icon-germ"></div>

See this icon in action

Bug
Feature
Germ
112
8
11