import { StatusPill } from "@/components/shared/status-pill";

import type { TaxGlobal } from "./schema";

export function TaxGlobalBadge({ value, label }: { value: TaxGlobal; label: string }) {
  return (
    <StatusPill
      label={label}
      tone={value === "yes" ? "indigo" : "muted"}
      rounded="full"
      uppercase={false}
    />
  );
}
