Skip to content

alert-octagon

warning • alert • danger • exclamation mark

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="alert-octagon"></i>
tsx
import { AlertOctagon } from 'lucide-react';

const App = () => {
  return (
    <AlertOctagon />
  );
};

export default App;
vue
<script setup>
  import { AlertOctagon } from 'lucide-vue-next';
</script>

<template>
  <AlertOctagon />
</template>
svelte
<script>
import { AlertOctagon } from 'lucide-svelte';
</script>

<AlertOctagon />
tsx
import { AlertOctagon } from 'lucide-preact';

const App = () => {
  return (
    <AlertOctagon />
  );
};

export default App;
tsx
import { AlertOctagon } from 'lucide-solid';

const App = () => {
  return (
    <AlertOctagon />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, AlertOctagon } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ AlertOctagon })
  ],
})

// app.component.html
<lucide-icon name="alert-octagon"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-alert-octagon"></div>
dart
Icon(LucideIcons.alert-octagon);