Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

line-style

line • stroke • style • dashed • border

创建时间:

v1.2.0

最后修改:

v1.2.0

Contributors:

dg-ac
html
<script>
import { createIcons, lineStyle } from 'lucide';

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

<i data-lucide="line-style"></i>  
tsx
import { LineStyle } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="line-style"></lucide-icon>
html
<div class="icon-line-style"></div>

看看这个图标的实际效果

错误
功能
Line
112
8
11