Skip to content

germ-off

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, GermOff } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Germ
112
8
11