import {forwardRef} from 'react'; import {SvgIcon, SVGIconProps} from './svgIcon'; const IconIssues = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => { return ( <SvgIcon {...props} ref={ref}> <path d="M13.24,16H2.74A2.75,2.75,0,0,1,0,13.26V2.76A2.75,2.75,0,0,1,2.74,0h10.5A2.75,2.75,0,0,1,16,2.76v10.5A2.75,2.75,0,0,1,13.24,16ZM2.74,1.51A1.25,1.25,0,0,0,1.49,2.76v10.5a1.25,1.25,0,0,0,1.25,1.25h10.5a1.25,1.25,0,0,0,1.25-1.25V2.76a1.25,1.25,0,0,0-1.25-1.25Z" /> <rect x="0.74" y="2.61" width="14.5" height="1.5" /> <rect x="0.74" y="5.26" width="14.5" height="1.5" /> <path d="M10.79,12.08H5.19a1.25,1.25,0,0,1-1.25-1.25V9.42H.74V7.92h4.7v2.66h5.1V7.92h4.7v1.5H12v1.41A1.25,1.25,0,0,1,10.79,12.08Z" /> </SvgIcon> ); }); IconIssues.displayName = 'IconIssues'; export {IconIssues};