Skip to content

ban

cancel • no • stop • forbidden • prohibited • error • incorrect • mistake • wrong • failure • circle • slash • null • void

Created:

v0.0.0

Last changed:

v0.245.0

Contributors:

danielbayley
html
<i data-lucide="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>