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

const SvgOoo16 = (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 14c3.29 0 6-2.71 6-6 0-3.285-2.715-6-6.006-6C4.71 2 2 4.715 2 8c0 3.29 2.71 6 6 6Zm0-1.317A4.667 4.667 0 0 1 3.323 8a4.662 4.662 0 0 1 4.671-4.683c2.6 0 4.689 2.089 4.689 4.683A4.672 4.672 0 0 1 8 12.683ZM5.325 8.886a.889.889 0 1 0 .006-1.778.889.889 0 0 0-.006 1.778Zm2.67 0a.888.888 0 0 0 .885-.892.886.886 0 0 0-.886-.886.889.889 0 1 0 0 1.778Zm2.663 0a.888.888 0 0 0 .886-.892.886.886 0 0 0-.886-.886.889.889 0 1 0 0 1.778Z"
		/>
	</svg>
);
export default SvgOoo16;
