Skip to content

shield-alert

unshielded • cybersecurity • insecure • unsecured • safety • unsafe • protection • unprotected • guardian • unguarded • unarmored • unarmoured • defenseless • defenceless • undefended • defender • blocked • stopped • intercepted • interception • saved • thwarted • threat • prevention • unprevented • antivirus • vigilance • vigilant • detection • detected • scanned • found • exploit • vulnerability • vulnerable • weakness • infection • infected • comprimised • data leak • audited • admin • verification • unverified • uncertified • warning • emergency • attention • urgent • alarm • crest • bravery • strength • tough • attacked • damaged • injured • hit • expired • disabled • inactive • error • exclamation mark • !

Created:

v0.14.0

Last changed:

v0.340.0

Contributors:

mittalyashuericfenniskarsa-mistmere
html
<i data-lucide="shield-alert"></i>
tsx
import { ShieldAlert } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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