Skip to content

remove-formatting

text • font • typography • format • x • remove • delete • times • clear

Created:

v0.115.0

Last changed:

v0.115.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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