const CheckIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="12"
      height="10"
      viewBox="0 0 12 10"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M1.06641 5.54564L4.42897 8.29389L10.5937 1.14844"
        stroke="currentColor"
        strokeWidth="1.07182"
        strokeLinecap="round"
      />
    </svg>
  );
};

export { CheckIcon };
