跳转到内容

square-dashed-x-corner

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, SquareDashedXCorner } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Square
112
8
11