@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
13 lines (12 loc) • 361 B
TypeScript
/// <reference types="react" />
import { SvgProps } from "../../types";
interface FolderIconProps extends SvgProps {
filetype?: string;
fontSize?: number;
hasIcon?: boolean;
iconColor?: string;
isMono?: boolean;
size?: number;
}
declare const FolderIcon: import("react").NamedExoticComponent<FolderIconProps>;
export default FolderIcon;