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