-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenuItems.ts
89 lines (88 loc) · 1.36 KB
/
menuItems.ts
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import type { MenuItemProps } from '../lib';
export const menuItems: MenuItemProps[] = [
{
id: '1',
groupId: 'a1',
avatar: {
type: 'person',
name: 'Dolly Duck',
},
title: 'Dolly Duck',
badge: {
label: '15',
},
},
{
id: '2',
groupId: 'a2',
avatar: {
type: 'company',
name: 'Bergen Bar',
},
title: 'Bergen Bar',
badge: {
label: '21',
},
},
{
id: '3',
groupId: 'a2',
avatar: {
type: 'company',
name: 'Sportsklubben Brann',
},
title: 'Sportsklubben Brann',
badge: {
label: '4',
},
},
{
id: '4',
groupId: 'a3',
avatarGroup: {
defaultType: 'company',
items: [
{
name: 'Sportsklubben Brann',
},
{
name: 'Bergen Bar',
},
],
},
title: 'Alle virksomheter',
badge: {
label: '45',
},
},
{
id: '5',
groupId: 'b1',
avatar: {
type: 'company',
name: 'Jensens Laks',
},
title: 'Jensens laks',
},
{
id: '6',
groupId: 'b1',
avatar: {
type: 'company',
name: 'Haralds gym',
},
title: 'Haralds gym',
badge: {
label: '2',
},
},
{
id: '7',
groupId: 'b1',
avatar: {
type: 'company',
name: 'Trim og tran',
},
title: 'Trim og tran',
},
];