2021-09-09 16:29:01 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-09-09 23:47:30 +00:00
|
|
|
export const DEFAULT_PREFERRED_REACTION_EMOJI_SHORT_NAMES = [
|
2021-09-09 16:29:01 +00:00
|
|
|
'heart',
|
|
|
|
'thumbsup',
|
|
|
|
'thumbsdown',
|
|
|
|
'joy',
|
|
|
|
'open_mouth',
|
|
|
|
'cry',
|
|
|
|
];
|
2023-11-17 20:40:41 +00:00
|
|
|
|
|
|
|
// This is used in storybook for simplicity. Normally we prefer to convert emoji short
|
|
|
|
// names to actual emoji using convertShortNameToData from components/emoji/lib
|
|
|
|
// because it takes skin tone into consideration.
|
|
|
|
export const DEFAULT_PREFERRED_REACTION_EMOJI = [
|
|
|
|
'❤️',
|
|
|
|
'👍',
|
|
|
|
'👎',
|
|
|
|
'😂',
|
|
|
|
'😮',
|
|
|
|
'😢',
|
|
|
|
];
|