import { CSSProperties, FC } from 'react'; import './index.scss'; export declare type IconProps = { fontClass?: string; prefix?: string; type: string; className?: string; style?: CSSProperties; }; declare const Icon: FC; export default Icon;