bell-ring
  
  html
  
<i data-lucide-name="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>
  
  dart
  
Icon(LucideIcons.bell-ring);

