forked from Ivasoft/mattermost-mobile
* BottomSheet migration to react-native-bottom-sheet * Use correct scroll view for announcement bottom sheet * ux review * Fix post options bottom sheet snap point * feedback review
30 lines
741 B
TypeScript
30 lines
741 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const DEFAULT_EMOJIS = [
|
|
'thumbsup',
|
|
'smiley',
|
|
'white_check_mark',
|
|
'heart',
|
|
'eyes',
|
|
'raised_hands',
|
|
];
|
|
export const LARGE_ICON_SIZE = 32;
|
|
export const LARGE_CONTAINER_SIZE = 48;
|
|
export const REACTION_PICKER_HEIGHT = 48;
|
|
export const REACTION_PICKER_MARGIN = 16;
|
|
export const SMALL_CONTAINER_SIZE = 44;
|
|
export const SMALL_ICON_BREAKPOINT = 410;
|
|
export const SMALL_ICON_SIZE = 28;
|
|
|
|
export default {
|
|
DEFAULT_EMOJIS,
|
|
LARGE_ICON_SIZE,
|
|
LARGE_CONTAINER_SIZE,
|
|
REACTION_PICKER_HEIGHT,
|
|
REACTION_PICKER_MARGIN,
|
|
SMALL_CONTAINER_SIZE,
|
|
SMALL_ICON_BREAKPOINT,
|
|
SMALL_ICON_SIZE,
|
|
};
|