import { cn } from '@/lib/utils'; interface StatusIndicatorProps { status: 'online' | 'offline' | 'warning' | 'loading'; label: string; className?: string; } const StatusIndicator = ({ status, label, className }: StatusIndicatorProps) => { const statusColors = { online: 'bg-primary', offline: 'text-destructive bg-destructive', warning: 'bg-warning', loading: 'bg-accent animate-pulse', }; return (