@hero-design/rn 8.9.0 → 8.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +253 -247
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +253 -247
- package/package.json +5 -5
- package/src/components/Carousel/CarouselItem.tsx +4 -2
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +288 -22
- package/src/components/Carousel/__tests__/index.spec.tsx +17 -8
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +6 -0
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Icon/utils.d.ts +1 -1
|
@@ -16,7 +16,7 @@ interface CarouselItemProps extends Omit<CarouselData, 'background'> {
|
|
|
16
16
|
function isCarouselImageProps(
|
|
17
17
|
image: CarouselImageProps | string
|
|
18
18
|
): image is CarouselImageProps {
|
|
19
|
-
return typeof image
|
|
19
|
+
return typeof image === 'object';
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
const CarouselItem = ({
|
|
@@ -37,7 +37,9 @@ const CarouselItem = ({
|
|
|
37
37
|
resizeMode={image.resizeMode}
|
|
38
38
|
/>
|
|
39
39
|
) : (
|
|
40
|
-
<StyledCarouselImage
|
|
40
|
+
<StyledCarouselImage
|
|
41
|
+
source={typeof image === 'string' ? { uri: image } : image}
|
|
42
|
+
/>
|
|
41
43
|
))}
|
|
42
44
|
|
|
43
45
|
<StyledCarouselContentWrapper
|
|
@@ -39,7 +39,7 @@ exports[`Carousel renders basic carousel 1`] = `
|
|
|
39
39
|
"background": "#ece8ef",
|
|
40
40
|
"body": "Access your Work, Money and Benefits in the palm of your hand.",
|
|
41
41
|
"heading": "Welcome to the new Employment Hero app",
|
|
42
|
-
"image":
|
|
42
|
+
"image": 1,
|
|
43
43
|
},
|
|
44
44
|
Object {
|
|
45
45
|
"background": "#ccd2d3",
|
|
@@ -58,7 +58,21 @@ exports[`Carousel renders basic carousel 1`] = `
|
|
|
58
58
|
"background": "#ccd2d3",
|
|
59
59
|
"body": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae pulvinar quam, ac facilisis massa. Aliquam facilisis nisi eu justo dignissim, vel tempus justo iaculis.",
|
|
60
60
|
"heading": "Easier to get around",
|
|
61
|
-
"image":
|
|
61
|
+
"image": Object {
|
|
62
|
+
"height": 100,
|
|
63
|
+
"resizeMode": "cover",
|
|
64
|
+
"uri": "https://picsum.photos/1200/800",
|
|
65
|
+
"width": 30,
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
Object {
|
|
69
|
+
"background": "#ccd2d3",
|
|
70
|
+
"heading": "Test slide 4",
|
|
71
|
+
"image": Object {
|
|
72
|
+
"height": 100,
|
|
73
|
+
"uri": "https://picsum.photos/1200/800",
|
|
74
|
+
"width": 30,
|
|
75
|
+
},
|
|
62
76
|
},
|
|
63
77
|
]
|
|
64
78
|
}
|
|
@@ -119,11 +133,7 @@ exports[`Carousel renders basic carousel 1`] = `
|
|
|
119
133
|
}
|
|
120
134
|
>
|
|
121
135
|
<Image
|
|
122
|
-
source={
|
|
123
|
-
Object {
|
|
124
|
-
"uri": "https://picsum.photos/800/1200",
|
|
125
|
-
}
|
|
126
|
-
}
|
|
136
|
+
source={1}
|
|
127
137
|
style={
|
|
128
138
|
Array [
|
|
129
139
|
Object {
|
|
@@ -370,9 +380,14 @@ exports[`Carousel renders basic carousel 1`] = `
|
|
|
370
380
|
}
|
|
371
381
|
>
|
|
372
382
|
<Image
|
|
383
|
+
height={100}
|
|
384
|
+
resizeMode="cover"
|
|
373
385
|
source={
|
|
374
386
|
Object {
|
|
375
|
-
"
|
|
387
|
+
"height": 100,
|
|
388
|
+
"resizeMode": "cover",
|
|
389
|
+
"uri": "https://picsum.photos/1200/800",
|
|
390
|
+
"width": 30,
|
|
376
391
|
}
|
|
377
392
|
}
|
|
378
393
|
style={
|
|
@@ -384,14 +399,16 @@ exports[`Carousel renders basic carousel 1`] = `
|
|
|
384
399
|
},
|
|
385
400
|
Array [
|
|
386
401
|
Object {
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"
|
|
402
|
+
"alignSelf": "center",
|
|
403
|
+
"height": 100,
|
|
404
|
+
"resizeMode": "cover",
|
|
405
|
+
"width": 30,
|
|
390
406
|
},
|
|
391
407
|
undefined,
|
|
392
408
|
],
|
|
393
409
|
]
|
|
394
410
|
}
|
|
411
|
+
width={30}
|
|
395
412
|
/>
|
|
396
413
|
<View
|
|
397
414
|
marginTop="large"
|
|
@@ -465,6 +482,108 @@ exports[`Carousel renders basic carousel 1`] = `
|
|
|
465
482
|
</View>
|
|
466
483
|
</View>
|
|
467
484
|
</View>
|
|
485
|
+
<View
|
|
486
|
+
onLayout={[Function]}
|
|
487
|
+
style={
|
|
488
|
+
Array [
|
|
489
|
+
Object {
|
|
490
|
+
"flexDirection": "row",
|
|
491
|
+
},
|
|
492
|
+
null,
|
|
493
|
+
]
|
|
494
|
+
}
|
|
495
|
+
>
|
|
496
|
+
<View
|
|
497
|
+
style={
|
|
498
|
+
Array [
|
|
499
|
+
Object {},
|
|
500
|
+
Object {
|
|
501
|
+
"width": 750,
|
|
502
|
+
},
|
|
503
|
+
]
|
|
504
|
+
}
|
|
505
|
+
>
|
|
506
|
+
<Image
|
|
507
|
+
height={100}
|
|
508
|
+
source={
|
|
509
|
+
Object {
|
|
510
|
+
"height": 100,
|
|
511
|
+
"uri": "https://picsum.photos/1200/800",
|
|
512
|
+
"width": 30,
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
style={
|
|
516
|
+
Array [
|
|
517
|
+
Object {
|
|
518
|
+
"borderRadius": 0,
|
|
519
|
+
"height": 72,
|
|
520
|
+
"width": 72,
|
|
521
|
+
},
|
|
522
|
+
Array [
|
|
523
|
+
Object {
|
|
524
|
+
"alignSelf": "center",
|
|
525
|
+
"height": 100,
|
|
526
|
+
"resizeMode": "contain",
|
|
527
|
+
"width": 30,
|
|
528
|
+
},
|
|
529
|
+
undefined,
|
|
530
|
+
],
|
|
531
|
+
]
|
|
532
|
+
}
|
|
533
|
+
width={30}
|
|
534
|
+
/>
|
|
535
|
+
<View
|
|
536
|
+
marginTop="large"
|
|
537
|
+
paddingHorizontal="large"
|
|
538
|
+
style={
|
|
539
|
+
Array [
|
|
540
|
+
Object {
|
|
541
|
+
"marginTop": 24,
|
|
542
|
+
"paddingHorizontal": 24,
|
|
543
|
+
},
|
|
544
|
+
Array [
|
|
545
|
+
Object {
|
|
546
|
+
"minHeight": 250,
|
|
547
|
+
"width": 750,
|
|
548
|
+
},
|
|
549
|
+
undefined,
|
|
550
|
+
],
|
|
551
|
+
]
|
|
552
|
+
}
|
|
553
|
+
width={750}
|
|
554
|
+
>
|
|
555
|
+
<Text
|
|
556
|
+
style={
|
|
557
|
+
Array [
|
|
558
|
+
Object {
|
|
559
|
+
"color": "#001f23",
|
|
560
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
561
|
+
"fontSize": 14,
|
|
562
|
+
"letterSpacing": 0.42,
|
|
563
|
+
"lineHeight": 22,
|
|
564
|
+
},
|
|
565
|
+
Array [
|
|
566
|
+
Object {
|
|
567
|
+
"fontFamily": "RebondGrotesque-SemiBold",
|
|
568
|
+
"fontSize": 32,
|
|
569
|
+
"lineHeight": 44,
|
|
570
|
+
"marginBottom": 16,
|
|
571
|
+
"marginTop": 8,
|
|
572
|
+
},
|
|
573
|
+
undefined,
|
|
574
|
+
],
|
|
575
|
+
]
|
|
576
|
+
}
|
|
577
|
+
themeFontSize="medium"
|
|
578
|
+
themeFontWeight="regular"
|
|
579
|
+
themeIntent="body"
|
|
580
|
+
themeTypeface="neutral"
|
|
581
|
+
>
|
|
582
|
+
Test slide 4
|
|
583
|
+
</Text>
|
|
584
|
+
</View>
|
|
585
|
+
</View>
|
|
586
|
+
</View>
|
|
468
587
|
</View>
|
|
469
588
|
</RCTScrollView>
|
|
470
589
|
<View
|
|
@@ -603,6 +722,20 @@ exports[`Carousel renders basic carousel 1`] = `
|
|
|
603
722
|
}
|
|
604
723
|
testID="page-control-indicator2"
|
|
605
724
|
/>
|
|
725
|
+
<View
|
|
726
|
+
collapsable={false}
|
|
727
|
+
style={
|
|
728
|
+
Object {
|
|
729
|
+
"backgroundColor": "#401960",
|
|
730
|
+
"borderRadius": 999,
|
|
731
|
+
"height": 8,
|
|
732
|
+
"marginHorizontal": 8,
|
|
733
|
+
"opacity": 0.5,
|
|
734
|
+
"width": 8,
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
testID="page-control-indicator3"
|
|
738
|
+
/>
|
|
606
739
|
</View>
|
|
607
740
|
</View>
|
|
608
741
|
</View>
|
|
@@ -648,7 +781,7 @@ exports[`Carousel should call skip call back when press skip 1`] = `
|
|
|
648
781
|
"background": "#ece8ef",
|
|
649
782
|
"body": "Access your Work, Money and Benefits in the palm of your hand.",
|
|
650
783
|
"heading": "Welcome to the new Employment Hero app",
|
|
651
|
-
"image":
|
|
784
|
+
"image": 1,
|
|
652
785
|
},
|
|
653
786
|
Object {
|
|
654
787
|
"background": "#ccd2d3",
|
|
@@ -667,7 +800,21 @@ exports[`Carousel should call skip call back when press skip 1`] = `
|
|
|
667
800
|
"background": "#ccd2d3",
|
|
668
801
|
"body": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae pulvinar quam, ac facilisis massa. Aliquam facilisis nisi eu justo dignissim, vel tempus justo iaculis.",
|
|
669
802
|
"heading": "Easier to get around",
|
|
670
|
-
"image":
|
|
803
|
+
"image": Object {
|
|
804
|
+
"height": 100,
|
|
805
|
+
"resizeMode": "cover",
|
|
806
|
+
"uri": "https://picsum.photos/1200/800",
|
|
807
|
+
"width": 30,
|
|
808
|
+
},
|
|
809
|
+
},
|
|
810
|
+
Object {
|
|
811
|
+
"background": "#ccd2d3",
|
|
812
|
+
"heading": "Test slide 4",
|
|
813
|
+
"image": Object {
|
|
814
|
+
"height": 100,
|
|
815
|
+
"uri": "https://picsum.photos/1200/800",
|
|
816
|
+
"width": 30,
|
|
817
|
+
},
|
|
671
818
|
},
|
|
672
819
|
]
|
|
673
820
|
}
|
|
@@ -728,11 +875,7 @@ exports[`Carousel should call skip call back when press skip 1`] = `
|
|
|
728
875
|
}
|
|
729
876
|
>
|
|
730
877
|
<Image
|
|
731
|
-
source={
|
|
732
|
-
Object {
|
|
733
|
-
"uri": "https://picsum.photos/800/1200",
|
|
734
|
-
}
|
|
735
|
-
}
|
|
878
|
+
source={1}
|
|
736
879
|
style={
|
|
737
880
|
Array [
|
|
738
881
|
Object {
|
|
@@ -979,9 +1122,14 @@ exports[`Carousel should call skip call back when press skip 1`] = `
|
|
|
979
1122
|
}
|
|
980
1123
|
>
|
|
981
1124
|
<Image
|
|
1125
|
+
height={100}
|
|
1126
|
+
resizeMode="cover"
|
|
982
1127
|
source={
|
|
983
1128
|
Object {
|
|
984
|
-
"
|
|
1129
|
+
"height": 100,
|
|
1130
|
+
"resizeMode": "cover",
|
|
1131
|
+
"uri": "https://picsum.photos/1200/800",
|
|
1132
|
+
"width": 30,
|
|
985
1133
|
}
|
|
986
1134
|
}
|
|
987
1135
|
style={
|
|
@@ -993,14 +1141,16 @@ exports[`Carousel should call skip call back when press skip 1`] = `
|
|
|
993
1141
|
},
|
|
994
1142
|
Array [
|
|
995
1143
|
Object {
|
|
996
|
-
"
|
|
997
|
-
"
|
|
998
|
-
"
|
|
1144
|
+
"alignSelf": "center",
|
|
1145
|
+
"height": 100,
|
|
1146
|
+
"resizeMode": "cover",
|
|
1147
|
+
"width": 30,
|
|
999
1148
|
},
|
|
1000
1149
|
undefined,
|
|
1001
1150
|
],
|
|
1002
1151
|
]
|
|
1003
1152
|
}
|
|
1153
|
+
width={30}
|
|
1004
1154
|
/>
|
|
1005
1155
|
<View
|
|
1006
1156
|
marginTop="large"
|
|
@@ -1074,6 +1224,108 @@ exports[`Carousel should call skip call back when press skip 1`] = `
|
|
|
1074
1224
|
</View>
|
|
1075
1225
|
</View>
|
|
1076
1226
|
</View>
|
|
1227
|
+
<View
|
|
1228
|
+
onLayout={[Function]}
|
|
1229
|
+
style={
|
|
1230
|
+
Array [
|
|
1231
|
+
Object {
|
|
1232
|
+
"flexDirection": "row",
|
|
1233
|
+
},
|
|
1234
|
+
null,
|
|
1235
|
+
]
|
|
1236
|
+
}
|
|
1237
|
+
>
|
|
1238
|
+
<View
|
|
1239
|
+
style={
|
|
1240
|
+
Array [
|
|
1241
|
+
Object {},
|
|
1242
|
+
Object {
|
|
1243
|
+
"width": 750,
|
|
1244
|
+
},
|
|
1245
|
+
]
|
|
1246
|
+
}
|
|
1247
|
+
>
|
|
1248
|
+
<Image
|
|
1249
|
+
height={100}
|
|
1250
|
+
source={
|
|
1251
|
+
Object {
|
|
1252
|
+
"height": 100,
|
|
1253
|
+
"uri": "https://picsum.photos/1200/800",
|
|
1254
|
+
"width": 30,
|
|
1255
|
+
}
|
|
1256
|
+
}
|
|
1257
|
+
style={
|
|
1258
|
+
Array [
|
|
1259
|
+
Object {
|
|
1260
|
+
"borderRadius": 0,
|
|
1261
|
+
"height": 72,
|
|
1262
|
+
"width": 72,
|
|
1263
|
+
},
|
|
1264
|
+
Array [
|
|
1265
|
+
Object {
|
|
1266
|
+
"alignSelf": "center",
|
|
1267
|
+
"height": 100,
|
|
1268
|
+
"resizeMode": "contain",
|
|
1269
|
+
"width": 30,
|
|
1270
|
+
},
|
|
1271
|
+
undefined,
|
|
1272
|
+
],
|
|
1273
|
+
]
|
|
1274
|
+
}
|
|
1275
|
+
width={30}
|
|
1276
|
+
/>
|
|
1277
|
+
<View
|
|
1278
|
+
marginTop="large"
|
|
1279
|
+
paddingHorizontal="large"
|
|
1280
|
+
style={
|
|
1281
|
+
Array [
|
|
1282
|
+
Object {
|
|
1283
|
+
"marginTop": 24,
|
|
1284
|
+
"paddingHorizontal": 24,
|
|
1285
|
+
},
|
|
1286
|
+
Array [
|
|
1287
|
+
Object {
|
|
1288
|
+
"minHeight": 250,
|
|
1289
|
+
"width": 750,
|
|
1290
|
+
},
|
|
1291
|
+
undefined,
|
|
1292
|
+
],
|
|
1293
|
+
]
|
|
1294
|
+
}
|
|
1295
|
+
width={750}
|
|
1296
|
+
>
|
|
1297
|
+
<Text
|
|
1298
|
+
style={
|
|
1299
|
+
Array [
|
|
1300
|
+
Object {
|
|
1301
|
+
"color": "#001f23",
|
|
1302
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1303
|
+
"fontSize": 14,
|
|
1304
|
+
"letterSpacing": 0.42,
|
|
1305
|
+
"lineHeight": 22,
|
|
1306
|
+
},
|
|
1307
|
+
Array [
|
|
1308
|
+
Object {
|
|
1309
|
+
"fontFamily": "RebondGrotesque-SemiBold",
|
|
1310
|
+
"fontSize": 32,
|
|
1311
|
+
"lineHeight": 44,
|
|
1312
|
+
"marginBottom": 16,
|
|
1313
|
+
"marginTop": 8,
|
|
1314
|
+
},
|
|
1315
|
+
undefined,
|
|
1316
|
+
],
|
|
1317
|
+
]
|
|
1318
|
+
}
|
|
1319
|
+
themeFontSize="medium"
|
|
1320
|
+
themeFontWeight="regular"
|
|
1321
|
+
themeIntent="body"
|
|
1322
|
+
themeTypeface="neutral"
|
|
1323
|
+
>
|
|
1324
|
+
Test slide 4
|
|
1325
|
+
</Text>
|
|
1326
|
+
</View>
|
|
1327
|
+
</View>
|
|
1328
|
+
</View>
|
|
1077
1329
|
</View>
|
|
1078
1330
|
</RCTScrollView>
|
|
1079
1331
|
<View
|
|
@@ -1212,6 +1464,20 @@ exports[`Carousel should call skip call back when press skip 1`] = `
|
|
|
1212
1464
|
}
|
|
1213
1465
|
testID="page-control-indicator2"
|
|
1214
1466
|
/>
|
|
1467
|
+
<View
|
|
1468
|
+
collapsable={false}
|
|
1469
|
+
style={
|
|
1470
|
+
Object {
|
|
1471
|
+
"backgroundColor": "#401960",
|
|
1472
|
+
"borderRadius": 999,
|
|
1473
|
+
"height": 8,
|
|
1474
|
+
"marginHorizontal": 8,
|
|
1475
|
+
"opacity": 0.5,
|
|
1476
|
+
"width": 8,
|
|
1477
|
+
}
|
|
1478
|
+
}
|
|
1479
|
+
testID="page-control-indicator3"
|
|
1480
|
+
/>
|
|
1215
1481
|
</View>
|
|
1216
1482
|
</View>
|
|
1217
1483
|
</View>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { fireEvent } from '@testing-library/react-native';
|
|
3
|
-
|
|
3
|
+
import { ImageResizeMode } from 'react-native';
|
|
4
4
|
import renderWithTheme from '../../../testHelpers/renderWithTheme';
|
|
5
5
|
import Carousel from '..';
|
|
6
6
|
import Image from '../../Image';
|
|
@@ -9,7 +9,7 @@ import Button from '../../Button/Button';
|
|
|
9
9
|
|
|
10
10
|
const carouselData = [
|
|
11
11
|
{
|
|
12
|
-
image: '
|
|
12
|
+
image: 1, // Test the case when we import .png files as React Native component, it's convert to ImageRequireSource type (which is a number).
|
|
13
13
|
heading: 'Welcome to the new Employment Hero app',
|
|
14
14
|
body: 'Access your Work, Money and Benefits in the palm of your hand.',
|
|
15
15
|
background: theme.colors.highlightedSurface,
|
|
@@ -22,11 +22,25 @@ const carouselData = [
|
|
|
22
22
|
background: theme.colors.decorativePrimarySurface,
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
|
-
image:
|
|
25
|
+
image: {
|
|
26
|
+
uri: 'https://picsum.photos/1200/800',
|
|
27
|
+
width: 30,
|
|
28
|
+
height: 100,
|
|
29
|
+
resizeMode: 'cover' as ImageResizeMode,
|
|
30
|
+
},
|
|
26
31
|
heading: 'Easier to get around',
|
|
27
32
|
body: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae pulvinar quam, ac facilisis massa. Aliquam facilisis nisi eu justo dignissim, vel tempus justo iaculis.',
|
|
28
33
|
background: theme.colors.decorativePrimarySurface,
|
|
29
34
|
},
|
|
35
|
+
{
|
|
36
|
+
image: {
|
|
37
|
+
uri: 'https://picsum.photos/1200/800',
|
|
38
|
+
width: 30,
|
|
39
|
+
height: 100,
|
|
40
|
+
},
|
|
41
|
+
heading: 'Test slide 4',
|
|
42
|
+
background: theme.colors.decorativePrimarySurface,
|
|
43
|
+
},
|
|
30
44
|
];
|
|
31
45
|
|
|
32
46
|
describe('Carousel', () => {
|
|
@@ -48,11 +62,6 @@ describe('Carousel', () => {
|
|
|
48
62
|
|
|
49
63
|
// Slide 1
|
|
50
64
|
expect(queryByText('Welcome to the new Employment Hero app')).toBeTruthy();
|
|
51
|
-
expect(
|
|
52
|
-
queryByText(
|
|
53
|
-
'Access your Work, Money and Benefits in the palm of your hand.'
|
|
54
|
-
)
|
|
55
|
-
).toBeTruthy();
|
|
56
65
|
|
|
57
66
|
// Slide 2
|
|
58
67
|
expect(queryByText('Same app with a new look!')).toBeTruthy();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"activate":59000,"add-emoji":59001,"add-person":59002,"adjustment":59003,"alignment":59004,"antenna":59005,"archive":59006,"assignment-warning":59007,"bank":59008,"bell":59009,"billing":59010,"bookmark-added":59011,"bookmark":59012,"box-check":59013,"box":59014,"bpay":59015,"buildings":59016,"cake":59017,"calendar-clock":59018,"calendar":59019,"candy-box-menu":59020,"caret-down-small":59021,"caret-down":59022,"caret-left-small":59023,"caret-left":59024,"caret-right-small":59025,"caret-right":59026,"caret-up-small":59027,"caret-up":59028,"check-radio":59029,"circle-add":59030,"circle-cancel":59031,"circle-check":59032,"circle-down":59033,"circle-info":59034,"circle-left":59035,"circle-ok":59036,"circle-pencil":59037,"circle-question":59038,"circle-remove":59039,"circle-right":59040,"circle-up":59041,"circle-warning":59042,"clock-3":59043,"clock":59044,"cloud-download":59045,"cloud-upload":59046,"cog":59047,"coin":59048,"contacts":59049,"credit-card":59050,"diamond":59051,"direction-arrows":59052,"directory":59053,"document":59054,"dollar-coin-shine":59055,"double-buildings":59056,"edit-template":59057,"envelope":59058,"exclude":59059,"expense":59060,"eye-circle":59061,"eye-invisible":59062,"eye":59063,"face-meh":59064,"face-sad":59065,"face-smiley":59066,"feed":59067,"feedbacks":59068,"file-certified":59069,"file-clone":59070,"file-copy":59071,"file-csv":59072,"file-dispose":59073,"file-doc":59074,"file-excel":59075,"file-export":59076,"file-lock":59077,"file-pdf":59078,"file-powerpoint":59079,"file-search":59080,"file-secured":59081,"file-sheets":59082,"file-slide":59083,"file-verified":59084,"file-word":59085,"file":59086,"filter":59087,"folder-user":59088,"folder":59089,"format-bold":59090,"format-heading1":59091,"format-heading2":59092,"format-italic":59093,"format-list-bulleted":59094,"format-list-numbered":59095,"format-underlined":59096,"funnel-filter":59097,"global-dollar":59098,"globe":59099,"graduation-cap":59100,"graph":59101,"happy-sun":59102,"health-bag":59103,"heart":59104,"home":59105,"image":59106,"import":59107,"incident-siren":59108,"instapay":59109,"list":59110,"loading-2":59111,"loading":59112,"location":59113,"lock":59114,"looks-one":59115,"looks-two":59116,"media-content":59117,"menu":59118,"money-notes":59119,"moneybag":59120,"moon":59121,"multiple-stars":59122,"multiple-users":59123,"node":59124,"open-folder":59125,"paperclip":59126,"payment-summary":59127,"pencil":59128,"phone":59129,"piggy-bank":59130,"plane":59131,"play-circle":
|
|
1
|
+
{"activate":59000,"add-emoji":59001,"add-person":59002,"adjustment":59003,"alignment":59004,"antenna":59005,"archive":59006,"assignment-warning":59007,"bank":59008,"bell":59009,"billing":59010,"bookmark-added":59011,"bookmark":59012,"box-check":59013,"box":59014,"bpay":59015,"buildings":59016,"cake":59017,"calendar-clock":59018,"calendar":59019,"candy-box-menu":59020,"caret-down-small":59021,"caret-down":59022,"caret-left-small":59023,"caret-left":59024,"caret-right-small":59025,"caret-right":59026,"caret-up-small":59027,"caret-up":59028,"check-radio":59029,"circle-add":59030,"circle-cancel":59031,"circle-check":59032,"circle-down":59033,"circle-info":59034,"circle-left":59035,"circle-ok":59036,"circle-pencil":59037,"circle-question":59038,"circle-remove":59039,"circle-right":59040,"circle-up":59041,"circle-warning":59042,"clock-3":59043,"clock":59044,"cloud-download":59045,"cloud-upload":59046,"cog":59047,"coin":59048,"contacts":59049,"credit-card":59050,"diamond":59051,"direction-arrows":59052,"directory":59053,"document":59054,"dollar-coin-shine":59055,"double-buildings":59056,"edit-template":59057,"envelope":59058,"exclude":59059,"expense":59060,"eye-circle":59061,"eye-invisible":59062,"eye":59063,"face-meh":59064,"face-sad":59065,"face-smiley":59066,"feed":59067,"feedbacks":59068,"file-certified":59069,"file-clone":59070,"file-copy":59071,"file-csv":59072,"file-dispose":59073,"file-doc":59074,"file-excel":59075,"file-export":59076,"file-lock":59077,"file-pdf":59078,"file-powerpoint":59079,"file-search":59080,"file-secured":59081,"file-sheets":59082,"file-slide":59083,"file-verified":59084,"file-word":59085,"file":59086,"filter":59087,"folder-user":59088,"folder":59089,"format-bold":59090,"format-heading1":59091,"format-heading2":59092,"format-italic":59093,"format-list-bulleted":59094,"format-list-numbered":59095,"format-underlined":59096,"funnel-filter":59097,"global-dollar":59098,"globe":59099,"graduation-cap":59100,"graph":59101,"happy-sun":59102,"health-bag":59103,"heart":59104,"home":59105,"image":59106,"import":59107,"incident-siren":59108,"instapay":59109,"list":59110,"loading-2":59111,"loading":59112,"location":59113,"lock":59114,"looks-one":59115,"looks-two":59116,"media-content":59117,"menu":59118,"money-notes":59119,"moneybag":59120,"moon":59121,"multiple-stars":59122,"multiple-users":59123,"node":59124,"open-folder":59125,"paperclip":59126,"payment-summary":59127,"pencil":59128,"phone":59129,"piggy-bank":59130,"plane-up":59131,"plane":59132,"play-circle":59133,"print":59134,"raising-hands":59135,"reply-arrow":59136,"reply":59137,"reschedule":59138,"rostering":59139,"save":59140,"schedule-send":59141,"schedule":59142,"search-person":59143,"send":59144,"speaker-active":59145,"speaker":59146,"star-award":59147,"star-badge":59148,"star-circle":59149,"star-medal":59150,"star":59151,"steps-circle":59152,"stopwatch":59153,"suitcase":59154,"survey":59155,"swag-pillar-benefit":59156,"swag-pillar-career":59157,"swag-pillar-money":59158,"swag-pillar-work":59159,"swag":59160,"switch":59161,"tag":59162,"target":59163,"teams":59164,"timesheet":59165,"touch-id":59166,"trash-bin":59167,"unlock":59168,"user":59169,"video-1":59170,"video-2":59171,"wallet":59172,"warning":59173,"activate-outlined":59174,"add-credit-card-outlined":59175,"add-person-outlined":59176,"add-section-outlined":59177,"add-time-outlined":59178,"add":59179,"adjustment-outlined":59180,"alignment-2-outlined":59181,"alignment-outlined":59182,"all-caps":59183,"arrow-down":59184,"arrow-downwards":59185,"arrow-left":59186,"arrow-leftwards":59187,"arrow-right":59188,"arrow-rightwards":59189,"arrow-up":59190,"arrow-upwards":59191,"article-outlined":59192,"at-sign":59193,"auto-graph-outlined":59194,"bell-active-outlined":59195,"bell-outlined":59196,"bell-slash-outlined":59197,"billing-outlined":59198,"body-outlined":59199,"bold":59200,"bookmark-added-outlined":59201,"bookmark-outlined":59202,"box-check-outlined":59203,"box-outlined":59204,"bullet-points":59205,"cake-outlined":59206,"calendar-dates-outlined":59207,"calendar-star-outlined":59208,"call-split-outlined":59209,"camera-outlined":59210,"cancel":59211,"car-forward-outlined":59212,"charging-station-outlined":59213,"chat-bubble-outlined":59214,"chat-unread-outlined":59215,"checkmark":59216,"circle-add-outlined":59217,"circle-cancel-outlined":59218,"circle-down-outlined":59219,"circle-info-outlined":59220,"circle-left-outlined":59221,"circle-ok-outlined":59222,"circle-question-outlined":59223,"circle-remove-outlined":59224,"circle-right-outlined":59225,"circle-up-outlined":59226,"circle-warning-outlined":59227,"clock-2-outlined":59228,"clock-outlined":59229,"cog-outlined":59230,"coin-outlined":59231,"comment-outlined":59232,"contacts-outlined":59233,"contacts-user-outlined":59234,"credit-card-outlined":59235,"cup-outlined":59236,"direction-arrows-outlined":59237,"directory-outlined":59238,"document-outlined":59239,"dollar-box-outlined":59240,"dollar-card-outlined":59241,"dollar-coin-shine-outlined":59242,"dollar-credit-card-outlined":59243,"dollar-sign":59244,"double-buildings-outlined":59245,"double-left-arrows":59246,"double-right-arrows":59247,"download-outlined":59248,"edit-template-outlined":59249,"email-outlined":59250,"enter-arrow":59251,"envelope-outlined":59252,"expense-outlined":59253,"explore-outlined":59254,"external-link":59255,"eye-invisible-outlined":59256,"eye-outlined":59257,"face-id":59258,"face-meh-outlined":59259,"face-open-smiley-outlined":59260,"face-sad-outlined":59261,"face-smiley-outlined":59262,"feed-outlined":59263,"file-certified-outlined":59264,"file-clone-outlined":59265,"file-copy-outlined":59266,"file-dispose-outlined":59267,"file-dollar-certified-outlined":59268,"file-dollar-outlined":59269,"file-download-outlined":59270,"file-export-outlined":59271,"file-lock-outlined":59272,"file-outlined":59273,"file-search-outlined":59274,"file-secured-outlined":59275,"file-statutory-outlined":59276,"file-verified-outlined":59277,"filter-outlined":59278,"folder-outlined":59279,"folder-user-outlined":59280,"funnel-filter-outline":59281,"graph-outlined":59282,"hand-holding-user-outlined":59283,"happy-sun-outlined":59284,"health-bag-outlined":59285,"heart-outlined":59286,"home-active-outlined":59287,"home-outlined":59288,"id-card-outlined":59289,"image-outlined":59290,"import-outlined":59291,"instapay-outlined":59292,"italic":59293,"link-1":59294,"link-2":59295,"list-outlined":59296,"live-help-outlined":59297,"location-on-outlined":59298,"location-outlined":59299,"lock-outlined":59300,"locked-file-outlined":59301,"log-out":59302,"media-content-outlined":59303,"menu-close":59304,"menu-expand":59305,"menu-fold-outlined":59306,"menu-unfold-outlined":59307,"moneybag-outlined":59308,"moon-outlined":59309,"more-horizontal":59310,"more-vertical":59311,"multiple-folders-outlined":59312,"multiple-users-outlined":59313,"near-me-outlined":59314,"node-outlined":59315,"number-points":59316,"number":59317,"overview-outlined":59318,"payment-summary-outlined":59319,"payslip-outlined":59320,"pencil-outlined":59321,"percentage":59322,"phone-outlined":59323,"piggy-bank-outlined":59324,"plane-outlined":59325,"play-circle-outlined":59326,"print-outlined":59327,"qr-code-outlined":59328,"qualification-outlined":59329,"re-assign":59330,"redeem":59331,"refresh":59332,"remove":59333,"reply-outlined":59334,"restart":59335,"return-arrow":59336,"rostering-outlined":59337,"save-outlined":59338,"schedule-outlined":59339,"search-outlined":59340,"search-secured-outlined":59341,"send-outlined":59342,"share-1":59343,"share-2":59344,"share-outlined":59345,"show-chart-outlined":59346,"single-down-arrow":59347,"single-left-arrow":59348,"single-right-arrow":59349,"single-up-arrow":59350,"speaker-active-outlined":59351,"speaker-outlined":59352,"star-circle-outlined":59353,"star-outlined":59354,"stopwatch-outlined":59355,"strikethrough":59356,"suitcase-clock-outlined":59357,"suitcase-outlined":59358,"survey-outlined":59359,"switch-outlined":59360,"sync":59361,"target-outlined":59362,"timesheet-outlined":59363,"today-outlined":59364,"transfer":59365,"trash-bin-outlined":59366,"umbrela-outlined":59367,"unavailable":59368,"underline":59369,"union-outlined":59370,"unlock-outlined":59371,"upload-outlined":59372,"user-circle-outlined":59373,"user-gear-outlined":59374,"user-outlined":59375,"user-rectangle-outlined":59376,"video-1-outlined":59377,"video-2-outlined":59378,"wallet-outlined":59379}
|
|
@@ -131,6 +131,7 @@ const IconList = [
|
|
|
131
131
|
'pencil',
|
|
132
132
|
'phone',
|
|
133
133
|
'piggy-bank',
|
|
134
|
+
'plane-up',
|
|
134
135
|
'plane',
|
|
135
136
|
'play-circle',
|
|
136
137
|
'print',
|
|
@@ -155,6 +156,10 @@ const IconList = [
|
|
|
155
156
|
'stopwatch',
|
|
156
157
|
'suitcase',
|
|
157
158
|
'survey',
|
|
159
|
+
'swag-pillar-benefit',
|
|
160
|
+
'swag-pillar-career',
|
|
161
|
+
'swag-pillar-money',
|
|
162
|
+
'swag-pillar-work',
|
|
158
163
|
'swag',
|
|
159
164
|
'switch',
|
|
160
165
|
'tag',
|
|
@@ -207,6 +212,7 @@ const IconList = [
|
|
|
207
212
|
'call-split-outlined',
|
|
208
213
|
'camera-outlined',
|
|
209
214
|
'cancel',
|
|
215
|
+
'car-forward-outlined',
|
|
210
216
|
'charging-station-outlined',
|
|
211
217
|
'chat-bubble-outlined',
|
|
212
218
|
'chat-unread-outlined',
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const IconList: readonly ["activate", "add-emoji", "add-person", "adjustment", "alignment", "antenna", "archive", "assignment-warning", "bank", "bell", "billing", "bookmark-added", "bookmark", "box-check", "box", "bpay", "buildings", "cake", "calendar-clock", "calendar", "candy-box-menu", "caret-down-small", "caret-down", "caret-left-small", "caret-left", "caret-right-small", "caret-right", "caret-up-small", "caret-up", "check-radio", "circle-add", "circle-cancel", "circle-check", "circle-down", "circle-info", "circle-left", "circle-ok", "circle-pencil", "circle-question", "circle-remove", "circle-right", "circle-up", "circle-warning", "clock-3", "clock", "cloud-download", "cloud-upload", "cog", "coin", "contacts", "credit-card", "diamond", "direction-arrows", "directory", "document", "dollar-coin-shine", "double-buildings", "edit-template", "envelope", "exclude", "expense", "eye-circle", "eye-invisible", "eye", "face-meh", "face-sad", "face-smiley", "feed", "feedbacks", "file-certified", "file-clone", "file-copy", "file-csv", "file-dispose", "file-doc", "file-excel", "file-export", "file-lock", "file-pdf", "file-powerpoint", "file-search", "file-secured", "file-sheets", "file-slide", "file-verified", "file-word", "file", "filter", "folder-user", "folder", "format-bold", "format-heading1", "format-heading2", "format-italic", "format-list-bulleted", "format-list-numbered", "format-underlined", "funnel-filter", "global-dollar", "globe", "graduation-cap", "graph", "happy-sun", "health-bag", "heart", "home", "image", "import", "incident-siren", "instapay", "list", "loading-2", "loading", "location", "lock", "looks-one", "looks-two", "media-content", "menu", "money-notes", "moneybag", "moon", "multiple-stars", "multiple-users", "node", "open-folder", "paperclip", "payment-summary", "pencil", "phone", "piggy-bank", "plane", "play-circle", "print", "raising-hands", "reply-arrow", "reply", "reschedule", "rostering", "save", "schedule-send", "schedule", "search-person", "send", "speaker-active", "speaker", "star-award", "star-badge", "star-circle", "star-medal", "star", "steps-circle", "stopwatch", "suitcase", "survey", "swag", "switch", "tag", "target", "teams", "timesheet", "touch-id", "trash-bin", "unlock", "user", "video-1", "video-2", "wallet", "warning", "activate-outlined", "add-credit-card-outlined", "add-person-outlined", "add-section-outlined", "add-time-outlined", "add", "adjustment-outlined", "alignment-2-outlined", "alignment-outlined", "all-caps", "arrow-down", "arrow-downwards", "arrow-left", "arrow-leftwards", "arrow-right", "arrow-rightwards", "arrow-up", "arrow-upwards", "article-outlined", "at-sign", "auto-graph-outlined", "bell-active-outlined", "bell-outlined", "bell-slash-outlined", "billing-outlined", "body-outlined", "bold", "bookmark-added-outlined", "bookmark-outlined", "box-check-outlined", "box-outlined", "bullet-points", "cake-outlined", "calendar-dates-outlined", "calendar-star-outlined", "call-split-outlined", "camera-outlined", "cancel", "charging-station-outlined", "chat-bubble-outlined", "chat-unread-outlined", "checkmark", "circle-add-outlined", "circle-cancel-outlined", "circle-down-outlined", "circle-info-outlined", "circle-left-outlined", "circle-ok-outlined", "circle-question-outlined", "circle-remove-outlined", "circle-right-outlined", "circle-up-outlined", "circle-warning-outlined", "clock-2-outlined", "clock-outlined", "cog-outlined", "coin-outlined", "comment-outlined", "contacts-outlined", "contacts-user-outlined", "credit-card-outlined", "cup-outlined", "direction-arrows-outlined", "directory-outlined", "document-outlined", "dollar-box-outlined", "dollar-card-outlined", "dollar-coin-shine-outlined", "dollar-credit-card-outlined", "dollar-sign", "double-buildings-outlined", "double-left-arrows", "double-right-arrows", "download-outlined", "edit-template-outlined", "email-outlined", "enter-arrow", "envelope-outlined", "expense-outlined", "explore-outlined", "external-link", "eye-invisible-outlined", "eye-outlined", "face-id", "face-meh-outlined", "face-open-smiley-outlined", "face-sad-outlined", "face-smiley-outlined", "feed-outlined", "file-certified-outlined", "file-clone-outlined", "file-copy-outlined", "file-dispose-outlined", "file-dollar-certified-outlined", "file-dollar-outlined", "file-download-outlined", "file-export-outlined", "file-lock-outlined", "file-outlined", "file-search-outlined", "file-secured-outlined", "file-statutory-outlined", "file-verified-outlined", "filter-outlined", "folder-outlined", "folder-user-outlined", "funnel-filter-outline", "graph-outlined", "hand-holding-user-outlined", "happy-sun-outlined", "health-bag-outlined", "heart-outlined", "home-active-outlined", "home-outlined", "id-card-outlined", "image-outlined", "import-outlined", "instapay-outlined", "italic", "link-1", "link-2", "list-outlined", "live-help-outlined", "location-on-outlined", "location-outlined", "lock-outlined", "locked-file-outlined", "log-out", "media-content-outlined", "menu-close", "menu-expand", "menu-fold-outlined", "menu-unfold-outlined", "moneybag-outlined", "moon-outlined", "more-horizontal", "more-vertical", "multiple-folders-outlined", "multiple-users-outlined", "near-me-outlined", "node-outlined", "number-points", "number", "overview-outlined", "payment-summary-outlined", "payslip-outlined", "pencil-outlined", "percentage", "phone-outlined", "piggy-bank-outlined", "plane-outlined", "play-circle-outlined", "print-outlined", "qr-code-outlined", "qualification-outlined", "re-assign", "redeem", "refresh", "remove", "reply-outlined", "restart", "return-arrow", "rostering-outlined", "save-outlined", "schedule-outlined", "search-outlined", "search-secured-outlined", "send-outlined", "share-1", "share-2", "share-outlined", "show-chart-outlined", "single-down-arrow", "single-left-arrow", "single-right-arrow", "single-up-arrow", "speaker-active-outlined", "speaker-outlined", "star-circle-outlined", "star-outlined", "stopwatch-outlined", "strikethrough", "suitcase-clock-outlined", "suitcase-outlined", "survey-outlined", "switch-outlined", "sync", "target-outlined", "timesheet-outlined", "today-outlined", "transfer", "trash-bin-outlined", "umbrela-outlined", "unavailable", "underline", "union-outlined", "unlock-outlined", "upload-outlined", "user-circle-outlined", "user-gear-outlined", "user-outlined", "user-rectangle-outlined", "video-1-outlined", "video-2-outlined", "wallet-outlined"];
|
|
1
|
+
declare const IconList: readonly ["activate", "add-emoji", "add-person", "adjustment", "alignment", "antenna", "archive", "assignment-warning", "bank", "bell", "billing", "bookmark-added", "bookmark", "box-check", "box", "bpay", "buildings", "cake", "calendar-clock", "calendar", "candy-box-menu", "caret-down-small", "caret-down", "caret-left-small", "caret-left", "caret-right-small", "caret-right", "caret-up-small", "caret-up", "check-radio", "circle-add", "circle-cancel", "circle-check", "circle-down", "circle-info", "circle-left", "circle-ok", "circle-pencil", "circle-question", "circle-remove", "circle-right", "circle-up", "circle-warning", "clock-3", "clock", "cloud-download", "cloud-upload", "cog", "coin", "contacts", "credit-card", "diamond", "direction-arrows", "directory", "document", "dollar-coin-shine", "double-buildings", "edit-template", "envelope", "exclude", "expense", "eye-circle", "eye-invisible", "eye", "face-meh", "face-sad", "face-smiley", "feed", "feedbacks", "file-certified", "file-clone", "file-copy", "file-csv", "file-dispose", "file-doc", "file-excel", "file-export", "file-lock", "file-pdf", "file-powerpoint", "file-search", "file-secured", "file-sheets", "file-slide", "file-verified", "file-word", "file", "filter", "folder-user", "folder", "format-bold", "format-heading1", "format-heading2", "format-italic", "format-list-bulleted", "format-list-numbered", "format-underlined", "funnel-filter", "global-dollar", "globe", "graduation-cap", "graph", "happy-sun", "health-bag", "heart", "home", "image", "import", "incident-siren", "instapay", "list", "loading-2", "loading", "location", "lock", "looks-one", "looks-two", "media-content", "menu", "money-notes", "moneybag", "moon", "multiple-stars", "multiple-users", "node", "open-folder", "paperclip", "payment-summary", "pencil", "phone", "piggy-bank", "plane-up", "plane", "play-circle", "print", "raising-hands", "reply-arrow", "reply", "reschedule", "rostering", "save", "schedule-send", "schedule", "search-person", "send", "speaker-active", "speaker", "star-award", "star-badge", "star-circle", "star-medal", "star", "steps-circle", "stopwatch", "suitcase", "survey", "swag-pillar-benefit", "swag-pillar-career", "swag-pillar-money", "swag-pillar-work", "swag", "switch", "tag", "target", "teams", "timesheet", "touch-id", "trash-bin", "unlock", "user", "video-1", "video-2", "wallet", "warning", "activate-outlined", "add-credit-card-outlined", "add-person-outlined", "add-section-outlined", "add-time-outlined", "add", "adjustment-outlined", "alignment-2-outlined", "alignment-outlined", "all-caps", "arrow-down", "arrow-downwards", "arrow-left", "arrow-leftwards", "arrow-right", "arrow-rightwards", "arrow-up", "arrow-upwards", "article-outlined", "at-sign", "auto-graph-outlined", "bell-active-outlined", "bell-outlined", "bell-slash-outlined", "billing-outlined", "body-outlined", "bold", "bookmark-added-outlined", "bookmark-outlined", "box-check-outlined", "box-outlined", "bullet-points", "cake-outlined", "calendar-dates-outlined", "calendar-star-outlined", "call-split-outlined", "camera-outlined", "cancel", "car-forward-outlined", "charging-station-outlined", "chat-bubble-outlined", "chat-unread-outlined", "checkmark", "circle-add-outlined", "circle-cancel-outlined", "circle-down-outlined", "circle-info-outlined", "circle-left-outlined", "circle-ok-outlined", "circle-question-outlined", "circle-remove-outlined", "circle-right-outlined", "circle-up-outlined", "circle-warning-outlined", "clock-2-outlined", "clock-outlined", "cog-outlined", "coin-outlined", "comment-outlined", "contacts-outlined", "contacts-user-outlined", "credit-card-outlined", "cup-outlined", "direction-arrows-outlined", "directory-outlined", "document-outlined", "dollar-box-outlined", "dollar-card-outlined", "dollar-coin-shine-outlined", "dollar-credit-card-outlined", "dollar-sign", "double-buildings-outlined", "double-left-arrows", "double-right-arrows", "download-outlined", "edit-template-outlined", "email-outlined", "enter-arrow", "envelope-outlined", "expense-outlined", "explore-outlined", "external-link", "eye-invisible-outlined", "eye-outlined", "face-id", "face-meh-outlined", "face-open-smiley-outlined", "face-sad-outlined", "face-smiley-outlined", "feed-outlined", "file-certified-outlined", "file-clone-outlined", "file-copy-outlined", "file-dispose-outlined", "file-dollar-certified-outlined", "file-dollar-outlined", "file-download-outlined", "file-export-outlined", "file-lock-outlined", "file-outlined", "file-search-outlined", "file-secured-outlined", "file-statutory-outlined", "file-verified-outlined", "filter-outlined", "folder-outlined", "folder-user-outlined", "funnel-filter-outline", "graph-outlined", "hand-holding-user-outlined", "happy-sun-outlined", "health-bag-outlined", "heart-outlined", "home-active-outlined", "home-outlined", "id-card-outlined", "image-outlined", "import-outlined", "instapay-outlined", "italic", "link-1", "link-2", "list-outlined", "live-help-outlined", "location-on-outlined", "location-outlined", "lock-outlined", "locked-file-outlined", "log-out", "media-content-outlined", "menu-close", "menu-expand", "menu-fold-outlined", "menu-unfold-outlined", "moneybag-outlined", "moon-outlined", "more-horizontal", "more-vertical", "multiple-folders-outlined", "multiple-users-outlined", "near-me-outlined", "node-outlined", "number-points", "number", "overview-outlined", "payment-summary-outlined", "payslip-outlined", "pencil-outlined", "percentage", "phone-outlined", "piggy-bank-outlined", "plane-outlined", "play-circle-outlined", "print-outlined", "qr-code-outlined", "qualification-outlined", "re-assign", "redeem", "refresh", "remove", "reply-outlined", "restart", "return-arrow", "rostering-outlined", "save-outlined", "schedule-outlined", "search-outlined", "search-secured-outlined", "send-outlined", "share-1", "share-2", "share-outlined", "show-chart-outlined", "single-down-arrow", "single-left-arrow", "single-right-arrow", "single-up-arrow", "speaker-active-outlined", "speaker-outlined", "star-circle-outlined", "star-outlined", "stopwatch-outlined", "strikethrough", "suitcase-clock-outlined", "suitcase-outlined", "survey-outlined", "switch-outlined", "sync", "target-outlined", "timesheet-outlined", "today-outlined", "transfer", "trash-bin-outlined", "umbrela-outlined", "unavailable", "underline", "union-outlined", "unlock-outlined", "upload-outlined", "user-circle-outlined", "user-gear-outlined", "user-outlined", "user-rectangle-outlined", "video-1-outlined", "video-2-outlined", "wallet-outlined"];
|
|
2
2
|
export default IconList;
|