import { Menu, Wifi } from 'lucide-react'; import { FeishuLogoIcon } from './FeishuLogoIcon.jsx'; import { CONNECTION_STATUS } from './relay-status.js'; export function TopBar({ selectedProject, selectedSession, connectionState, onMenu, onOpenDocs, backgroundInert = false, menuButtonRef = null }) { const status = CONNECTION_STATUS[connectionState] || CONNECTION_STATUS.disconnected; return (
{selectedSession?.title || selectedProject?.name || 'CodexMobile'} {status.label}
); }