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

const Eye64: 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="M12.267 33.33A42.777 42.777 0 0 1 11.199 32a47.12 47.12 0 0 1 5.773-6.215c4.016-3.59 9.33-6.952 15.028-6.952s11.012 3.362 15.028 6.952A47.123 47.123 0 0 1 52.801 32a47.113 47.113 0 0 1-5.773 6.215c-4.016 3.59-9.33 6.952-15.028 6.952s-11.012-3.362-15.028-6.952a47.11 47.11 0 0 1-4.706-4.884ZM55.9 31.147 54.667 32l1.233.854-.001.002-.003.003-.007.01-.026.038a14.664 14.664 0 0 1-.096.134 44.432 44.432 0 0 1-1.73 2.211 50.122 50.122 0 0 1-5.01 5.2C44.84 44.195 38.821 48.167 32 48.167c-6.82 0-12.84-3.972-17.027-7.715a50.116 50.116 0 0 1-5.01-5.2 44.361 44.361 0 0 1-1.367-1.72 28.921 28.921 0 0 1-.459-.625l-.026-.037-.007-.011-.003-.004c0-.001-.001-.002 1.232-.855a217.217 217.217 0 0 1-1.233-.854l.001-.002.003-.003.007-.01.026-.038a29.335 29.335 0 0 1 .458-.625 50.106 50.106 0 0 1 6.377-6.92C19.16 19.805 25.18 15.833 32 15.833c6.82 0 12.84 3.972 17.027 7.715a50.112 50.112 0 0 1 5.01 5.2 44.51 44.51 0 0 1 1.367 1.72 28.906 28.906 0 0 1 .459.625l.026.037.007.011.003.003v.002ZM54.667 32l1.233-.854a1.5 1.5 0 0 1 0 1.707L54.667 32ZM8.1 31.146 9.333 32l-1.233.853a1.5 1.5 0 0 1 0-1.707ZM25 32a7 7 0 1 1 14 0 7 7 0 0 1-14 0Zm7-9a9 9 0 1 0 0 18 9 9 0 0 0 0-18Z"/>
</svg>
)
export default Eye64