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

const SvgCheckFill16 = (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="M8.045 15.704c4.248 0 7.735-3.494 7.735-7.742 0-4.24-3.494-7.734-7.735-7.734C3.797.228.311 3.72.311 7.962c0 4.248 3.494 7.742 7.734 7.742Zm-.805-4.065c-.33 0-.586-.147-.82-.432L4.697 9.155c-.168-.205-.234-.388-.234-.6 0-.455.366-.814.813-.814.264 0 .469.103.666.337l1.275 1.575 2.856-4.541c.19-.308.432-.462.718-.462.44 0 .842.323.842.777 0 .183-.073.38-.205.571l-3.398 5.2a.955.955 0 0 1-.791.44Z"
		/>
	</svg>
);
export default SvgCheckFill16;
