import React from 'react'; import '../../style/iconfont'; import '../../style/style.css'; export interface IIcon { name: string; classname?: string; style?: React.CSSProperties; click?: Function; doubleClick?: Function; mouseDown?: Function; } declare const Icon: React.FC; export default Icon;