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

const SvgOoo24 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 24 24"
		{...props}
	>
		<path
			fill="currentColor"
			d="M5.428 14.518c1.037 0 1.88-.835 1.88-1.855 0-1.037-.826-1.854-1.88-1.854-1.02 0-1.855.826-1.855 1.854a1.86 1.86 0 0 0 1.855 1.855Zm6.574 0c1.01 0 1.846-.835 1.846-1.855a1.83 1.83 0 0 0-1.846-1.854 1.855 1.855 0 0 0 0 3.709Zm6.565 0c1.02 0 1.864-.835 1.864-1.855a1.846 1.846 0 0 0-1.864-1.854 1.859 1.859 0 0 0-1.872 1.854c0 1.02.835 1.855 1.872 1.855Z"
		/>
	</svg>
);
export default SvgOoo24;
