import React from 'react'; import { convertIcon, IconSize } from '../component/Icon'; function SvgComponent({ color = '#FFB633', size = '20', ...rest }: React.SVGProps & IconSize) { if (size === '16') { return ( ); } if (size === '32') { return ( ); } return ( ); } const IconComponent = convertIcon(SvgComponent, 'fast'); export default IconComponent;