55 lines
1.6 KiB
Ruby
55 lines
1.6 KiB
Ruby
module EmojiHelper
|
|
REACTIONS = {
|
|
"👏" => "Clapping",
|
|
"👍" => "Thumbs up",
|
|
"🙌" => "Hands raised in celebration",
|
|
"💪" => "Flexed bicep",
|
|
"🤘" => "Sign of the horns",
|
|
"✊" => "Raised fist",
|
|
"✨" => "Sparkles",
|
|
"❤️" => "Red heart",
|
|
"💯" => "100 points",
|
|
"🎉" => "Party popper",
|
|
"🤩" => "Face with starry eyes",
|
|
"🥳" => "Partying face",
|
|
"😊" => "Smiling face with flush cheeks",
|
|
"😀" => "Grinning face",
|
|
"😂" => "Face with tears of joy",
|
|
"😅" => "Grinning face with sweat drop",
|
|
"😎" => "Smiling face with sunglasses",
|
|
"😉" => "Winking face",
|
|
"😜" => "Winking face with stuck out tongue",
|
|
"😬" => "Grimacing face",
|
|
"😮" => "Surprised face with open mouth",
|
|
"😳" => "Flushed face",
|
|
"🤔" => "Thinking face",
|
|
"😒" => "Unamused face",
|
|
"😢" => "Crying face",
|
|
"😭" => "Loudly crying face",
|
|
"😱" => "Face screaming in fear",
|
|
"👀" => "Eyes",
|
|
"🙏" => "Hands pressed together",
|
|
"💩" => "Pile of poop",
|
|
"👎" => "Thumbs down",
|
|
"✌️" => "Peace",
|
|
"👈" => "Finger pointing left",
|
|
"👆" => "Finger pointing Up",
|
|
"✋" => "Raised hand",
|
|
"👋" => "Waving hand",
|
|
"☀️" => "Sun",
|
|
"🌙" => "Moon",
|
|
"💥" => "Collision",
|
|
"🔥" => "Fire",
|
|
"🎂" => "Birthday cake",
|
|
"🍴" => "Fork and knife",
|
|
"💰" => "Money bag",
|
|
"🥇" => "Gold medal",
|
|
"🚨" => "Red flashing light",
|
|
"💡" => "Light bulb",
|
|
"🛠" => "Hammer and wrench",
|
|
"📈" => "Chart with upward trend",
|
|
"✅" => "Check mark",
|
|
"📢" => "Public address loudspeaker"
|
|
}
|
|
end
|