// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
import { SVGProps } from 'react';

const SvgEyeOpen16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<path
			fill="currentColor"
			d="M8 12.86c4.517 0 7.45-3.626 7.45-4.727 0-1.107-2.938-4.727-7.45-4.727-4.447 0-7.45 3.62-7.45 4.727 0 1.1 3.003 4.726 7.45 4.726Zm0-1.354c-3.25 0-5.742-2.643-5.742-3.373C2.258 7.526 4.75 4.76 8 4.76c3.244 0 5.742 2.766 5.742 3.373 0 .73-2.498 3.373-5.742 3.373Zm.005-.682a2.696 2.696 0 0 0 2.691-2.691 2.675 2.675 0 0 0-2.69-2.691c-1.505 0-2.708 1.187-2.702 2.69a2.701 2.701 0 0 0 2.701 2.692ZM8 8.96a.827.827 0 1 1 0-1.655.827.827 0 0 1 0 1.655Z"
		/>
	</svg>
);
export default SvgEyeOpen16;
