@lobehub/ui
Version: 
Lobe UI is an open-source UI component library for building AIGC web apps
14 lines (13 loc) • 437 B
TypeScript
import { ReactNode } from 'react';
import { DivProps, SvgProps } from "../types";
type IconProps = SvgProps & DivProps;
export interface FileTypeIconProps extends IconProps {
    color?: string;
    filetype?: string;
    icon?: ReactNode;
    size?: number;
    type?: 'file' | 'folder';
    variant?: 'color' | 'mono';
}
declare const FileTypeIcon: import("react").NamedExoticComponent<FileTypeIconProps>;
export default FileTypeIcon;