export function Mark({ className }: { className?: string }) {
  return (
    <svg
      viewBox="0 0 32 32"
      fill="none"
      aria-hidden="true"
      className={className}
    >
      <circle cx="16" cy="16" r="14.5" stroke="currentColor" strokeWidth="1.2" />
      <path
        d="M16 7.5c.4 3.4 1.6 5.8 4.8 8.2-2.6.6-4.1 2-4.8 4.8-.7-2.8-2.2-4.2-4.8-4.8C14.4 13.3 15.6 10.9 16 7.5Z"
        fill="currentColor"
      />
    </svg>
  );
}
