iconEdit.tsx 1.0 KB

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