'use client' import { motion } from 'framer-motion' interface LiveIndicatorProps { status: 'live' | 'offline' | 'pending' label?: string } export function LiveIndicator({ status, label }: LiveIndicatorProps) { const colors = { live: 'bg-green-500', offline: 'bg-red-500', pending: 'bg-yellow-500', } const labels = { live: 'Live', offline: 'Offline', pending: 'Pending', } return (
{label || labels[status]}
) }