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

const Eye20: 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">
  <path fill-rule="evenodd" d="M4.05 10.236A13.957 13.957 0 0 1 3.856 10 14.445 14.445 0 0 1 5.49 8.267c1.24-1.107 2.834-2.1 4.509-2.1 1.675 0 3.27.993 4.509 2.1A14.442 14.442 0 0 1 16.143 10a14.446 14.446 0 0 1-1.634 1.732c-1.24 1.108-2.834 2.101-4.509 2.101-1.675 0-3.27-.993-4.509-2.1a14.449 14.449 0 0 1-1.442-1.497Zm13.65-.663-.617.427.617.427-.002.002-.002.004-.01.013a4.991 4.991 0 0 1-.147.202 15.954 15.954 0 0 1-2.03 2.203c-1.325 1.184-3.272 2.482-5.509 2.482-2.237 0-4.184-1.298-5.509-2.482a15.955 15.955 0 0 1-2.03-2.203 9.522 9.522 0 0 1-.148-.202l-.009-.013-.003-.004v-.001c-.001-.001-.001-.001.616-.428L2.3 9.573l.001-.002.003-.004.01-.012a5.69 5.69 0 0 1 .147-.203 15.944 15.944 0 0 1 2.03-2.203C5.816 5.965 7.763 4.667 10 4.667c2.237 0 4.184 1.298 5.508 2.482a15.943 15.943 0 0 1 2.03 2.203 9.525 9.525 0 0 1 .149.203l.009.012.002.004.002.001Zm-.617.427.617-.427a.75.75 0 0 1 0 .854L17.083 10ZM2.3 9.573l.617.427-.617.427a.75.75 0 0 1 0-.854ZM8 10a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z"/>
</svg>
)
export default Eye20