ExpandIcon.tsx 459 B

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