shield-off
  
  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>
  
  dart
  
Icon(LucideIcons.shield-off);

