import React from 'react'; import './iconfont.css'; interface IconFontProps { styles?: React.CSSProperties; icon?: string; size?: number; color?: string; title?: string; className?: string; onIconClick?: (e: React.MouseEvent) => void; children?: React.ReactNode; active?: boolean; disable?: boolean; } declare const IconFont: React.FC; export default IconFont;