Lucide v1 is out! You're looking at the site for v1, for v0 go to v0 site

Skip to content

square-dashed-text

find • search • selection • dashed

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

danielbayley
html
<script>
import { createIcons, squareDashedText } from 'lucide';

createIcons({
  icons: {
    squareDashedText
  }
});
</script>

<i data-lucide="square-dashed-text"></i>  
tsx
import { SquareDashedText } from 'lucide-react';

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

export default App;
vue
<script setup>
import { SquareDashedText } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="square-dashed-text"></lucide-icon>
html
<div class="icon-square-dashed-text"></div>

See this icon in action

Bug
Feature
Square
112
8
11