ban
  
  html
  
<i data-lucide-name="ban"></i>
  
  tsx
  
import { Ban } from 'lucide-react';
const App = () => {
  return (
    <Ban />
  );
};
export default App;
  
  vue
  
<script setup>
  import { Ban } from 'lucide-vue-next';
</script>
<template>
  <Ban />
</template>
  
  svelte
  
<script>
import { Ban } from 'lucide-svelte';
</script>
<Ban />
  
  tsx
  
import { Ban } from 'lucide-preact';
const App = () => {
  return (
    <Ban />
  );
};
export default App;
  
  tsx
  
import { Ban } from 'lucide-solid';
const App = () => {
  return (
    <Ban />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, Ban } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ Ban })
  ],
})
// app.component.html
<lucide-icon name="ban"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-ban"></div>
  
  dart
  
Icon(LucideIcons.ban);

