Skip to content

bell-ring

alarm • notification • sound • reminder

Created:

v0.15.15

Last changed:

v0.183.0

Contributors:

ericfennisdanielbayley
html
<i data-lucide="bell-ring"></i>
tsx
import { BellRing } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-bell-ring"></div>