UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

9 lines (8 loc) 462 B
import { default as React } from 'react'; import { IconProps } from '../Icon'; export type FileType = File | string; export type ForceFileType = 'audio' | 'image' | 'video'; export declare function getFileIcon(file: FileType, forceFileType?: ForceFileType): React.FC<IconProps>; export declare function getFileName(file: FileType): string; export declare function getFileSize(file: FileType): string; export declare function getMimeType(file: FileType): string;