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

const SvgSendReceive16 = (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.127 13.24h3.61c1.126 0 1.609-.501 1.609-1.61v-1.155h1.376v1.954c0 .494.37.87.87.87.345 0 .62-.137.947-.441l4.73-4.426c.232-.22.333-.5.333-.733a1 1 0 0 0-.333-.733l-4.73-4.396c-.364-.334-.602-.47-.935-.47-.513 0-.882.399-.882.899v2.09H5.183c-1.161 0-1.668.52-1.668 1.669v1.054H2.127C1.061 7.812.52 8.33.52 9.373v2.3c0 1.06.524 1.566 1.608 1.566Zm7.87-1.633c-.054 0-.096-.042-.096-.101V9.284c0-.137-.06-.197-.19-.197H5.35c-.34 0-.507-.185-.507-.554v-1.74c0-.375.167-.56.506-.56h4.36c.132 0 .191-.059.191-.196V3.863c0-.06.042-.096.096-.096.035 0 .065.018.095.042l3.967 3.783c.042.042.06.071.06.107 0 .036-.012.066-.06.113l-3.967 3.747a.146.146 0 0 1-.095.048Zm-7.715.482c-.333 0-.5-.184-.5-.548V9.51c0-.37.167-.548.5-.548h1.293v.214c0 .376.137.662.483.93l2.025 1.382v.053c0 .364-.167.548-.5.548h-3.3Z"
		/>
	</svg>
);
export default SvgSendReceive16;
