import React from 'react'; import { convertIcon } from '../component/Icon'; interface OverrideIconSize20 { size?: '20'; } function SvgComponent({ color = '#616161', size = '20', ...rest }: React.SVGProps & OverrideIconSize20) { return ( ); } const IconComponent = convertIcon(SvgComponent, 'circle-plus'); export default IconComponent;