iconResize.tsx 502 B

123456789101112131415
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconResize = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M1.5,2.61l12,11.9H8A.75.75,0,0,0,8,16h7.25a.75.75,0,0,0,.75-.75V8a.75.75,0,0,0-1.5,0v5.43L2.57,1.55H8A.75.75,0,0,0,8,.05H.75A.76.76,0,0,0,0,.8V8a.75.75,0,0,0,.75.75A.74.74,0,0,0,1.5,8Z" />
  7. </SvgIcon>
  8. );
  9. });
  10. IconResize.displayName = 'IconResize';
  11. export {IconResize};