mattermost-mobile/app/components/upload_item_shared/constants.ts
Rajat Dabade 71fed8aa50
(Android) Common component for upload item for main application and share extension (#9028)
* Common component for upload item for main application and share extension

* Addressed review comments

* intl fixes

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
2025-09-11 12:54:54 +05:30

14 lines
398 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export const SHARED_UPLOAD_STYLES = {
THUMBNAIL_SIZE: 64,
ICON_SIZE: 48,
FILE_CONTAINER_WIDTH: 264,
FILE_CONTAINER_HEIGHT: 64,
BORDER_RADIUS: 4,
SHADOW_OFFSET: {width: 0, height: 2},
SHADOW_OPACITY: 0.08,
SHADOW_RADIUS: 3,
ELEVATION: 1,
} as const;