UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

13 lines (12 loc) 358 B
/// <reference types="react" /> import { SvgProps } from "../../types"; interface FileIconProps extends SvgProps { filetypeShort?: string; fontSize?: number; hasIcon?: boolean; iconColor?: string; isMono?: boolean; size?: number; } declare const FileIcon: import("react").NamedExoticComponent<FileIconProps>; export default FileIcon;