Skip to content

shredder

file • paper • tear • cut • delete • destroy • remove • erase • document, • destruction • secure • security • confidential • data • trash • dispose • disposal • information • waste • permanent

Created:

v0.497.0

Last changed:

v0.497.0

Contributors:

Alirashidycolebemisdanielbayleyericfennisjguddaskarsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="shredder"></i>');  
tsx
import { Shredder } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-shredder"></div>

See this icon in action

Bug
Feature
Shredder
112
8
11