import { FC, MouseEventHandler } from 'react'; import '../utils/iconfont.js'; import './index.less'; export declare type IconSize = 's' | 'm' | 'l'; export interface IconProps { name: string; style?: object; size?: IconSize; color?: string; onClick?: MouseEventHandler; } declare const Icon: FC; export default Icon;