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

Skip to content

bell-electric

fire alarm • flames • smoke • firefighter • fireman • department • brigade • station • emergency • alert • safety • school bell • period break • recess • doorbell • entrance • entry • ring • reception

创建时间:

v0.298.0

最后修改:

v0.507.0

Contributors:

danielbayleyjguddas
html
<script>
import { createIcons, bellElectric } from 'lucide';

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

<i data-lucide="bell-electric"></i>  
tsx
import { BellElectric } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Bell
112
8
11