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

const SvgStaking32 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 32 32"
		{...props}
	>
		<path
			stroke="currentColor"
			strokeLinecap="round"
			strokeLinejoin="round"
			strokeWidth={1.5}
			d="M25.224 19.889a10.009 10.009 0 0 1-12.098 5.687 10.007 10.007 0 0 1-6.957-11.418 10.011 10.011 0 0 1 5.836-7.342m13.248 5.348c.4.968.647 1.99.73 3.03.02.258.031.386-.02.502a.525.525 0 0 1-.22.239c-.111.06-.25.06-.528.06h-8.407c-.28 0-.42 0-.527-.055a.5.5 0 0 1-.219-.218c-.054-.107-.054-.248-.054-.528V6.786c0-.278 0-.417.06-.529a.525.525 0 0 1 .238-.22c.116-.051.244-.04.502-.02a10.006 10.006 0 0 1 8.445 6.147Z"
		/>
	</svg>
);
export default SvgStaking32;
