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