iconEdit.tsx 984 B

1234567891011121314151617181920212223242526272829
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconEdit = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <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" />
  7. <rect
  8. x="9.56"
  9. y="2.34"
  10. width="1.5"
  11. height="6.6"
  12. transform="translate(-0.91 9.12) rotate(-45.91)"
  13. />
  14. <rect
  15. x="3.76"
  16. y="8.12"
  17. width="1.5"
  18. height="6.6"
  19. transform="translate(-6.87 6.8) rotate(-46.34)"
  20. />
  21. </SvgIcon>
  22. );
  23. });
  24. IconEdit.displayName = 'IconEdit';
  25. export {IconEdit};