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

const SvgChevronDown24 = (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="M12.262 15.43c.341 0 .629-.13.895-.403l5.059-5.174c.205-.206.307-.452.307-.752 0-.609-.485-1.101-1.087-1.101-.293 0-.574.123-.8.349L12.27 12.86 7.894 8.35A1.13 1.13 0 0 0 7.087 8C6.485 8 6 8.492 6 9.1c0 .295.103.54.308.753l5.058 5.174c.28.28.56.404.896.404Z"
		/>
	</svg>
);
export default SvgChevronDown24;
