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

const Comparator24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M13 3a1 1 0 1 0-2 0v1.268a2.01 2.01 0 0 0-.544.46L3.164 3.515a1 1 0 1 0-.328 1.972l2.321.387L3.327 11H3a1 1 0 0 0-1 1 4 4 0 0 0 8 0 1 1 0 0 0-1-1h-.326L6.949 6.172l3.177.53c.164.436.475.8.874 1.03V20H7a1 1 0 1 0 0 2h10a1 1 0 1 0 0-2h-4V7.732a2.01 2.01 0 0 0 .544-.46l3.613.601L15.327 13H15a1 1 0 0 0-1 1 4 4 0 0 0 8 0 1 1 0 0 0-1-1h-.326l-1.725-4.828 1.886.314a1 1 0 1 0 .33-1.972l-7.292-1.216A2.007 2.007 0 0 0 13 4.268V3ZM6 6.487 7.612 11H4.388L6 6.487ZM6 14a2 2 0 0 1-1.733-1h3.465A2 2 0 0 1 6 14Zm12-5.513L19.612 13h-3.224L18 8.487ZM18 16a2 2 0 0 1-1.733-1h3.465A2 2 0 0 1 18 16Z"/>
</svg>
)
export default Comparator24