export const CircleCloseIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <g id="SVGRepo_bgCarrier" stroke-width="0"></g>
      <g
        id="SVGRepo_tracerCarrier"
        stroke-linecap="round"
        stroke-linejoin="round"
      ></g>
      <g id="SVGRepo_iconCarrier">
        {" "}
        <path
          d="M3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12Z"
          stroke="currentColor"
          stroke-width="2"
        ></path>{" "}
        <path
          d="M9 9L15 15M15 9L9 15"
          stroke="currentColor"
          stroke-width="2"
          stroke-linecap="round"
        ></path>{" "}
      </g>
    </svg>
  );
};
