component-library-mustafa-akagunduz
Version:
Air Command System projesi için geliştirilmiş React component kütüphanesi
17 lines (16 loc) • 435 B
TypeScript
import React from 'react';
import './Navbar.css';
export interface NavbarProps {
user: {
fullName: string;
role: string;
};
currentTheme: 'light' | 'dark';
currentLanguage: string;
onThemeToggle: () => void;
onLanguageChange: (lang: string) => void;
onLogout: () => void;
themeIcon?: React.ReactNode;
t: (key: string) => string;
}
export declare const Navbar: React.FC<NavbarProps>;