iconRectangle.tsx 551 B

123456789101112131415161718192021222324252627
  1. import * as React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconRectangle = React.forwardRef(function IconRectangle(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <rect
  11. x="6.38721"
  12. y="0.341797"
  13. width="9.03286"
  14. height="9.03286"
  15. rx="1.5"
  16. transform="rotate(45 6.38721 0.341797)"
  17. />
  18. </SvgIcon>
  19. );
  20. });
  21. IconRectangle.displayName = 'IconRectangle';
  22. export {IconRectangle};