/* Brand app-logo tiles for the API view (IDE switcher + token panel). Simplified, recognizable marks rendered as rounded tiles. */ function VSCodeLogo({ size = 28 }) { return ( ); } function CursorLogo({ size = 28 }) { return ( ); } function ClaudeLogo({ size = 28 }) { return ( ); } function DevinLogo({ size = 28 }) { return ( ); } function AntigravityLogo({ size = 28 }) { return ( ); } const APP_LOGOS = { vscode: VSCodeLogo, cursor: CursorLogo, claude: ClaudeLogo, devin: DevinLogo, antigravity: AntigravityLogo, }; function AppLogo({ name, size = 28 }) { const C = APP_LOGOS[name]; return C ? : null; } window.AppLogo = AppLogo;