CompressIcon.tsx 476 B

12345678910111213141516171819
  1. import React from 'react';
  2. export const CompressIcon = ():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="M22.45 44v-7.9l-3.85 3.8-2.1-2.1 7.45-7.4 7.35 7.4-2.1
  13. 2.1-3.75-3.8V44ZM8.05 27.5v-3H40v3Zm0-6.05v-3H40v3Zm15.9-5.85-7.4-7.4 2.1-2.1
  14. 3.75 3.8V2h3v7.9l3.85-3.8 2.1 2.1Z"
  15. />
  16. </svg>
  17. );
  18. };