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

const SvgCheck32 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 32 32"
		{...props}
	>
		<path
			fill="currentColor"
			d="M13.602 24.943c.517 0 .908-.215 1.191-.634l9.18-14.317c.205-.312.283-.586.283-.85 0-.673-.469-1.142-1.152-1.142-.479 0-.762.166-1.055.625l-8.486 13.477-4.376-5.616c-.283-.38-.576-.537-1.005-.537-.684 0-1.182.489-1.182 1.162 0 .293.107.576.352.88l5.058 6.327c.342.42.703.625 1.192.625Z"
		/>
	</svg>
);
export default SvgCheck32;
