UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

8 lines (7 loc) 418 B
import { default as React } from 'react'; import { IconProps } from '../Icon'; import { FileType, ForceFileType } from './types'; 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;