Skip to content

square-centerline-dashed-horizontal

reflect • mirror • alignment • dashed

Created:

v0.80.0

Last changed:

v0.0.0

Contributors:

ericfenniskarsa-mistmere
html
<script>
import { createIcons, squareCenterlineDashedHorizontal } from 'lucide';

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

<i data-lucide="square-centerline-dashed-horizontal"></i>  
tsx
import { SquareCenterlineDashedHorizontal } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Square
112
8
11