DeliveryStatusBadge
DomainShows courier delivery progress from assignment through completion.
PendingAssignedPicked UpOn the WayDeliveredFailed
{(['PENDING', 'ASSIGNED', 'PICKED_UP', 'ON_THE_WAY', 'DELIVERED', 'FAILED'] as const).map((s) => (
<DeliveryStatusBadge key={s} status={s} />
))}On the WayOn the Way
<DeliveryStatusBadge status="ON_THE_WAY" size="sm" />
<DeliveryStatusBadge status="ON_THE_WAY" size="md" />