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

const SvgWalletActionSend24 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 24 24"
		{...props}
	>
		<path
			fill="currentColor"
			d="M17.883 14.242V6.398c0-.539-.36-.906-.914-.906H9.125c-.523 0-.89.39-.89.852 0 .453.398.828.867.828h2.78l3.368-.11-1.422 1.25-7.445 7.454a.876.876 0 0 0-.274.617c0 .453.414.875.883.875a.85.85 0 0 0 .61-.266l7.453-7.453 1.265-1.422-.133 3.235v2.914c0 .468.375.875.844.875.461 0 .852-.391.852-.899Z"
		/>
	</svg>
);
export default SvgWalletActionSend24;
