import { History as HistoryIcon, LogIn, LogOut, Gamepad2, Wind, Cat } from 'lucide-react'; import type { View } from '../App'; interface NavbarProps { onNavigate: (view: View) => void; isAuthenticated: boolean; onLogout: () => void; } export const Navbar = ({ onNavigate, isAuthenticated, onLogout }: NavbarProps) => ( );