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

Skip to content

coins-stack

lab

cash • finance • financial • markets • exchange • trader • trading • transaction • payment • payroll • wages • income • pocket money • allowance • savings • banking • gamble

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Coins
112
8
11