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

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

export function GatewayStatusBadge({
  status,
  label,
}: {
  status: GatewayStatus;
  label: string;
}) {
  return <EnabledDisabledBadge status={status} label={label} />;
}
