// third-party
import { FormattedMessage } from 'react-intl';
// assets
import {
BorderOutlined,
BoxPlotOutlined,
ChromeOutlined,
DeploymentUnitOutlined,
GatewayOutlined,
MenuUnfoldOutlined,
QuestionOutlined,
SmileOutlined,
StopOutlined
} from '@ant-design/icons';
// icons
const icons = {
ChromeOutlined,
MenuUnfoldOutlined,
BoxPlotOutlined,
StopOutlined,
BorderOutlined,
SmileOutlined,
GatewayOutlined,
QuestionOutlined,
DeploymentUnitOutlined
};
// ==============================|| MENU ITEMS - SUPPORT ||============================== //
const other = {
id: 'other',
title: ,
type: 'group',
children: [
{
id: 'sample-page',
title: ,
type: 'item',
url: '/sample-page',
icon: icons.ChromeOutlined
},
{
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;