import React from 'react'; export interface IconProps { /** 图标的大小 */ size?: 'small' | 'medium' | 'large'; /** 图标名 */ name: string; /** 图标填充色 */ color?: string; fillColorRule?: string; className?: string; style?: any; } declare const Icon: React.FunctionComponent; export default Icon; export {Icon}