export default function CheckCircle({
  width,
  height,
  className,
}: {
  width?: number;
  height?: number;
  className?: string;
}) {
  return (
    <svg
      width={width || 20}
      height={height || 20}
      viewBox="0 0 20 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <g clipPath="url(#clip0_1291_8115)">
        <path
          d="M6.2513 9.99984L8.7513 12.4998L13.7513 7.49984M18.3346 9.99984C18.3346 14.6022 14.6036 18.3332 10.0013 18.3332C5.39893 18.3332 1.66797 14.6022 1.66797 9.99984C1.66797 5.39746 5.39893 1.6665 10.0013 1.6665C14.6036 1.6665 18.3346 5.39746 18.3346 9.99984Z"
          stroke="currentColor"
          strokeWidth="2"
          strokeLinecap="round"
          strokeLinejoin="round"
        />
      </g>
      <defs>
        <clipPath id="clip0_1291_8115">
          <rect width={width || 20} height={height || 20} fill="white" />
        </clipPath>
      </defs>
    </svg>
  );
}
