CompressIcon.tsx 463 B

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