File: badge.md | Updated: 11/15/2025
Return to top
check • verified • unverified
VanillaReactVueSveltePreactSolidAngularIcon font
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>
BadgeCancel
Bug
Feature
Badge
Documents Readme Badge 12
112
8
11
2
badge-alert
badge-cent
badge-check
badge-dollar-sign
badge-euro
badge-indian-rupee
badge-info
badge-japanese-yen
badge-minus
badge-percent
badge-plus
badge-pound-sterling
badge-question-mark
badge-russian-ruble
badge-swiss-franc
badge-turkish-lira
badge-x
file-badge