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

const Picker20: 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">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M17.614 2.386a2.518 2.518 0 0 0-3.561 0L8.75 7.69l-.72-.72a.75.75 0 0 0-1.06 1.06l.72.72-4.887 4.887.49.49-.49-.49a2.517 2.517 0 0 0-.595 2.618l-.4.956a.75.75 0 0 0 .981.982l.956-.4a2.52 2.52 0 0 0 2.618-.595l4.887-4.886.72.719a.75.75 0 1 0 1.06-1.06l-.72-.72 5.304-5.303a2.518 2.518 0 0 0 0-3.56ZM8.75 9.81l-4.887 4.887a1.019 1.019 0 0 0-.178 1.2.75.75 0 0 1 .088.33.749.749 0 0 1 .33.088 1.02 1.02 0 0 0 1.2-.179l.53.53-.53-.53.48-.48-.512-.51a.5.5 0 0 1 .707-.708l.512.511.542-.542-.511-.512a.5.5 0 0 1 .707-.707l.512.512.542-.543-.511-.512a.5.5 0 0 1 .707-.707l.512.512 1.2-1.2-.72-.72-.72-.72Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Picker20