import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const Comparator64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M33.5 8a1.5 1.5 0 0 0-3 0v2.88a5.348 5.348 0 0 0-3.303 2.799L8.247 10.52a1.5 1.5 0 1 0-.494 2.96l6.732 1.122L8.807 30.5H8A1.5 1.5 0 0 0 6.5 32a9.5 9.5 0 0 0 19 0 1.5 1.5 0 0 0-1.5-1.5h-.807l-5.487-15.362 8.998 1.5A5.339 5.339 0 0 0 30.5 21.12V54.5H18.667a1.5 1.5 0 1 0 0 3h26.666a1.5 1.5 0 1 0 0-3H33.5V21.12a5.348 5.348 0 0 0 3.303-2.799l9.682 1.614-5.678 15.898H40a1.5 1.5 0 0 0-1.5 1.5 9.5 9.5 0 0 0 19 0 1.5 1.5 0 0 0-1.5-1.5h-.807l-5.486-15.361 6.046 1.008a1.5 1.5 0 0 0 .494-2.96l-18.952-3.158A5.338 5.338 0 0 0 33.5 10.88V8ZM16 16.306 21.07 30.5H10.93L16 16.306ZM16 38.5a6.503 6.503 0 0 1-6.326-5h12.652a6.503 6.503 0 0 1-6.326 5Zm32-16.86 5.07 14.193H42.93L48 21.64Zm0 22.193a6.503 6.503 0 0 1-6.326-5h12.652a6.503 6.503 0 0 1-6.326 5Z"/>
</svg>
)
export default Comparator64