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

const EyeOff24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M3.707 2.293a1 1 0 0 0-1.414 1.414L6.29 7.704c-.347.265-.67.535-.967.8a19.23 19.23 0 0 0-2.45 2.658 11.763 11.763 0 0 0-.179.246l-.011.015-.003.005-.002.002.822.57-.822-.569a1 1 0 0 0 0 1.138L3.5 12l-.822.57.002.002.003.005.011.015a11.529 11.529 0 0 0 .18.246 19.231 19.231 0 0 0 2.45 2.658C6.917 16.922 9.277 18.5 12 18.5c1.456 0 2.808-.452 3.996-1.09l4.297 4.297a1 1 0 0 0 1.414-1.414l-18-18Zm10.796 13.625-.838-.839a3.5 3.5 0 0 1-4.744-4.744L7.719 9.133a13.84 13.84 0 0 0-1.063.863A17.236 17.236 0 0 0 4.756 12l.18.219c.408.489.996 1.138 1.72 1.785C8.137 15.328 10.027 16.5 12 16.5c.86 0 1.703-.222 2.503-.582Zm-4.83-4.832a2.5 2.5 0 0 0 3.241 3.241l-3.242-3.24Zm2.769-2.558 3.03 3.03a3.502 3.502 0 0 0-3.03-3.03Zm6.622 3.69c-.35.42-.833.958-1.42 1.511l1.414 1.415a19.437 19.437 0 0 0 2.068-2.306c.061-.081.109-.146.141-.192l.039-.054.011-.015.003-.005.002-.002L20.5 12l.822.569a1 1 0 0 0 0-1.138L20.5 12l.822-.57-.002-.002-.003-.005-.011-.015-.039-.054c-.032-.046-.08-.11-.14-.192a19.236 19.236 0 0 0-2.45-2.658C17.082 7.078 14.722 5.5 12 5.5a7.64 7.64 0 0 0-2.238.347l1.683 1.683c.184-.02.369-.03.555-.03 1.973 0 3.863 1.172 5.344 2.496a17.23 17.23 0 0 1 1.9 2.004l-.18.219Z"/>
</svg>
)
export default EyeOff24