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

Skip to content

slot-card

lab

sd • sim • data • format • floppy disk • save • storage • flash • drive • digital • smartphone • mobile • instructions • port • input • insert • slide • push

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Slot
112
8
11