html
<i data-lucide="badge-alert"></i>
tsx
import { BadgeAlert } from 'lucide-react';
const App = () => {
return (
<BadgeAlert />
);
};
export default App;
vue
<script setup>
import { BadgeAlert } from 'lucide-vue-next';
</script>
<template>
<BadgeAlert />
</template>
svelte
<script>
import { BadgeAlert } from 'lucide-svelte';
</script>
<BadgeAlert />
tsx
import { BadgeAlert } from 'lucide-preact';
const App = () => {
return (
<BadgeAlert />
);
};
export default App;
tsx
import { BadgeAlert } from 'lucide-solid';
const App = () => {
return (
<BadgeAlert />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, BadgeAlert } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ BadgeAlert })
],
})
// app.component.html
<lucide-icon name="badge-alert"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-badge-alert"></div>