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

const SvgArrowShowAndHideDown12 = (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="M6.433 9.25a.5.5 0 0 1-.866 0l-2.598-4.5A.5.5 0 0 1 3.402 4h5.196a.5.5 0 0 1 .433.75l-2.598 4.5Z"
		/>
	</svg>
);
export default SvgArrowShowAndHideDown12;
