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

Skip to content

vest

lab

underwear • undergarment • mens • boys • top • waistcoat • sleeveless • sportswear • exercise • fitness • summer holiday • beachwear • bathing • seaside • store • clothing • clothes • apparel • attire • fashion • thread • cotton • casual • slim fit • regular

Contributors:

danielbayleykarsa-mistmere
html
<script>
import { createIcons } from 'lucide';
import { vest } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Vest
112
8
11