mirror of
https://github.com/tcsenpai/emoji-encoder.git
synced 2025-06-04 09:40:05 +00:00
27 lines
455 B
TypeScript
27 lines
455 B
TypeScript
export const EMOJI_LIST = [
|
|
"😀",
|
|
"😂",
|
|
"🥰",
|
|
"😎",
|
|
"🤔",
|
|
"👍",
|
|
"👎",
|
|
"👏",
|
|
"😅",
|
|
"🤝",
|
|
"🎉",
|
|
"🎂",
|
|
"🍕",
|
|
"🌈",
|
|
"🌞",
|
|
"🌙",
|
|
"🔥",
|
|
"💯",
|
|
"🚀",
|
|
"👀",
|
|
"💀",
|
|
"🥹",
|
|
]
|
|
|
|
export const ALPHABET_LIST = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
|