// material-ui
import { useTheme } from '@mui/material/styles';
import { Avatar, Box, ButtonBase } from '@mui/material';
// project imports
import LogoSection from '../LogoSection';
import SearchSection from './SearchSection';
import LocalizationSection from './LocalizationSection';
import MobileSection from './MobileSection';
import ProfileSection from './ProfileSection';
import NotificationSection from './NotificationSection';
// assets
import { IconMenu2 } from '@tabler/icons';
// ==============================|| MAIN NAVBAR / HEADER ||============================== //
export interface HeaderProps {
handleLeftDrawerToggle: () => void;
}
const Header = ({ handleLeftDrawerToggle }: HeaderProps) => {
const theme = useTheme();
return (
<>
{/* logo & toggler button */}
{/* header search */}
{/* live customization & localization */}
{/* notification & profile */}
{/* mobile header */}
>
);
};
export default Header;