Skip to content

shield-off

unshielded • cybersecurity • insecure • unsecured • safety • unsafe • protection • unprotected • guardian • unguarded • unarmored • unarmoured • defenseless • defenceless • undefended • defender • interception • threat • prevention • unprevented • antivirus • detection • undetected • exploit • vulnerability • vulnerable • weakness • infected • infection • comprimised • data leak • unaudited • admin • verification • unverified • inactive • cancelled • error • crest • bravery • damaged • injured • hit • expired • eliminated

Created:

v0.0.0

Last changed:

v0.340.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmere
html
<i data-lucide="shield-off"></i>
tsx
import { ShieldOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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