first
This commit is contained in:
70
src/menu-items/other.js
Normal file
70
src/menu-items/other.js
Normal file
@@ -0,0 +1,70 @@
|
||||
// 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: <FormattedMessage id="others" />,
|
||||
type: 'group',
|
||||
children: [
|
||||
{
|
||||
id: 'sample-page',
|
||||
title: <FormattedMessage id="sample-page" />,
|
||||
type: 'item',
|
||||
url: '/sample-page',
|
||||
icon: icons.ChromeOutlined
|
||||
},
|
||||
{
|
||||
id: 'documentation',
|
||||
title: <FormattedMessage id="documentation" />,
|
||||
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: <FormattedMessage id="roadmap" />,
|
||||
type: 'item',
|
||||
url: 'https://links.codedthemes.com/RXnKQ',
|
||||
icon: icons.DeploymentUnitOutlined,
|
||||
external: true,
|
||||
target: true
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export default other;
|
||||
Reference in New Issue
Block a user