mirror of
https://github.com/mattermost/focalboard.git
synced 2025-01-26 18:48:15 +02:00
6674402079
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
19 lines
685 B
TypeScript
19 lines
685 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
const FileIcons: Record<string, string> = {
|
|
AUDIO_TYPES: 'file-audio-outline',
|
|
CODE_TYPES: 'file-code-outline-large',
|
|
IMAGE_TYPES: 'file-image-outline-large',
|
|
PDF_TYPES: 'file-pdf-outline-large',
|
|
PATCH_TYPES: 'file-patch-outline-large',
|
|
PRESENTATION_TYPES: 'file-powerpoint-outline-large',
|
|
SPREADSHEET_TYPES: 'file-excel-outline-large',
|
|
TEXT_TYPES: 'file-text-outline-large',
|
|
VIDEO_TYPES: 'file-video-outline-large',
|
|
WORD_TYPES: 'file-word-outline-large',
|
|
COMPRESSED_TYPES: 'file-zip-outline-large',
|
|
}
|
|
|
|
export default FileIcons
|