Skip to content

triangle-alert

warning • alert • danger • exclamation mark • linter

Created:

v0.0.0

Last changed:

v0.352.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmere
html
<i data-lucide="triangle-alert"></i>
tsx
import { TriangleAlert } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-triangle-alert"></div>