| 4 | import { motion } from 'framer-motion' |
| 5 | |
| 6 | interface Particle { |
| 7 | x: number |
| 8 | y: number |
| 9 | emoji: string |
| 10 | size: number |
| 11 | velocity: { x: number; y: number } |
| 12 | rotation: number |
| 13 | rotationSpeed: number |
| 14 | } |
| 15 | |
| 16 | const emojis = ['🎉', '🎊', '🥳', '🍾', '🎈', '🎇', '✨', '💥'] |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected