import { IconComponentProps } from '@ant-design/icons/es/components/Icon'; import React from 'react'; interface IconFontProps extends IconComponentProps { type: string; onClick?: React.MouseEventHandler; } declare const IconFont: React.FC; export default IconFont;