import React from 'react'; import { CommonHTMLAttributes } from '../../types/global'; type IconFontProps = Partial> & { type: string; className?: string; spin?: boolean; }; declare const IconFont: React.FC; export default IconFont;