A system monitor component, can be used for resources, AI agents, GPU, CPU, network, etc.
import SystemMonitor from "@/components/ui/system-monitor"; const settings = { color: "#3b82f6", spikeColor: "#ef4444", width: 60, height: 20, }; export default function Demo(props: Partial<typeof settings>) { const s = { ...settings, ...props }; return ( <div className="h-screen w-screen"> <SystemMonitor {...s} /> </div> ); }