Skip to content

bug-off

debug • code • insect • kill • exterminate • pest control

Created:

v0.270.0

Last changed:

v0.270.0

Contributors:

danielbayley
html
<i data-lucide="bug-off"></i>
tsx
import { BugOff } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { BugOff } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="bug-off"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-bug-off"></div>