import * as React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconUpload = React.forwardRef(function IconUpload( props: Props, ref: React.Ref ) { return ( ); }); IconUpload.displayName = 'IconUpload'; export {IconUpload};