mirror of
https://github.com/remvze/moodist.git
synced 2026-02-28 09:03:12 +08:00
19 lines
315 B
TypeScript
19 lines
315 B
TypeScript
import JSConfetti from 'js-confetti';
|
|
|
|
export const addConfetti = () => {
|
|
const jsConfetti = new JSConfetti();
|
|
|
|
jsConfetti.addConfetti({
|
|
confettiColors: [
|
|
'#6366f1',
|
|
'#8b5cf6',
|
|
'#a855f7',
|
|
'#ec4899',
|
|
'#f43f5e',
|
|
'#fb923c',
|
|
'#eab308',
|
|
'#22c55e',
|
|
],
|
|
});
|
|
};
|