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

Skip to content

id-card-lanyard

id-card • id-card-lanyard • identity • employee • gate-pass • badge

创建时间:

v0.512.0

最后修改:

v0.512.0

Contributors:

python2911UsamaKhanjguddas
html
<script>
import { createIcons, idCardLanyard } from 'lucide';

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

<i data-lucide="id-card-lanyard"></i>  
tsx
import { IdCardLanyard } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="id-card-lanyard"></lucide-icon>
html
<div class="icon-id-card-lanyard"></div>

看看这个图标的实际效果

错误
功能
Id
112
8
11