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

Skip to content

tie

lab

neckwear • gentleman • mens • boys • store • clothing • clothes • accessories • apparel • attire • outfit • fashion • formal • fancy • dressy • smart • classic • refined • elegant • evening • black tie event • occasion • gathering • dinner • restaurant • waiter • uniform • service • serve

Contributors:

danielbayley
html
<script>
import { createIcons } from 'lucide';
import { tie } from '@lucide/lab';

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

<i data-lucide="tie"></i>  
tsx
import { Icon } from 'lucide-react';
import { tie } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={tie} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { tie } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="tie" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { tie } from '@lucide/lab';
</script>

<Icon iconNode={tie} />
tsx
import { Icon } from 'lucide-preact';
import { tie } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={tie} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { tie } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={tie} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { tie } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="Tie"></lucide-icon>

看看这个图标的实际效果

错误
功能
Tie
112
8
11