const EyeOffIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="17"
      height="16"
      viewBox="0 0 17 16"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M1.42571 1L15.564 15.1383M6.80161 6.43038C6.3911 6.8545 6.13847 7.43228 6.13847 8.06914C6.13847 9.37056 7.19348 10.4255 8.49483 10.4255C9.14087 10.4255 9.72619 10.1655 10.1518 9.74452M4.17482 3.86469C2.683 4.84902 1.5467 6.32851 1 8.06914C2.00087 11.2558 4.97801 13.5674 8.49499 13.5674C10.0572 13.5674 11.5129 13.1113 12.7362 12.3251M7.70937 2.60971C7.96779 2.58406 8.22989 2.57092 8.49499 2.57092C12.012 2.57092 14.9892 4.88246 15.99 8.06914C15.7695 8.77134 15.453 9.43096 15.0559 10.0328"
        stroke="currentColor"
        strokeWidth="1.2"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
};

export { EyeOffIcon };
