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

const SvgArrowLeft24 = (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 12.993H9.416l2.293 2.29a.999.999 0 1 1-1.414 1.412l-4-3.994a1 1 0 0 1 0-1.414l4-3.995A1.001 1.001 0 0 1 12 8c0 .265-.105.519-.293.706l-2.293 2.29H17a1 1 0 0 1 1 .999.998.998 0 0 1-1 .998Z"
		/>
	</svg>
);
export default SvgArrowLeft24;
