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
js
import { createIcons, icons } from 'lucide';
import { tie } from '@lucide/lab';

createIcons({
  icons: {
    tie
  }
});

document.body.append('<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 })
  ],
})

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

See this icon in action

Bug
Feature
Tie
112
8
11