-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.js
59 lines (57 loc) · 1.12 KB
/
items.js
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
import { faKey, faMusic, faClock, faThermometerHalf, faCar, faBolt, faMapMarkerAlt, faShoppingBag, faWrench, faExclamationTriangle} from '@fortawesome/free-solid-svg-icons';
const items = [
{
id: 1,
icon: faMusic,
title: "Media",
},
{
id: 2,
icon: faClock,
title: "Software Updates",
subTitle: "Approximate time to install: 45 min"
},
{
id: 3,
icon: faThermometerHalf,
title: "Climate",
subTitle: "20°F"
},
{
id: 4,
icon: faCar,
title: "Controls",
},
{
id: 5,
icon: faBolt,
title: "Charging",
},
{
id: 6,
icon: faMapMarkerAlt,
title: "Location "
},
{
id: 7,
icon: faShoppingBag,
title: "Upgrades "
},
{
id: 8,
icon: faKey,
title: "Phone Key ",
subTitle: "Disconnected"
},
{
id: 9,
icon: faWrench,
title: "Services "
},
{
id: 11,
icon: faExclamationTriangle,
title: "Roadside assistance "
},
];
export default items;