const toCdnUrl = (emoji) => { const codepoints = Array.from(emoji) .map((c) => c.codePointAt(0).toString(16)) .join('_') return `https://fonts.gstatic.com/s/e/notoemoji/latest/${codepoints}/emoji.svg` } export const reactionEmojiMap = { LIKE: toCdnUrl('❀️'), SMILE: toCdnUrl('😁'), DISLIKE: toCdnUrl('πŸ‘Ž'), RECOMMEND: toCdnUrl('πŸ‘'), CONGRATULATIONS: toCdnUrl('πŸŽ‰'), ANGRY: toCdnUrl('😑'), FLUSHED: toCdnUrl('😳'), STAR_STRUCK: toCdnUrl('🀩'), ROFL: toCdnUrl('🀣'), HOLDING_BACK_TEARS: toCdnUrl('πŸ₯Ή'), MIND_BLOWN: toCdnUrl('🀯'), POOP: toCdnUrl('πŸ’©'), CLOWN: toCdnUrl('🀑'), SKULL: toCdnUrl('☠️'), FIRE: toCdnUrl('πŸ”₯'), EYES: toCdnUrl('πŸ‘€'), FROWN: toCdnUrl('☹️'), HOT: toCdnUrl('πŸ₯΅'), EAGLE: toCdnUrl('πŸ¦…'), SPIDER: toCdnUrl('πŸ•·οΈ'), BAT: toCdnUrl('πŸ¦‡'), CHINA: toCdnUrl('πŸ‡¨πŸ‡³'), USA: toCdnUrl('πŸ‡ΊπŸ‡Έ'), JAPAN: toCdnUrl('πŸ‡―πŸ‡΅'), KOREA: toCdnUrl('πŸ‡°πŸ‡·'), }