iconMail.tsx 907 B

123456789101112131415161718192021222324252627282930
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconMail = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M15.25,14.09H.75A.76.76,0,0,1,0,13.34V2.66a.76.76,0,0,1,.75-.75h14.5a.76.76,0,0,1,.75.75V13.34A.76.76,0,0,1,15.25,14.09ZM1.5,12.59h13V3.41H1.5Z" />
  7. <path d="M8,9.92a.78.78,0,0,1-.5-.19L.25,3.22a.75.75,0,1,1,1-1.12L8,8.16,14.75,2.1a.75.75,0,1,1,1,1.12L8.5,9.73A.78.78,0,0,1,8,9.92Z" />
  8. <rect
  9. x="-0.27"
  10. y="9.92"
  11. width="7.99"
  12. height="1.5"
  13. transform="translate(-6.17 5.21) rotate(-41.89)"
  14. />
  15. <rect
  16. x="11.52"
  17. y="6.67"
  18. width="1.5"
  19. height="7.99"
  20. transform="translate(-3.86 12.68) rotate(-48.09)"
  21. />
  22. </SvgIcon>
  23. );
  24. });
  25. IconMail.displayName = 'IconMail';
  26. export {IconMail};