@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
17 lines (16 loc) • 464 B
text/typescript
import { DivProps, SvgProps } from "../types/index.mjs";
import { ReactNode, Ref } from "react";
//#region src/FileTypeIcon/type.d.ts
type IconProps = SvgProps & DivProps;
interface FileTypeIconProps extends IconProps {
color?: string;
filetype?: string;
icon?: ReactNode;
ref?: Ref<HTMLDivElement>;
size?: number;
type?: 'file' | 'folder';
variant?: 'color' | 'mono';
}
//#endregion
export { FileTypeIconProps };
//# sourceMappingURL=type.d.mts.map