UNPKG

@lobehub/ui

Version:

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

10 lines (9 loc) 296 B
import { FC } from 'react'; import { FlexboxProps } from 'react-layout-kit'; import { type IconProps } from "../../Icon"; export interface FileProps extends Omit<FlexboxProps, 'children'> { icon?: IconProps['icon']; name: string; } declare const File: FC<FileProps>; export default File;