import type { ShipmentStatus } from "@mrp/shared/dist/shipping/types.js"; import { shipmentStatusOptions, shipmentStatusPalette } from "./config"; export function ShipmentStatusBadge({ status }: { status: ShipmentStatus }) { const label = shipmentStatusOptions.find((option) => option.value === status)?.label ?? status; return {label}; }