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

Skip to content

party-popper

emoji • congratulations • celebration • party • tada • 🎉 • 🎊 • excitement • exciting • excites • confetti

创建时间:

v0.69.0

最后修改:

v0.391.0

Contributors:

karsa-mistmere
html
<script>
import { createIcons, partyPopper } from 'lucide';

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

<i data-lucide="party-popper"></i>  
tsx
import { PartyPopper } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="party-popper"></lucide-icon>
html
<div class="icon-party-popper"></div>

看看这个图标的实际效果

错误
功能
Party
112
8
11