Skip to content

remove-formatting-square

lab

delete • clear • cancel • normalise • normalize • styling • plain text • font • typography • slab serif • writing • writer • prose • content • markdown • markup • x • times

js
import { createIcons, icons } from 'lucide';
import { removeFormattingSquare } from '@lucide/lab';

createIcons({
  icons: {
    removeFormattingSquare
  }
});

document.body.append('<i data-lucide="remove-formatting-square"></i>');  
tsx
import { Icon } from 'lucide-react';
import { removeFormattingSquare } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={removeFormattingSquare} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { removeFormattingSquare } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="removeFormattingSquare" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { removeFormattingSquare } from '@lucide/lab';
</script>

<Icon iconNode={removeFormattingSquare} />
tsx
import { Icon } from 'lucide-preact';
import { removeFormattingSquare } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={removeFormattingSquare} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { removeFormattingSquare } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={removeFormattingSquare} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { removeFormattingSquare } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="removeFormattingSquare"></lucide-icon>

See this icon in action

Bug
Feature
Remove
112
8
11