Skip to content

eraser

pencil • drawing • undo • delete • clear

Created:

v0.20.0

Last changed:

v0.62.0

Contributors:

maxwellitokarsa-mistmere
html
<i data-lucide="eraser"></i>
tsx
import { Eraser } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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