export default function CheckCircleFill({
  width,
  height,
  className,
}: {
  width?: number;
  height?: number;
  className?: string;
}) {
  return (
    <svg
      width={width || 24}
      height={height || 24}
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M12 1.75C9.97279 1.75 7.99101 2.35115 6.30541 3.47743C4.6198 4.60372 3.30606 6.20456 2.53026 8.0775C1.75446 9.95044 1.55145 12.0114 1.94695 13.9997C2.34245 15.988 3.3187 17.8144 4.75218 19.2478C6.18567 20.6813 8.01205 21.6575 10.0003 22.053C11.9886 22.4485 14.0496 22.2456 15.9225 21.4698C17.7954 20.694 19.3963 19.3802 20.5225 17.6946C21.6488 16.009 22.25 14.0273 22.25 12C22.2474 9.28234 21.1666 6.67676 19.2449 4.75508C17.3232 2.83341 14.7177 1.75265 12 1.75ZM17.07 10.09L11.7 15.46C11.5177 15.6519 11.2959 15.8021 11.05 15.9C10.5526 16.0997 9.99742 16.0997 9.50005 15.9C9.25645 15.7977 9.0355 15.6482 8.85002 15.46L6.19005 12.8C6.09632 12.707 6.02189 12.5964 5.97112 12.4746C5.92035 12.3527 5.89421 12.222 5.89421 12.09C5.89421 11.958 5.92035 11.8273 5.97112 11.7054C6.02189 11.5836 6.09632 11.473 6.19005 11.38C6.37741 11.1938 6.63082 11.0892 6.89501 11.0892C7.15919 11.0892 7.41266 11.1938 7.60002 11.38L10.27 14.05L15.65 8.67999C15.7429 8.58626 15.8536 8.51187 15.9754 8.46111C16.0973 8.41034 16.228 8.3842 16.36 8.3842C16.492 8.3842 16.6227 8.41034 16.7446 8.46111C16.8664 8.51187 16.977 8.58626 17.07 8.67999C17.2473 8.86597 17.3462 9.11305 17.3462 9.37C17.3462 9.62694 17.2473 9.87402 17.07 10.06V10.09Z"
        fill="currentColor"
      />
    </svg>
  );
}
