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

const Picker64: 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="M55.728 8.272a7.157 7.157 0 0 0-10.121 0L28 25.878l-2.94-2.94a1.5 1.5 0 0 0-2.121 2.121l2.94 2.94L9.606 44.273l1.06 1.06-1.06-1.06a7.158 7.158 0 0 0-1.57 7.758l-1.42 3.39a1.5 1.5 0 0 0 1.963 1.963l3.39-1.42a7.158 7.158 0 0 0 7.758-1.57L36 38.121l2.939 2.938a1.5 1.5 0 0 0 2.121-2.121l-2.938-2.939 17.606-17.606a7.157 7.157 0 0 0 0-10.121ZM28 30.121 11.727 46.394a4.16 4.16 0 0 0-.729 4.898 1.5 1.5 0 0 1 .06 1.287l-.26.622.622-.26a1.5 1.5 0 0 1 1.287.06 4.16 4.16 0 0 0 4.899-.728l1.959-1.96-2.273-2.273a1 1 0 0 1 1.414-1.414L20.98 48.9l2.586-2.586-2.273-2.273a1 1 0 0 1 1.414-1.414L24.98 44.9l2.586-2.586-2.273-2.273a1 1 0 0 1 1.414-1.414L28.98 40.9l4.9-4.9-2.94-2.94L28 30.121Z"/>
</svg>
)
export default Picker64