import React from 'react'; import { IconfontNormalType, IconFontType } from './types'; type IconFontProps = Partial> & { color?: string; onClick?: IconfontNormalType['onClick']; wrapperClassName?: string; }; export default function (props: IconFontProps): React.JSX.Element; export {};