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