Skip to content

trash-off

empty • deletion • cleanup • junk • clear • garbage • delete • remove • bin • trash • waste • recycle • discard • rubbish • disabled • off • prevent • locked • unavailable • protected

Created:

v1.42.0

Last changed:

v1.42.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmeredrewcobleRH
html
<script>
import { createIcons, TrashOff } from 'lucide';

createIcons({
  icons: {
    TrashOff
  }
});
</script>

<i data-lucide="trash-off"></i>  
tsx
import { TrashOff } from 'lucide-react';

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

export default App;
vue
<script setup>
import { TrashOff } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="trash-off"></lucide-icon>
html
<div class="icon-trash-off"></div>

See this icon in action

Bug
Feature
Trash
112
8
11