import type { FC } from 'react'; import React from 'react'; export interface IconProps { type: string; iconfontUrl: string; style?: any; onClick?: React.MouseEventHandler; } declare const Icon: FC; export default Icon;