Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

bug-off

issue • fixed • resolved • testing • debug • code • insect • kill • exterminate • pest control

创建时间:

v0.270.0

最后修改:

v0.564.0

Contributors:

danielbayleyjamiemlawjguddas
html
<script>
import { createIcons, bugOff } from 'lucide';

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

<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';
</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
<div class="icon-bug-off"></div>

看看这个图标的实际效果

错误
功能
Bug
112
8
11