'use client' import React from 'react' import { DSR_STATUS_INFO } from '@/lib/sdk/dsr/types' export function StatusBadge({ status }: { status: string }) { const info = DSR_STATUS_INFO[status as keyof typeof DSR_STATUS_INFO] if (!info) return null return ( {info.label} ) }