import { useViewerStore } from '../../store/viewerStore'; export function ViewerStatusBar() { const fps = useViewerStore((state) => state.fps); const parts = useViewerStore((state) => state.parts); const metadata = useViewerStore((state) => state.metadata); const activeMachineId = useViewerStore((state) => state.activeMachineId); const selectedPartId = useViewerStore((state) => state.selectedPartId); const hoveredPart = useViewerStore((state) => state.hoveredPart); const display = useViewerStore((state) => state.display); const fpsTone = fps >= 55 ? 'text-emerald-300' : fps >= 30 ? 'text-amber-300' : 'text-red-300'; return (