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

const Comparator20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M10.75 2.5a.75.75 0 0 0-1.5 0v1.011a1.68 1.68 0 0 0-.595.505L2.623 3.01a.75.75 0 0 0-.246 1.48l1.866.31-1.59 4.45H2.5a.75.75 0 0 0-.75.75 3.25 3.25 0 0 0 6.5 0 .75.75 0 0 0-.75-.75h-.153L5.853 5.07l2.555.425c.135.434.442.792.842.994V16.75H5.833a.75.75 0 0 0 0 1.5h8.334a.75.75 0 0 0 0-1.5H10.75V6.489c.236-.12.44-.293.595-.505l2.898.483-1.59 4.45H12.5a.75.75 0 0 0-.75.75 3.25 3.25 0 0 0 6.5 0 .75.75 0 0 0-.75-.75h-.154l-1.493-4.181 1.524.254a.75.75 0 1 0 .246-1.48l-6.031-1.005a1.671 1.671 0 0 0-.842-.994V2.5ZM5 5.653 6.285 9.25h-2.57L5 5.653Zm0 6.097a1.75 1.75 0 0 1-1.581-1h3.163c-.281.591-.884 1-1.582 1Zm10-4.43 1.285 3.597h-2.57L15 7.32Zm0 6.097a1.75 1.75 0 0 1-1.582-1h3.164c-.281.59-.884 1-1.582 1Z"/>
</svg>
)
export default Comparator20