NavigationResizeHexagon.tsx 738 B

1234567891011121314151617181920
  1. import React, { FC } from 'react';
  2. type Props = {
  3. };
  4. export const NavigationResizeHexagon: FC<Props> = () => (
  5. <svg
  6. xmlns="http://www.w3.org/2000/svg"
  7. viewBox="0 0 27.691 23.999"
  8. >
  9. <g className="background" transform="translate(0 0)">
  10. <path d="M20.768,0l6.923,12L20.768,24H6.923L0,12,6.923,0Z" transform="translate(0)"></path>
  11. </g>
  12. <g className="icon" transform="translate(10 6)">
  13. { /* eslint-disable-next-line max-len */ }
  14. <path d="M2.124,9.114l5.28,5.34a.647.647,0,0,0,.922,0l.616-.623a.665.665,0,0,0,0-.932L4.759,8.648,8.943,4.4a.665.665,0,0,0,0-.932l-.616-.623a.647.647,0,0,0-.922,0l-5.28,5.34A.665.665,0,0,0,2.124,9.114Z" transform="translate(-1.933 -2.648)"></path>
  15. </g>
  16. </svg>
  17. );