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

const SvgArrowUp12 = (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="M5.005 10V3.932L3.173 5.766a.799.799 0 1 1-1.13-1.131l3.196-3.2a.799.799 0 0 1 1.132 0l3.195 3.2a.801.801 0 0 1-1.131 1.13L6.603 3.933V10a.8.8 0 0 1-1.364.566.8.8 0 0 1-.234-.566Z"
		/>
	</svg>
);
export default SvgArrowUp12;
