iconEdit.tsx 1011 B

123456789101112131415161718192021222324252627282930
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconEdit = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <path d="M1.36,15.91a1.34,1.34,0,0,1-.94-.38,1.32,1.32,0,0,1-.35-1.28L1.39,9a.94.94,0,0,1,.2-.35l8.06-8A1.71,1.71,0,0,1,12,.56l3.42,3.25A1.68,1.68,0,0,1,16,5a1.64,1.64,0,0,1-.48,1.2l-8.06,8a.79.79,0,0,1-.34.2L1.71,15.87A1.39,1.39,0,0,1,1.36,15.91Zm.16-1.3ZM2.8,9.53,1.59,14.35,6.51,13l7.91-7.89A.14.14,0,0,0,14.47,5a.17.17,0,0,0-.05-.12L11,1.64a.23.23,0,0,0-.3,0h0Zm7.38-8.41h0Z" />
  8. <rect
  9. x="9.56"
  10. y="2.34"
  11. width="1.5"
  12. height="6.6"
  13. transform="translate(-0.91 9.12) rotate(-45.91)"
  14. />
  15. <rect
  16. x="3.76"
  17. y="8.12"
  18. width="1.5"
  19. height="6.6"
  20. transform="translate(-6.87 6.8) rotate(-46.34)"
  21. />
  22. </SvgIcon>
  23. );
  24. });
  25. IconEdit.displayName = 'IconEdit';
  26. export {IconEdit};