import { clsx } from 'clsx' type Status = 'running' | 'stopped' | 'unknown' const statusStyles: Record = { running: 'bg-green-500/20 text-green-400 border-green-500/30', stopped: 'bg-gray-500/20 text-gray-400 border-gray-500/30', unknown: 'bg-yellow-500/20 text-yellow-400 border-yellow-500/30', } interface StatusBadgeProps { status: Status label?: string } export function StatusBadge({ status, label }: StatusBadgeProps) { return ( {label || status} ) }