Skip to content

shield-ban

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 • cancel • error • crest • bravery • attacked • damaged • injured • hit • expired • eliminated • disabled • inactive • /

Created:

v0.0.0

Last changed:

v0.340.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="shield-ban"></i>
tsx
import { ShieldBan } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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