Skip to content

bell-dot

alarm • notification • sound • reminder • unread

Created:

v0.183.0

Last changed:

v0.183.0

Contributors:

danielbayley
html
<i data-lucide="bell-dot"></i>
tsx
import { BellDot } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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