Skip to content

shield-x

unshielded • cybersecurity • insecure • unsecured • safety • unsafe • protection • unprotected • guardian • unguarded • unarmored • unarmoured • defenseless • defenceless • undefended • defender • blocked • stopped • intercepted • interception • saved • thwarted • threat • prevention • prevented • antivirus • vigilance • vigilant • detection • detected • scanned • found • exploit • vulnerability • vulnerable • weakness • infection • infected • comprimised • data leak • audited • admin • verification • unverified • inactive • cancel • error • wrong • false • crest • bravery • attacked • damaged • injured • hit • dead • deceased • expired • eliminated • exterminated

Created:

v0.14.0

Last changed:

v0.340.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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