Skip to content

party-popper

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

Created:

v0.69.0

Last changed:

v0.69.0

Contributors:

karsa-mistmere
html
<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-next';
</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
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-party-popper"></div>