ui-elements.js
2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
export default [
{
title: 'User Interface',
icon: { icon: 'ri-pantone-line' },
children: [
{
title: 'Icons',
icon: { icon: 'ri-eye-line' },
to: 'pages-icons',
},
{
title: 'Typography',
icon: { icon: 'ri-font-size-2' },
to: 'pages-typography',
},
{
title: 'Cards',
icon: { icon: 'ri-bank-card-line' },
children: [
{ title: 'Basic', to: 'pages-cards-card-basic' },
{ title: 'Advance', to: 'pages-cards-card-advance' },
{ title: 'Widgets', to: 'pages-cards-card-widgets' },
{ title: 'Statistics', to: 'pages-cards-card-statistics' },
{ title: 'Gamification', to: 'pages-cards-card-gamification' },
{ title: 'Actions', to: 'pages-cards-card-actions' },
],
},
{
title: 'Components',
icon: { icon: 'ri-archive-line' },
children: [
{ title: 'Alert', to: 'components-alert' },
{ title: 'Avatar', to: 'components-avatar' },
{ title: 'Badge', to: 'components-badge' },
{ title: 'Button', to: 'components-button' },
{ title: 'Chip', to: 'components-chip' },
{ title: 'Dialog', to: 'components-dialog' },
{ title: 'Expansion Panel', to: 'components-expansion-panel' },
{ title: 'List', to: 'components-list' },
{ title: 'Menu', to: 'components-menu' },
{ title: 'Pagination', to: 'components-pagination' },
{ title: 'Progress Circular', to: 'components-progress-circular' },
{ title: 'Progress Linear', to: 'components-progress-linear' },
{ title: 'Snackbar', to: 'components-snackbar' },
{ title: 'Tabs', to: 'components-tabs' },
{ title: 'Timeline', to: 'components-timeline' },
{ title: 'Tooltip', to: 'components-tooltip' },
],
},
{
title: 'Extensions',
icon: { icon: 'ri-box-3-line' },
children: [
{ title: 'Tour', to: 'extensions-tour' },
{ title: 'Swiper', to: 'extensions-swiper' },
],
},
],
},
]