interface IconProps { width?: number | string; height?: number | string; fill?: string; [key: string]: any; } export declare function getIcon(name: string, props?: IconProps): string; export {};