import React from "react"; export interface IconFontProps extends React.SVGAttributes { type?: string; className?: string; size?: React.CSSProperties["width"]; color?: string; svgProps?: React.SVGAttributes; useProps?: React.SVGAttributes; children?: string; } declare const IconFont: React.FC; export default IconFont;