import { DEAL_TYPE_LABELS, type DealType } from '@/lib/constants'

export function DealTypeBadge({ deal }: { deal: string }) {
  const label = DEAL_TYPE_LABELS[deal as DealType] ?? deal
  return (
    <span className="rounded bg-amber-brand/90 px-2 py-0.5 text-[11px] font-semibold uppercase text-night">{label}</span>
  )
}
