import { Monitor, Cloud, Wifi, WifiOff } from "lucide-react"; import { Badge } from "@/components/ui/badge"; export function RuntimeModeIcon({ mode }: { mode: string }) { return mode === "cloud" ? ( ) : ( ); } export function StatusBadge({ status }: { status: string }) { const isOnline = status === "online"; return ( {isOnline ? ( ) : ( )} {isOnline ? "Online" : "Offline"} ); } export function InfoField({ label, value, mono, }: { label: string; value: string; mono?: boolean; }) { return (
{label}
{value}
); } export function TokenCard({ label, value }: { label: string; value: string }) { return (
{label}
{value}
); }