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