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