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