update menu

This commit is contained in:
Dede Fuji Abdul
2023-10-17 16:48:44 +07:00
parent fc37eab5db
commit cce938fa8f
17 changed files with 755 additions and 334 deletions

6
src/utils/icons.ts Normal file
View File

@ -0,0 +1,6 @@
export { default as LightningSlash } from '@/assets/icons/lightning-slash.svg'
export { default as SmileySad } from '@/assets/icons/smiley-sad.svg'
export { default as Monitor } from '@/assets/icons/monitor.svg'
export { default as Swap } from '@/assets/icons/swap.svg'
export { default as DotOutline } from '@/assets/icons/dot-outline.svg'
export { default as IconApp } from '@/assets/images/pln-with-text.png'

8
src/utils/interfaces.ts Normal file
View File

@ -0,0 +1,8 @@
interface MenuItemModel {
name: string;
href: string;
icon: any;
children: MenuItemModel[];
}
export type { MenuItemModel }