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

const SvgTransferSui16 = (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"
			fillRule="evenodd"
			d="M8.004 5.259c-1.644-.018-3.448-.187-5.19-.923a5.94 5.94 0 0 1-1.317-.82c-.375-.296-.369-.55.016-.845a6.146 6.146 0 0 1 1.27-.764c1.457-.625 2.972-.839 4.502-.89 2.053-.07 4.092.057 6.079.806.432.166.851.383 1.252.648.155.1.284.267.413.435.057.074.115.149.175.218a3.82 3.82 0 0 0-.18.226c-.128.17-.256.342-.412.425-.636.355-1.29.65-1.959.885-1.466.481-2.969.599-4.649.599Zm7.206.117c0 .23.003.458.005.683.007.57.013 1.126-.023 1.677a1.174 1.174 0 0 1-.129.406.893.893 0 0 1-.25.297l-.236.141c-.578.349-1.165.703-1.778.877-3.204.925-6.416.938-9.607-.123-.41-.136-.8-.377-1.19-.617-.156-.096-.311-.191-.468-.28-.182-.105-.251-.309-.246-.586.009-.566.007-1.132.005-1.71v-.697C3.5 6.689 5.85 6.986 8.23 6.975c2.381-.01 4.736-.322 6.979-1.6Zm.002 4.944c-4.624 2.074-9.235 2.064-13.856.123l-.002.593c-.003.55-.006 1.12.012 1.692.007.101.03.2.07.288a.7.7 0 0 0 .155.227 6.4 6.4 0 0 0 1.168.769c1.19.558 2.436.781 3.696.899 2.187.195 4.36.1 6.499-.586.695-.224 1.383-.497 1.965-1.064.127-.124.273-.341.28-.522.021-.614.018-1.229.015-1.818l-.002-.601Z"
			clipRule="evenodd"
		/>
	</svg>
);
export default SvgTransferSui16;
