Files
fizzy/app/helpers/emoji_helper.rb
T
2025-05-06 10:43:56 -05:00

13 lines
269 B
Ruby

module EmojiHelper
REACTIONS = {
"👍" => "Thumbs up",
"👏" => "Clapping",
"👋" => "Waving hand",
"💪" => "Muscle",
"❤️" => "Red heart",
"😂" => "Face with tears of joy",
"🎉" => "Party popper",
"🔥" => "Fire"
}
end