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

const SvgArrowLeft12 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 12 12"
		{...props}
	>
		<path
			fill="currentColor"
			d="M9.8 6.795H3.732l1.834 1.831a.799.799 0 1 1-1.131 1.13l-3.2-3.195a.799.799 0 0 1 0-1.132l3.2-3.195a.8.8 0 0 1 1.13 1.131L3.733 5.197H9.8a.8.8 0 0 1 .566 1.364.8.8 0 0 1-.566.234Z"
		/>
	</svg>
);
export default SvgArrowLeft12;
