Lucide v1 is out! You're looking at the site for v1, for v0 go to v0 site

Skip to content

bell-check

alarm • notification • sound • reminder

Created:

v1.10.0

Last changed:

v1.10.0

Contributors:

colebemiscsandmanericfennisdanielbayleypettelau
html
<script>
import { createIcons, bellCheck } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Bell
112
8
11