update menu
This commit is contained in:
6
src/utils/icons.ts
Normal file
6
src/utils/icons.ts
Normal 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
8
src/utils/interfaces.ts
Normal file
@ -0,0 +1,8 @@
|
||||
interface MenuItemModel {
|
||||
name: string;
|
||||
href: string;
|
||||
icon: any;
|
||||
children: MenuItemModel[];
|
||||
}
|
||||
|
||||
export type { MenuItemModel }
|
Reference in New Issue
Block a user