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

const SvgDestake16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<path
			stroke="currentColor"
			strokeLinecap="round"
			strokeLinejoin="round"
			strokeWidth={1.5}
			d="m9 10 5 5M14 10l-5 5M6 5h4M2 14V3.655C2 2.741 2.741 2 3.655 2h8.69C13.259 2 14 2.741 14 3.655V7.38"
		/>
	</svg>
);
export default SvgDestake16;
