js
  
import { createIcons, icons } from 'lucide';
createIcons({ icons });
document.body.append('<i data-lucide="badge"></i>');  
  
  tsx
  
import { Badge } from 'lucide-react';
const App = () => {
  return (
    <Badge />
  );
};
export default App;
  
  vue
  
<script setup>
import { Badge } from 'lucide-vue-next';
</script>
<template>
  <Badge />
</template>
  
  svelte
  
<script>
import { Badge } from 'lucide-svelte';
</script>
<Badge />
  
  tsx
  
import { Badge } from 'lucide-preact';
const App = () => {
  return (
    <Badge />
  );
};
export default App;
  
  tsx
  
import { Badge } from 'lucide-solid';
const App = () => {
  return (
    <Badge />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, Badge } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ Badge })
  ],
})
// app.component.html
<lucide-icon name="badge"></lucide-icon>
  
  html
  
<div class="icon-badge"></div>See this icon in action
 Bug 
 Feature 
 Badge
 112 
 8 
 11 

