import type { SurfaceState } from "./layoutTypes"; const COLOR: Record = { work: "#4C8DFF", wait: "#F2B84B", done: "#3FB950", error: "#F4544E", idle: "#5A6573", }; export function StatusRing({ state, running }: { state: SurfaceState; running: boolean }) { const color = running ? COLOR[state] : "#5A6573"; return ( ); }