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