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

const Picker32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M28.04 3.96a3.828 3.828 0 0 0-5.413 0L14 12.584l-1.293-1.293a1 1 0 0 0-1.414 1.415L12.586 14l-7.96 7.96.707.707-.707-.707a3.828 3.828 0 0 0-.878 4.052l-.67 1.602a1 1 0 0 0 1.308 1.309l1.601-.671a3.829 3.829 0 0 0 4.053-.878l7.96-7.96 1.293 1.292a1 1 0 0 0 1.414-1.414L19.414 18l8.627-8.627a3.828 3.828 0 0 0 0-5.414ZM14 15.413l-7.96 7.96a1.83 1.83 0 0 0-.32 2.154 1 1 0 0 1 .102.65 1 1 0 0 1 .65.102 1.83 1.83 0 0 0 2.154-.32l.624.623-.624-.623.98-.98-.96-.96a.5.5 0 1 1 .707-.707l.96.96 1.293-1.293-.96-.96a.5.5 0 0 1 .707-.707l.96.96 1.293-1.293-.96-.96a.5.5 0 0 1 .707-.707l.96.96L16.586 18l-1.293-1.294L14 15.414Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="32" height="32" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Picker32