@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
13 lines (12 loc) • 439 B
TypeScript
/// <reference types="react" />
import { DivProps } from "../types";
export interface MaterialFileTypeIconProps extends DivProps {
fallbackUnknownType?: boolean;
filename: string;
open?: boolean;
size?: number;
type?: 'file' | 'folder';
variant?: 'pure' | 'file' | 'folder';
}
declare const MaterialFileTypeIcon: import("react").NamedExoticComponent<MaterialFileTypeIconProps>;
export default MaterialFileTypeIcon;