50 lines
805 B
TypeScript
50 lines
805 B
TypeScript
import {
|
|
mdiMenu,
|
|
mdiClockOutline,
|
|
mdiCloud,
|
|
mdiCrop,
|
|
mdiAccount,
|
|
mdiCogOutline,
|
|
mdiEmail,
|
|
mdiLogout,
|
|
mdiThemeLightDark,
|
|
mdiGithub,
|
|
mdiVuejs,
|
|
} from '@mdi/js';
|
|
import { MenuNavBarItem } from './interfaces';
|
|
|
|
const menuNavBar: MenuNavBarItem[] = [
|
|
{
|
|
isCurrentUser: true,
|
|
menu: [
|
|
{
|
|
icon: mdiAccount,
|
|
label: 'My Profile',
|
|
href: '/profile',
|
|
},
|
|
{
|
|
isDivider: true,
|
|
},
|
|
{
|
|
icon: mdiLogout,
|
|
label: 'Log Out',
|
|
isLogout: true,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
icon: mdiThemeLightDark,
|
|
label: 'Light/Dark',
|
|
isDesktopNoLabel: true,
|
|
isToggleLightDark: true,
|
|
},
|
|
{
|
|
icon: mdiLogout,
|
|
label: 'Log out',
|
|
isDesktopNoLabel: true,
|
|
isLogout: true,
|
|
},
|
|
];
|
|
|
|
export default menuNavBar;
|