import { FC, SVGAttributes } from 'react'; import { IIcon } from '~/types'; type IProps = SVGAttributes & { size?: number; icon: IIcon; }; export const Icon: FC = ({ size = 20, icon, style, ...props }) => ( );