import { cn } from "@/lib/utils"; const statuses = { offline: "text-muted-foreground/20 bg-muted", online: "text-green-400 bg-green-400/10", error: "text-rose-400 bg-rose-400/10", warning: "text-yellow-400 bg-yellow-400/10", }; type StatusIndicatorProps = { status: keyof typeof statuses; }; export default function StatusIndicator({ status }: StatusIndicatorProps) { return (
); }