跳转到内容

square-dashed-x

deselect • unselect • delete • select • selection • border • width • layout • style • design • rectangular • marquee • box • rectangle • aspect ratio • 1:1

创建时间:

v0.0.0

最后修改:

v0.0.0

Contributors:

llaenowydmishkaioericfenniskarsa-mistmerejguddaschessurismeethanhazel
html
<script>
import { createIcons, SquareDashedX } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Square
112
8
11