This commit is contained in:
Malai Raja
2023-11-27 17:09:27 +05:30
commit 7113ac0681
223 changed files with 56261 additions and 0 deletions

70
src/menu-items/other.js Normal file
View 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;