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

const EyeOff20: 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="M3.03 1.97a.75.75 0 0 0-1.06 1.06l3.398 3.4c-.316.237-.609.48-.877.72a15.944 15.944 0 0 0-2.03 2.203 9.392 9.392 0 0 0-.148.202l-.009.013-.003.004v.001c-.001.001-.001.001.616.428L2.3 9.573a.75.75 0 0 0 0 .854L2.917 10l-.617.427.001.002.003.004.01.013a8.404 8.404 0 0 0 .147.202 15.945 15.945 0 0 0 2.03 2.203c1.325 1.184 3.272 2.482 5.509 2.482 1.219 0 2.352-.385 3.345-.928l3.625 3.625a.75.75 0 1 0 1.06-1.06l-15-15Zm9.2 11.32-.706-.705a3 3 0 0 1-4.109-4.109l-.974-.974c-.334.24-.652.5-.95.766A14.443 14.443 0 0 0 3.857 10a14.447 14.447 0 0 0 1.634 1.732c1.24 1.108 2.834 2.101 4.509 2.101.77 0 1.521-.209 2.23-.543ZM8.158 9.22a2 2 0 0 0 2.623 2.623L8.158 9.219Zm1.99-2.215 2.848 2.848a3 3 0 0 0-2.848-2.848Zm5.803 3.232c-.305.365-.73.838-1.25 1.321l1.061 1.061a16.095 16.095 0 0 0 1.777-1.97 9.225 9.225 0 0 0 .148-.202l.009-.013.002-.004.002-.001-.617-.428.617.427a.75.75 0 0 0 0-.854l-.617.427.617-.427-.002-.002-.002-.004-.01-.013a4.811 4.811 0 0 0-.147-.202 15.943 15.943 0 0 0-2.03-2.203C14.184 5.965 12.236 4.667 10 4.667c-.657 0-1.29.112-1.889.3l1.247 1.247c.212-.03.426-.047.642-.047 1.675 0 3.27.993 4.509 2.1A14.442 14.442 0 0 1 16.143 10c-.057.072-.121.15-.192.236Z"/>
</svg>
)
export default EyeOff20