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

const SvgArrowShowAndHide16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<path
			fill="currentColor"
			d="M12.208 7.35a.75.75 0 0 1 0 1.3l-5.75 3.32a.75.75 0 0 1-1.125-.65V4.68a.75.75 0 0 1 1.125-.65l5.75 3.32Z"
		/>
	</svg>
);
export default SvgArrowShowAndHide16;
