// third-party import { FormattedMessage } from 'react-intl'; import { AiOutlineBarChart } from 'react-icons/ai'; // assets import { BorderOutlined, BoxPlotOutlined, ChromeOutlined, DeploymentUnitOutlined, GatewayOutlined, MenuUnfoldOutlined, QuestionOutlined, SmileOutlined, StopOutlined, DashboardOutlined, ClockCircleOutlined, UserOutlined, SettingOutlined } from '@ant-design/icons'; // icons const icons = { ChromeOutlined, MenuUnfoldOutlined, BoxPlotOutlined, StopOutlined, BorderOutlined, SmileOutlined, GatewayOutlined, QuestionOutlined, DeploymentUnitOutlined, DashboardOutlined, ClockCircleOutlined, UserOutlined, SettingOutlined }; // ==============================|| MENU ITEMS - SUPPORT ||============================== // const other = { id: 'other', title: , type: 'group', children: [ // { // id: 'dashboard', // title: , // type: 'item', // url: '/dashboard', // icon: icons.DashboardOutlined // }, { id: 'orders', title: , type: 'item', url: '/orders', icon: icons.ClockCircleOutlined }, { id: 'Customers', title: , type: 'item', url: '/customers', icon: icons.UserOutlined }, { id: 'Reports', title: , type: 'collapse', icon: AiOutlineBarChart, children: [ { id: 'OrdersDetails', title: , type: 'item', url: 'reports/ordersdetails', icon: icons.UserOutlined } ] } // { // id: 'account', // title: , // type: 'item', // url: '/accountsettings', // icon: icons.SettingOutlined // }, // { // id: 'documentation', // title: , // type: 'item', // url: 'https://links.codedthemes.com/BQFrl', // icon: icons.QuestionOutlined, // external: true, // target: true, // chip: { // label: 'gitbook', // color: 'secondary', // size: 'small' // } // }, // { // id: 'roadmap', // title: , // type: 'item', // url: 'https://links.codedthemes.com/RXnKQ', // icon: icons.DeploymentUnitOutlined, // external: true, // target: true // } ] }; export default other;