14 lines
398 B
JavaScript
14 lines
398 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import Excel from './excel';
|
|
import Generic from './generic';
|
|
import Pdf from './pdf';
|
|
import Ppt from './ppt';
|
|
import Zip from './zip';
|
|
|
|
export const ExcelSvg = Excel;
|
|
export const GenericSvg = Generic;
|
|
export const PdfSvg = Pdf;
|
|
export const PptSvg = Ppt;
|
|
export const ZipSvg = Zip;
|