import React from "react";

const TickIcon = () => {
	return (
		<svg
			width="24"
			height="24"
			viewBox="0 0 24 24"
			fill="none"
			xmlns="http://www.w3.org/2000/svg"
		>
			<path
				fillRule="evenodd"
				clipRule="evenodd"
				d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM19.6095 8.94281C20.1302 8.42211 20.1302 7.57789 19.6095 7.05719C19.0888 6.53649 18.2446 6.53649 17.7239 7.05719L10 14.781L6.27614 11.0572C5.75544 10.5365 4.91122 10.5365 4.39052 11.0572C3.86983 11.5779 3.86983 12.4221 4.39052 12.9428L9.05719 17.6095C9.57789 18.1302 10.4221 18.1302 10.9428 17.6095L19.6095 8.94281Z"
				fill="white"
			/>
		</svg>
	);
};

export default TickIcon;
