38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
import SpaceDashboardIcon from "@mui/icons-material/SpaceDashboard";
|
|
import BookmarkAddedIcon from "@mui/icons-material/BookmarkAdded";
|
|
import DataSaverOnIcon from "@mui/icons-material/DataSaverOn";
|
|
|
|
const sidebarMenu = [
|
|
[
|
|
{
|
|
key: "sidebar.dashboard",
|
|
name: "sidebar.dashboard",
|
|
type: "page",
|
|
route: "/dashboard",
|
|
icon: <SpaceDashboardIcon sx={{width: 'inherit', height: 'inherit'}}/>,
|
|
selected: false,
|
|
permission: "all"
|
|
},
|
|
{
|
|
key: "sidebar.add-request-loan",
|
|
name: "sidebar.add-request-loan",
|
|
type: "page",
|
|
route: "/dashboard/navgan/add-request-loan",
|
|
icon: <DataSaverOnIcon sx={{width: 'inherit', height: 'inherit'}}/>,
|
|
selected: false,
|
|
permission: "can_request_navgan_loan"
|
|
},
|
|
{
|
|
key: "sidebar.followUp-loan",
|
|
name: "sidebar.followUp-loan",
|
|
type: "page",
|
|
route: "/dashboard/navgan/followUp-loan",
|
|
icon: <BookmarkAddedIcon sx={{width: 'inherit', height: 'inherit'}}/>,
|
|
selected: false,
|
|
permission: "all"
|
|
},
|
|
],
|
|
];
|
|
|
|
export default sidebarMenu;
|