export interface menu { header?: string; title?: string; icon?: any; id?: number; to?: string; chip?: string; BgColor?: string; chipBgColor?: string; chipColor?: string; chipVariant?: string; chipIcon?: string; children?: menu[]; disabled?: boolean; type?: string; subCaption?: string; } const sidebarItem: menu[] = [ { header: 'dashboards', id: 1, children: [ { title: 'Dashboard', icon: 'widget-add-line-duotone', to: '/dashboards/dashboard1' } ] }, { header: 'pages', id: 2, children: [ { title: 'Dashboard', icon: 'settings-minimalistic-line-duotone', to: '/pages' } ] }, ]; export default sidebarItem;