39968-vm/frontend/src/menuNavBar.ts
2026-05-12 17:58:39 +00:00

40 lines
737 B
TypeScript

import { mdiAccount, mdiLogout, mdiThemeLightDark } from '@mdi/js'
import { MenuNavBarItem } from './interfaces'
const menuNavBar: MenuNavBarItem[] = [
{
isCurrentUser: true,
menu: [
{
icon: mdiAccount,
label: 'Мой профиль',
href: '/profile',
},
{
isDivider: true,
},
{
icon: mdiLogout,
label: 'Выйти',
isLogout: true,
},
],
},
{
icon: mdiThemeLightDark,
label: 'Тема',
isDesktopNoLabel: true,
isToggleLightDark: true,
},
{
icon: mdiLogout,
label: 'Выйти',
isDesktopNoLabel: true,
isLogout: true,
},
]
export const webPagesNavBar = [];
export default menuNavBar