| 1234567891011121314151617 |
- import React from 'react';
- export const CompressIcon = ():JSX.Element => {
- return (
- <svg xmlns="http://www.w3.org/2000/svg"
- width="18"
- height="18"
- viewBox="0 0 45 45"
- >
- <path
- fill="currentColor"
- d="M22.45 44v-7.9l-3.85 3.8-2.1-2.1 7.45-7.4 7.35 7.4-2.1
- 2.1-3.75-3.8V44ZM8.05 27.5v-3H40v3Zm0-6.05v-3H40v3Zm15.9-5.85-7.4-7.4 2.1-2.1
- 3.75 3.8V2h3v7.9l3.85-3.8 2.1 2.1Z"/>
- </svg>
- );
- };
|