// components import SvgIconStyle from '../../../components/SvgIconStyle'; // ---------------------------------------------------------------------- const getIcon = (name: string) => ( ); const ICONS = { user: getIcon('ic_user'), ecommerce: getIcon('ic_ecommerce'), analytics: getIcon('ic_analytics'), dashboard: getIcon('ic_dashboard'), }; const navConfig = [ // GENERAL // ---------------------------------------------------------------------- { items: [{ title: 'Dashboard', path: '/dashboard', icon: ICONS.dashboard }], }, // Membership // ---------------------------------------------------------------------- { subheader: 'Membership', items: [ { title: 'Member List', path: '/members', icon: ICONS.user, }, // { // title: 'Member Movement', // // path: '/', // icon: ICONS.user, // children: [ // { title: '', path: '/medicines' }, // { title: 'Obat', path: '/medicines' }, // { title: 'Obat', path: '/medicines' }, // ], // }, ], }, ]; export default navConfig;