UNPKG

@lobehub/ui

Version:

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

14 lines (13 loc) 380 B
import type { ReactNode, Ref } from 'react'; import type { DivProps, SvgProps } from "../types"; type IconProps = SvgProps & DivProps; export interface FileTypeIconProps extends IconProps { color?: string; filetype?: string; icon?: ReactNode; ref?: Ref<HTMLDivElement>; size?: number; type?: 'file' | 'folder'; variant?: 'color' | 'mono'; } export {};