mirror of
https://github.com/HugeFrog24/shakethefrog.git
synced 2026-03-02 08:24:33 +00:00
14 lines
453 B
TypeScript
14 lines
453 B
TypeScript
// Define our curated emoji pool
|
|
const emojiPool = [
|
|
'💫', '💝', '💘', '💖', '💕',
|
|
'💓', '💗', '💞', '✨', '🌟',
|
|
'🔥', '👼', '⭐', '💎', '💨',
|
|
'🎉', '🕸️', '🤗', '💋', '😘',
|
|
'🫂', '👫', '💟', '💌', '🥰',
|
|
'😍', '🥺', '😢', '😭'
|
|
];
|
|
|
|
// Helper function to get a random emoji
|
|
export function getRandomEmoji(): string {
|
|
return emojiPool[Math.floor(Math.random() * emojiPool.length)];
|
|
}
|