import {forwardRef} from 'react'; import {SvgIcon, SVGIconProps} from './svgIcon'; const IconContract = forwardRef((props, ref) => { return ( ); }); IconContract.displayName = 'IconContract'; export {IconContract};