ExpandIcon.tsx 465 B

12345678910111213141516171819
  1. import React from 'react';
  2. export const ExpandIcon = (): JSX.Element => {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="18"
  7. height="18"
  8. viewBox="0 0 45 45"
  9. >
  10. <path
  11. fill="currentColor"
  12. d="M8.1 44v-3h31.8v3Zm16-4.5-7.6-7.6 2.15-2.15
  13. 3.95 3.95V14.3l-3.95 3.95-2.15-2.15 7.6-7.6 7.6 7.6-2.15
  14. 2.15-3.95-3.95v19.4l3.95-3.95 2.15 2.15ZM8.1 7V4h31.8v3Z"
  15. />
  16. </svg>
  17. );
  18. };