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

const SvgStakeAdd16 = (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="M2.463 11.685h1.014v.862c0 1.33.726 2.056 2.068 2.056h7.986c1.336 0 2.069-.726 2.069-2.056V6.91c0-1.33-.733-2.056-2.069-2.056h-1.043v-.862c0-1.324-.738-2.056-2.074-2.056H2.463c-1.336 0-2.068.726-2.068 2.056v5.643c0 1.324.732 2.05 2.068 2.05Zm.164-1.511c-.469 0-.72-.229-.72-.727V4.18c0-.498.251-.733.72-.733h7.623c.469 0 .727.235.727.733v.674H5.545c-1.342 0-2.068.726-2.068 2.056v3.264h-.85Zm3.082 2.918c-.475 0-.72-.235-.72-.733V7.092c0-.498.245-.727.72-.727h7.652c.47 0 .727.229.727.727v5.267c0 .498-.258.733-.727.733H5.71Zm1.137-3.363c0 .369.27.644.644.644h1.4v1.4c0 .375.27.645.645.645.381 0 .656-.27.656-.645v-1.4h1.4c.37 0 .64-.275.64-.644 0-.381-.264-.657-.64-.657h-1.4v-1.4c0-.375-.275-.645-.656-.645a.622.622 0 0 0-.644.645v1.4h-1.4c-.376 0-.645.276-.645.657Z"
		/>
	</svg>
);
export default SvgStakeAdd16;
