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