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

const Eye32: 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="M6.325 16.505A21.878 21.878 0 0 1 5.916 16a23.31 23.31 0 0 1 2.736-2.921c1.994-1.782 4.593-3.412 7.348-3.412s5.354 1.63 7.347 3.412A23.305 23.305 0 0 1 26.084 16a23.305 23.305 0 0 1-2.736 2.921c-1.994 1.782-4.593 3.412-7.348 3.412s-5.354-1.63-7.347-3.412a23.31 23.31 0 0 1-2.328-2.416Zm21.83-1.074-.822.57c.823.568.823.568.822.569l-.002.002-.004.006-.013.02a22.535 22.535 0 0 1-.925 1.189 25.307 25.307 0 0 1-2.53 2.625c-2.109 1.885-5.177 3.921-8.681 3.921-3.504 0-6.572-2.036-8.68-3.92a25.31 25.31 0 0 1-3.222-3.496 14.96 14.96 0 0 1-.234-.32l-.013-.019-.004-.006-.002-.002.822-.57c-.823-.569-.822-.57-.822-.57l.002-.002.004-.006.013-.02a8.858 8.858 0 0 1 .234-.318 25.31 25.31 0 0 1 3.222-3.496C9.428 9.704 12.496 7.667 16 7.667c3.504 0 6.572 2.037 8.68 3.92a25.307 25.307 0 0 1 3.222 3.497 15.28 15.28 0 0 1 .234.319l.013.019.004.006.002.002Zm-.822.57.823-.57a1 1 0 0 1 0 1.138L27.333 16Zm-23.489-.57.823.57-.823.568a1 1 0 0 1 0-1.138Zm8.656.57a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0Zm3.5-4.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="32" height="32" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Eye32