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

const SvgSend24 = (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"
			fillRule="evenodd"
			d="M11.25 6.66v8.59a.75.75 0 0 0 1.5 0V6.66l1.95 2.1a.75.75 0 1 0 1.1-1.02L12.55 4.24a.747.747 0 0 0-1.102 0L8.2 7.74a.75.75 0 1 0 1.1 1.02l1.95-2.1ZM4 19.25a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1-.75-.75Z"
			clipRule="evenodd"
		/>
	</svg>
);
export default SvgSend24;
