Skip to content

strikethrough

cross out • delete • remove • format

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="strikethrough"></i>
tsx
import { Strikethrough } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-strikethrough"></div>
dart
Icon(LucideIcons.strikethrough);