16 lines
306 B
JavaScript
16 lines
306 B
JavaScript
export const EMOJI_STATUSES = {
|
|
// name: icon
|
|
away: 'time',
|
|
raiseHand: 'hand',
|
|
neutral: 'undecided',
|
|
confused: 'confused',
|
|
sad: 'sad',
|
|
happy: 'happy',
|
|
applause: 'applause',
|
|
thumbsUp: 'thumbs_up',
|
|
thumbsDown: 'thumbs_down',
|
|
none: 'clear_status',
|
|
};
|
|
|
|
export default { EMOJI_STATUSES };
|