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

const SvgCheck24 = (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 24c6.581 0 12-5.419 12-12 0-6.57-5.43-12-12.011-12C5.418 0 0 5.43 0 12c0 6.581 5.419 12 12 12Zm-1.277-6.282c-.472 0-.84-.207-1.185-.633L6.765 13.75c-.23-.288-.334-.564-.334-.875a1.15 1.15 0 0 1 1.151-1.162c.38 0 .679.15.978.518l2.128 2.67 4.637-7.41c.276-.426.621-.656 1.024-.656.621 0 1.197.449 1.197 1.093 0 .276-.139.587-.311.852l-5.373 8.295c-.276.414-.679.644-1.14.644Z"
		/>
		<path
			fill="#fff"
			d="M10.723 17.718c-.472 0-.84-.207-1.185-.633L6.765 13.75c-.23-.288-.334-.564-.334-.875a1.15 1.15 0 0 1 1.15-1.162c.38 0 .68.15.979.518l2.128 2.67 4.637-7.41c.276-.426.621-.656 1.024-.656.621 0 1.197.449 1.197 1.093 0 .276-.139.587-.311.851l-5.373 8.296c-.276.414-.679.644-1.14.644Z"
		/>
	</svg>
);
export default SvgCheck24;
