40 lines
737 B
TypeScript
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
|