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

const SvgCheckFill12 = (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="M5.967 11.067c2.793 0 5.093-2.3 5.093-5.092 0-2.788-2.305-5.093-5.098-5.093C3.174.882.874 3.187.874 5.975c0 2.793 2.3 5.092 5.093 5.092Zm-.542-2.666c-.2 0-.357-.088-.503-.268L3.745 6.717a.572.572 0 0 1-.141-.371c0-.274.214-.493.488-.493.16 0 .288.063.415.22l.903 1.132 1.968-3.144c.117-.181.264-.279.434-.279.264 0 .508.19.508.464a.712.712 0 0 1-.132.361l-2.28 3.52a.573.573 0 0 1-.483.274Z"
		/>
	</svg>
);
export default SvgCheckFill12;
