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

const EyeOff64: 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="M9.06 6.94a1.5 1.5 0 1 0-2.12 2.12l11.618 11.62a40.527 40.527 0 0 0-3.585 2.868 50.117 50.117 0 0 0-5.01 5.2 44.439 44.439 0 0 0-1.367 1.72 29.335 29.335 0 0 0-.459.625l-.026.037-.007.011-.003.003v.002L9.332 32 8.1 31.146a1.5 1.5 0 0 0 0 1.707L9.333 32l-1.233.854.001.002.003.003.007.01.026.038.096.135a44.439 44.439 0 0 0 1.73 2.211 50.117 50.117 0 0 0 5.01 5.199C19.16 44.195 25.179 48.167 32 48.167c3.956 0 7.642-1.336 10.857-3.189L54.94 57.061a1.5 1.5 0 0 0 2.122-2.122l-48-48Zm31.591 35.833-3.436-3.437a9 9 0 0 1-12.55-12.55l-3.951-3.951a36.948 36.948 0 0 0-3.742 2.95A47.133 47.133 0 0 0 11.199 32a47.133 47.133 0 0 0 5.773 6.215c4.016 3.59 9.33 6.952 15.028 6.952 3.04 0 5.97-.957 8.651-2.394ZM26.104 28.225a7 7 0 0 0 9.67 9.67l-9.67-9.67Zm8.56-4.824 5.935 5.936a9.021 9.021 0 0 0-5.935-5.936Zm17.07 9.93a47.914 47.914 0 0 1-3.437 3.703l2.122 2.122a50.922 50.922 0 0 0 3.618-3.904 44.51 44.51 0 0 0 1.367-1.72c.158-.209.28-.375.363-.49l.034-.048.044-.062.018-.025.026-.037.007-.011.003-.003v-.002L54.668 32l1.233.853a1.5 1.5 0 0 0 0-1.707L54.667 32l1.233-.854-.001-.002-.003-.003-.007-.01-.026-.038-.042-.06-.054-.075a29.472 29.472 0 0 0-.363-.49 44.51 44.51 0 0 0-1.367-1.72 50.122 50.122 0 0 0-5.01-5.2C44.84 19.805 38.821 15.833 32 15.833c-1.5 0-2.96.192-4.372.532l2.577 2.578a14.9 14.9 0 0 1 1.795-.11c5.698 0 11.012 3.362 15.028 6.952A47.133 47.133 0 0 1 52.801 32c-.274.356-.632.809-1.067 1.33Z"/>
</svg>
)
export default EyeOff64