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

const SvgWalletActionBuy24 = (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="M5.82 18.523h13.36c1.687 0 2.562-.875 2.562-2.539V7.54C21.742 5.867 20.867 5 19.18 5H5.82c-1.687 0-2.562.867-2.562 2.54v8.444c0 1.672.875 2.54 2.562 2.54ZM4.79 7.672c0-.758.397-1.14 1.124-1.14h13.172c.719 0 1.125.382 1.125 1.14v.57H4.789v-.57Zm1.124 9.32c-.726 0-1.125-.383-1.125-1.14v-5.79h15.422v5.79c0 .757-.406 1.14-1.125 1.14H5.914Zm1.063-1.422H8.89c.453 0 .765-.304.765-.75v-1.445c0-.438-.312-.75-.765-.75H6.977c-.461 0-.774.313-.774.75v1.445c0 .446.313.75.774.75Z"
		/>
	</svg>
);
export default SvgWalletActionBuy24;
