/** * Console — shared chrome. Ported from `shared-ui.jsx`. * * AltitudeNav and CompactAxis were deleted 2026-07 (simplification audit S15) — * both were part of the dead focus/altitude system (setFocus was never called; * Manifold ships a single "composite" altitude). MiniMeters survives — it is * the live glanceable output readout used by CompositeStage's minimap. */ import type { MFParam } from './model'; const MM_GROUP_COLOR: Record = { formant: '--accent', pitch: '--accent-2', amp: '--good', filter: '--warn', fx: '--info', mod: '--accent-3', }; /** MiniMeters — glanceable read-only output bars (no interaction). */ export function MiniMeters({ params, values }: { params: MFParam[]; values: number[] }) { return (
{values.map((v, i) => (
))}
); }