UNPKG

@lobehub/ui

Version:

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

14 lines (13 loc) 406 B
import { FlexboxProps } from "../../Flex/type.mjs"; import { IconProps } from "../../Icon/type.mjs"; import { FC } from "react"; //#region src/mdx/FileTree/Folder.d.ts interface FolderProps extends FlexboxProps { defaultOpen?: boolean; icon?: IconProps['icon']; name: string; } declare const Folder: FC<FolderProps>; //#endregion export { Folder, FolderProps }; //# sourceMappingURL=Folder.d.mts.map