2017-11-24 01:20:27 +08:00
|
|
|
export const EMOJI_STATUSES = {
|
2017-11-21 18:50:20 +08:00
|
|
|
// name: icon
|
2017-10-11 21:09:47 +08:00
|
|
|
away: 'time',
|
|
|
|
raiseHand: 'hand',
|
|
|
|
neutral: 'undecided',
|
|
|
|
confused: 'confused',
|
2017-10-11 21:06:23 +08:00
|
|
|
sad: 'sad',
|
|
|
|
happy: 'happy',
|
|
|
|
applause: 'applause',
|
2017-09-23 01:03:14 +08:00
|
|
|
thumbsUp: 'thumbs_up',
|
|
|
|
thumbsDown: 'thumbs_down',
|
2017-11-21 18:50:20 +08:00
|
|
|
none: 'clear_status',
|
|
|
|
};
|
|
|
|
|
2017-11-24 01:20:27 +08:00
|
|
|
export default { EMOJI_STATUSES };
|