/** * SimpleStatusBanner -- A horizontal bar showing key current-config values * at a glance at the top of each Simple mode category panel. */ interface SimpleStatusBannerProps { items: { label: string; value: string }[] isLoading?: boolean } export function SimpleStatusBanner({ items, isLoading }: SimpleStatusBannerProps) { return (
{items.map((item, i) => (
{item.label} {isLoading ? (
) : ( {item.value || '\u2014'} )}
))}
) }