@galaxy-ds/core 2.0.11 → 2.0.13
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/dist/Icons/leap/AutoTimerDarkTheme.d.ts +2 -0
- package/dist/Icons/leap/AutoTimerLightTheme.d.ts +2 -0
- package/dist/Icons/leap/ManualEntryDarkTheme.d.ts +2 -0
- package/dist/Icons/leap/ManualEntryLightTheme.d.ts +2 -0
- package/dist/Icons/leap/index.d.ts +4 -0
- package/dist/Theme/leap/desktop/design-tokens/components/chip.d.ts +1 -0
- package/dist/Theme/leap/web/design-tokens/components/chip.d.ts +1 -0
- package/dist/index.esm.js +107 -57
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +110 -56
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/src/Chip/Chip.stories.mdx +17 -74
- package/src/Icons/leap/AutoTimer24.tsx +2 -13
- package/src/Icons/leap/AutoTimerDarkTheme.tsx +13 -0
- package/src/Icons/leap/AutoTimerFilled24.tsx +4 -6
- package/src/Icons/leap/AutoTimerLightTheme.tsx +12 -0
- package/src/Icons/leap/ManualEntry24.tsx +2 -18
- package/src/Icons/leap/ManualEntryDarkTheme.tsx +11 -0
- package/src/Icons/leap/ManualEntryFilled24.tsx +1 -18
- package/src/Icons/leap/ManualEntryLightTheme.tsx +10 -0
- package/src/Icons/leap/Timer24.tsx +4 -6
- package/src/Icons/leap/TimerFillled24.tsx +3 -6
- package/src/Icons/leap/icons.ts +15 -0
- package/src/Icons/leap/index.ts +4 -0
- package/src/Icons/leap-icons.stories.mdx +71 -1
- package/src/MenuItem/MenuItem.stories.mdx +2 -2
- package/src/Theme/leap/desktop/design-tokens/components/chip.ts +2 -1
- package/src/Theme/leap/desktop/overrides/Dialog/dialog.ts +5 -4
- package/src/Theme/leap/desktop/overrides/listItemIcon.ts +0 -1
- package/src/Theme/leap/desktop/overrides/menu.ts +36 -33
- package/src/Theme/leap/desktop/overrides/menuItem.ts +38 -10
- package/src/Theme/leap/desktop/overrides/tooltip.ts +4 -5
- package/src/Theme/leap/desktop/theme.ts +2 -0
- package/src/Theme/leap/web/design-tokens/components/chip.ts +2 -1
- package/src/Theme/leap/web/overrides/Dialog/dialog.ts +4 -6
- package/src/Theme/leap/web/overrides/menu.ts +8 -6
- package/src/Theme/leap/web/overrides/menuItem.ts +19 -8
- package/src/Theme/leap/web/overrides/tooltip.ts +1 -2
- package/src/Theme/leap/web/theme.ts +2 -0
- package/src/stories/ReleaseNotes.stories.mdx +1 -0
package/dist/index.js
CHANGED
|
@@ -741,7 +741,8 @@ var chip$1 = {
|
|
|
741
741
|
fontWeight: '400',
|
|
742
742
|
fontSize: '12px',
|
|
743
743
|
height: '22px',
|
|
744
|
-
iconBorder: '1px solid #d4d4d4'
|
|
744
|
+
iconBorder: '1px solid #d4d4d4',
|
|
745
|
+
paddingLabel: '4px',
|
|
745
746
|
},
|
|
746
747
|
}
|
|
747
748
|
};
|
|
@@ -1014,9 +1015,9 @@ var dialogOverrides$1 = {
|
|
|
1014
1015
|
"&.gds-modal--desktop": {
|
|
1015
1016
|
'& .gds-modal_paper': {
|
|
1016
1017
|
color: "#444444",
|
|
1017
|
-
|
|
1018
|
-
boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
|
|
1018
|
+
boxShadow: theme.shadows[5],
|
|
1019
1019
|
maxWidth: 502,
|
|
1020
|
+
borderRadius: theme.shapes.md,
|
|
1020
1021
|
"&:focus": {
|
|
1021
1022
|
outline: 'none',
|
|
1022
1023
|
}
|
|
@@ -1082,9 +1083,10 @@ var dialogOverrides$1 = {
|
|
|
1082
1083
|
paper: function (_a) {
|
|
1083
1084
|
var theme = _a.theme;
|
|
1084
1085
|
return ({
|
|
1085
|
-
border: '1px solid #
|
|
1086
|
-
boxShadow:
|
|
1086
|
+
border: '1px solid #BBBDBF',
|
|
1087
|
+
boxShadow: theme.shadows[5],
|
|
1087
1088
|
background: theme.palette.grey[100],
|
|
1089
|
+
borderRadius: theme.shapes.md,
|
|
1088
1090
|
"& .MuiDialogTitle-root + .MuiDialogContent-root": {
|
|
1089
1091
|
"&:not(.gds-disablePaddings)": {
|
|
1090
1092
|
paddingTop: 12,
|
|
@@ -1384,10 +1386,11 @@ var menuOverrides$1 = {
|
|
|
1384
1386
|
root: function (_a) {
|
|
1385
1387
|
var theme = _a.theme;
|
|
1386
1388
|
return ({
|
|
1387
|
-
|
|
1389
|
+
'& .MuiPaper-root': {
|
|
1388
1390
|
border: "1px solid #646464",
|
|
1389
1391
|
boxShadow: '3px 3px 4px rgba(0, 0, 0, 0.4)',
|
|
1390
1392
|
background: '#eeeeee',
|
|
1393
|
+
borderRadius: '0',
|
|
1391
1394
|
},
|
|
1392
1395
|
'& .customDropdown': {
|
|
1393
1396
|
'& .MuiListSubheader-root': {
|
|
@@ -1397,25 +1400,27 @@ var menuOverrides$1 = {
|
|
|
1397
1400
|
marginLeft: 6,
|
|
1398
1401
|
},
|
|
1399
1402
|
},
|
|
1400
|
-
|
|
1401
|
-
color:
|
|
1402
|
-
border:
|
|
1403
|
-
|
|
1404
|
-
|
|
1403
|
+
'&.gds-menu-system .MuiPaper-root': {
|
|
1404
|
+
color: '#d4d4d4',
|
|
1405
|
+
border: '1px solid #CCCCCC',
|
|
1406
|
+
boxShadow: theme.shadows[6],
|
|
1407
|
+
borderRadius: theme.shapes.sm,
|
|
1408
|
+
backgroundColor: '#F9F9F9',
|
|
1409
|
+
padding: '0 4px',
|
|
1405
1410
|
minWidth: 180,
|
|
1406
|
-
|
|
1411
|
+
'& .MuiListSubheader-root': {
|
|
1407
1412
|
fontSize: theme.typography.body2.fontSize,
|
|
1408
1413
|
},
|
|
1409
1414
|
},
|
|
1410
1415
|
});
|
|
1411
1416
|
},
|
|
1412
1417
|
list: {
|
|
1413
|
-
padding:
|
|
1418
|
+
padding: 0,
|
|
1414
1419
|
'& .MuiListSubheader-root': {
|
|
1415
1420
|
pointerEvents: 'none',
|
|
1416
1421
|
},
|
|
1417
1422
|
},
|
|
1418
|
-
}
|
|
1423
|
+
},
|
|
1419
1424
|
};
|
|
1420
1425
|
|
|
1421
1426
|
var menuItemOverrides$1 = {
|
|
@@ -1430,13 +1435,11 @@ var menuItemOverrides$1 = {
|
|
|
1430
1435
|
}, '&:hover .MuiListItemText-root .MuiTypography-root': {
|
|
1431
1436
|
color: '#fff',
|
|
1432
1437
|
}, '&.Mui-selected': {
|
|
1433
|
-
backgroundColor: '#
|
|
1438
|
+
backgroundColor: '#4e9af7',
|
|
1434
1439
|
'& .MuiListItemText-root': {
|
|
1435
1440
|
color: '#fff',
|
|
1436
1441
|
},
|
|
1437
|
-
}, '&.
|
|
1438
|
-
display: 'none',
|
|
1439
|
-
}, '.customMultipleList &$selected': {
|
|
1442
|
+
}, '&.customMultipleList .Mui-selected': {
|
|
1440
1443
|
backgroundColor: '#fff',
|
|
1441
1444
|
}, '&.Mui-selected:hover': {
|
|
1442
1445
|
backgroundColor: '#0078D7',
|
|
@@ -1470,24 +1473,50 @@ var menuItemOverrides$1 = {
|
|
|
1470
1473
|
},
|
|
1471
1474
|
}, '& .MuiDivider-root': {
|
|
1472
1475
|
marginLeft: 32,
|
|
1473
|
-
}, '&.gds-menu-item-
|
|
1474
|
-
|
|
1476
|
+
}, '&.gds-menu-item-icon': {
|
|
1477
|
+
paddingLeft: 0,
|
|
1478
|
+
'& .MuiSvgIcon-root': {
|
|
1479
|
+
fontSize: 15,
|
|
1480
|
+
},
|
|
1481
|
+
'& .MuiListItemIcon-root': {
|
|
1482
|
+
color: theme.palette.text.primary,
|
|
1483
|
+
minWidth: 22,
|
|
1484
|
+
height: 22,
|
|
1485
|
+
display: 'flex',
|
|
1486
|
+
alignItems: 'center',
|
|
1487
|
+
justifyContent: 'center',
|
|
1488
|
+
},
|
|
1489
|
+
'&.Mui-selected': {
|
|
1490
|
+
'& .MuiListItemIcon-root': {
|
|
1491
|
+
color: '#fff',
|
|
1492
|
+
backgroundColor: '#4e9af7'
|
|
1493
|
+
},
|
|
1494
|
+
},
|
|
1495
|
+
'&:hover .MuiListItemIcon-root': {
|
|
1496
|
+
color: '#fff',
|
|
1497
|
+
backgroundColor: '#0078D7',
|
|
1498
|
+
},
|
|
1499
|
+
}, '&.gds-menu-item-system': __assign(__assign({ borderRadius: theme.shapes.sm, minHeight: 22, maxHeight: 22, padding: 0, paddingLeft: 32, paddingRight: 10, marginTop: theme.shapes.sm, marginBottom: theme.shapes.sm, backgroundColor: '#F9F9F9', color: theme.palette.text.primary }, theme.typography.body2), { '&:hover': {
|
|
1500
|
+
backgroundColor: '#EDEDEE',
|
|
1475
1501
|
color: theme.palette.text.primary,
|
|
1476
1502
|
}, '&:hover .MuiListItemText-root .MuiTypography-root': {
|
|
1477
1503
|
color: theme.palette.text.primary,
|
|
1504
|
+
}, '&:hover .MuiListItemIcon-root': {
|
|
1505
|
+
backgroundColor: '#EDEDEE',
|
|
1506
|
+
borderRadius: theme.shapes.sm,
|
|
1478
1507
|
}, '&.Mui-selected': {
|
|
1479
|
-
backgroundColor:
|
|
1508
|
+
backgroundColor: "#EDEDEE",
|
|
1480
1509
|
'& .MuiListItemText-root': {
|
|
1481
1510
|
color: theme.palette.text.primary,
|
|
1482
1511
|
},
|
|
1483
1512
|
'& .MuiListItemIcon-root': {
|
|
1484
|
-
backgroundColor: '#
|
|
1513
|
+
backgroundColor: '#EDEDEE',
|
|
1514
|
+
borderRadius: theme.shapes.sm,
|
|
1485
1515
|
},
|
|
1486
1516
|
'& svg': {
|
|
1487
1517
|
color: theme.palette.text.primary,
|
|
1488
1518
|
},
|
|
1489
1519
|
}, '&.Mui-selected:hover': {
|
|
1490
|
-
backgroundColor: '#91C9F7',
|
|
1491
1520
|
color: theme.palette.text.primary,
|
|
1492
1521
|
'& svg': {
|
|
1493
1522
|
color: theme.palette.text.primary,
|
|
@@ -1654,7 +1683,6 @@ var listItemIconOverrides$1 = {
|
|
|
1654
1683
|
styleOverrides: {
|
|
1655
1684
|
root: function () { return ({
|
|
1656
1685
|
minWidth: 'auto',
|
|
1657
|
-
marginRight: 10,
|
|
1658
1686
|
}); },
|
|
1659
1687
|
},
|
|
1660
1688
|
};
|
|
@@ -1697,12 +1725,11 @@ var tooltipOverrides$1 = {
|
|
|
1697
1725
|
var theme = _a.theme;
|
|
1698
1726
|
return ({
|
|
1699
1727
|
fontSize: theme.typography.body2.fontSize,
|
|
1700
|
-
borderRadius:
|
|
1728
|
+
borderRadius: 2,
|
|
1701
1729
|
color: theme.palette.text.primary,
|
|
1702
1730
|
backgroundColor: theme.palette.grey[50],
|
|
1703
1731
|
padding: 3,
|
|
1704
|
-
|
|
1705
|
-
boxShadow: '0px 2px 8px rgba(0, 0, 0, 0.21)',
|
|
1732
|
+
boxShadow: ' 0px 2px 3px 0px #00000040',
|
|
1706
1733
|
marginTop: 0,
|
|
1707
1734
|
});
|
|
1708
1735
|
},
|
|
@@ -1980,6 +2007,8 @@ theme$2 = material.createTheme(theme$2, {
|
|
|
1980
2007
|
});
|
|
1981
2008
|
theme$2.shadows[3] = '2px 3px 4px 0 rgba(0,0,0,0.5)';
|
|
1982
2009
|
theme$2.shadows[4] = '0px 4px 20px 0px #00000036'; //Shadow / Modal Window
|
|
2010
|
+
theme$2.shadows[5] = '0px 10px 10px -5px rgba(0, 0, 0, 0.04), 0px 20px 25px -5px rgba(0, 0, 0, 0.1)';
|
|
2011
|
+
theme$2.shadows[6] = '0px 2px 4px -1px rgba(0, 0, 0, 0.06),0px 4px 6px -1px rgba(0, 0, 0, 0.1)'; // Menu System
|
|
1983
2012
|
var theme$3 = theme$2;
|
|
1984
2013
|
|
|
1985
2014
|
var typography = {
|
|
@@ -2340,7 +2369,8 @@ var chip = {
|
|
|
2340
2369
|
fontWeight: '400',
|
|
2341
2370
|
fontSize: '12px',
|
|
2342
2371
|
height: '20px',
|
|
2343
|
-
iconBorder: '1px solid #d4d4d4'
|
|
2372
|
+
iconBorder: '1px solid #d4d4d4',
|
|
2373
|
+
paddingLabel: '8px',
|
|
2344
2374
|
},
|
|
2345
2375
|
}
|
|
2346
2376
|
};
|
|
@@ -2591,8 +2621,7 @@ var dialogOverrides = {
|
|
|
2591
2621
|
"&.gds-modal--desktop": {
|
|
2592
2622
|
'& .gds-modal_paper': {
|
|
2593
2623
|
color: "#444444",
|
|
2594
|
-
|
|
2595
|
-
boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
|
|
2624
|
+
boxShadow: theme.shadows[5],
|
|
2596
2625
|
maxWidth: 502,
|
|
2597
2626
|
"&:focus": {
|
|
2598
2627
|
outline: 'none',
|
|
@@ -2657,14 +2686,11 @@ var dialogOverrides = {
|
|
|
2657
2686
|
});
|
|
2658
2687
|
},
|
|
2659
2688
|
paper: function (_a) {
|
|
2660
|
-
|
|
2689
|
+
_a.theme;
|
|
2661
2690
|
return ({
|
|
2662
|
-
border: '1px solid #CCCCCC',
|
|
2663
|
-
boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
|
|
2664
|
-
background: theme.palette.grey[100],
|
|
2665
2691
|
"& .MuiDialogTitle-root + .MuiDialogContent-root": {
|
|
2666
2692
|
"&:not(.gds-disablePaddings)": {
|
|
2667
|
-
paddingTop:
|
|
2693
|
+
paddingTop: 16,
|
|
2668
2694
|
},
|
|
2669
2695
|
},
|
|
2670
2696
|
});
|
|
@@ -3007,6 +3033,7 @@ var menuOverrides = {
|
|
|
3007
3033
|
marginTop: 1,
|
|
3008
3034
|
paddingTop: 4,
|
|
3009
3035
|
paddingBottom: 4,
|
|
3036
|
+
borderRadius: 4,
|
|
3010
3037
|
},
|
|
3011
3038
|
'& .customDropdown': {
|
|
3012
3039
|
'& .MuiCheckbox-root + .MuiTypography-root': {
|
|
@@ -3014,10 +3041,12 @@ var menuOverrides = {
|
|
|
3014
3041
|
},
|
|
3015
3042
|
},
|
|
3016
3043
|
"&.gds-menu-system .MuiPaper-root": {
|
|
3017
|
-
color:
|
|
3018
|
-
border:
|
|
3019
|
-
|
|
3020
|
-
|
|
3044
|
+
color: '#d4d4d4',
|
|
3045
|
+
border: '1px solid #CCCCCC',
|
|
3046
|
+
boxShadow: theme.shadows[6],
|
|
3047
|
+
borderRadius: theme.shapes.sm,
|
|
3048
|
+
backgroundColor: '#F9F9F9',
|
|
3049
|
+
padding: '0 4px',
|
|
3021
3050
|
minWidth: 180,
|
|
3022
3051
|
"& .MuiListSubheader-root": {
|
|
3023
3052
|
fontSize: theme.typography.body2.fontSize,
|
|
@@ -3026,10 +3055,9 @@ var menuOverrides = {
|
|
|
3026
3055
|
});
|
|
3027
3056
|
},
|
|
3028
3057
|
list: {
|
|
3029
|
-
padding:
|
|
3058
|
+
padding: 0,
|
|
3030
3059
|
'& .MuiListSubheader-root': {
|
|
3031
3060
|
pointerEvents: 'none',
|
|
3032
|
-
background: 'none',
|
|
3033
3061
|
},
|
|
3034
3062
|
},
|
|
3035
3063
|
}
|
|
@@ -3043,7 +3071,7 @@ var menuItemOverrides = {
|
|
|
3043
3071
|
'&.MuiMenuItem-root': {
|
|
3044
3072
|
lineHeight: 1.5715,
|
|
3045
3073
|
letterSpacing: '0.01rem',
|
|
3046
|
-
padding: '.
|
|
3074
|
+
padding: '.25rem 1.25rem',
|
|
3047
3075
|
'& .MuiListItemText-root .MuiTypography-root': {
|
|
3048
3076
|
fontSize: '.8125rem',
|
|
3049
3077
|
},
|
|
@@ -3131,22 +3159,27 @@ var menuItemOverrides = {
|
|
|
3131
3159
|
},
|
|
3132
3160
|
},
|
|
3133
3161
|
},
|
|
3134
|
-
'&.gds-menu-item-system': __assign(__assign({ minHeight: 22, maxHeight: 22, padding: 0, paddingLeft: 32, paddingRight: 10,
|
|
3135
|
-
backgroundColor: '#
|
|
3162
|
+
'&.gds-menu-item-system': __assign(__assign({ borderRadius: theme.shapes.sm, minHeight: 22, maxHeight: 22, padding: 0, paddingLeft: 32, paddingRight: 10, marginTop: theme.shapes.sm, marginBottom: theme.shapes.sm, backgroundColor: '#F9F9F9', color: theme.palette.text.primary }, theme.typography.body2), { '&:hover': {
|
|
3163
|
+
backgroundColor: '#EDEDEE',
|
|
3136
3164
|
color: theme.palette.text.primary,
|
|
3137
3165
|
}, '&:hover .MuiListItemText-root .MuiTypography-root': {
|
|
3138
3166
|
color: theme.palette.text.primary,
|
|
3167
|
+
}, '&:hover .MuiListItemIcon-root': {
|
|
3168
|
+
backgroundColor: '#EDEDEE',
|
|
3169
|
+
borderRadius: theme.shapes.sm,
|
|
3139
3170
|
}, '&.Mui-selected': {
|
|
3140
|
-
backgroundColor:
|
|
3141
|
-
|
|
3171
|
+
backgroundColor: "#EDEDEE",
|
|
3172
|
+
'& .MuiListItemText-root': {
|
|
3173
|
+
color: theme.palette.text.primary,
|
|
3174
|
+
},
|
|
3142
3175
|
'& .MuiListItemIcon-root': {
|
|
3143
|
-
backgroundColor: '#
|
|
3176
|
+
backgroundColor: '#EDEDEE',
|
|
3177
|
+
borderRadius: theme.shapes.sm,
|
|
3144
3178
|
},
|
|
3145
3179
|
'& svg': {
|
|
3146
3180
|
color: theme.palette.text.primary,
|
|
3147
3181
|
},
|
|
3148
3182
|
}, '&.Mui-selected:hover': {
|
|
3149
|
-
backgroundColor: '#91C9F7',
|
|
3150
3183
|
color: theme.palette.text.primary,
|
|
3151
3184
|
'& svg': {
|
|
3152
3185
|
color: theme.palette.text.primary,
|
|
@@ -3167,8 +3200,8 @@ var menuItemOverrides = {
|
|
|
3167
3200
|
fontSize: 15,
|
|
3168
3201
|
color: 'currentColor',
|
|
3169
3202
|
}, '& .MuiListItemText-root': {
|
|
3170
|
-
color: theme.palette.text.primary,
|
|
3171
3203
|
margin: 0,
|
|
3204
|
+
'& .MuiTypography-root': __assign({}, theme.typography.body2),
|
|
3172
3205
|
} }),
|
|
3173
3206
|
},
|
|
3174
3207
|
});
|
|
@@ -3332,7 +3365,6 @@ var tooltipOverrides = {
|
|
|
3332
3365
|
borderRadius: 4,
|
|
3333
3366
|
backgroundColor: theme.palette.grey[800],
|
|
3334
3367
|
paddingTop: 5,
|
|
3335
|
-
maxWidth: 'auto',
|
|
3336
3368
|
opacity: '0.9 !important',
|
|
3337
3369
|
});
|
|
3338
3370
|
},
|
|
@@ -3570,6 +3602,8 @@ theme = styles$1.createTheme(theme, {
|
|
|
3570
3602
|
// Override shadows
|
|
3571
3603
|
theme.shadows[3] = '2px 3px 4px 0 rgba(0,0,0,0.15)';
|
|
3572
3604
|
theme.shadows[4] = '0px 4px 20px 0px #00000036'; //Shadow / Modal Window
|
|
3605
|
+
theme.shadows[5] = '0px 11px 15px -7px rgba(0,0,0,0.2), 0px 24px 38px 3px rgba(0,0,0,0.14), 0px 9px 46px 8px rgba(0,0,0,0.12);';
|
|
3606
|
+
theme.shadows[6] = '0px 2px 4px -1px rgba(0, 0, 0, 0.06),0px 4px 6px -1px rgba(0, 0, 0, 0.1)'; // Menu System
|
|
3573
3607
|
var theme$1 = theme;
|
|
3574
3608
|
|
|
3575
3609
|
var ThemeProvider = function (_a) {
|
|
@@ -17050,28 +17084,44 @@ function Zyphta16Icon(props) {
|
|
|
17050
17084
|
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 16 16" }, { children: [jsxRuntime.jsxs("g", __assign({ clipPath: "url(#clip0_165_2861)" }, { children: [jsxRuntime.jsx("path", { d: "M11.6432 1.00086L4.81032 1.00086C4.81032 1.00086 4.67769 0.985647 4.58521 1.08287C4.49274 1.18009 4.50155 1.2633 4.50155 1.33985L4.50155 14.4797C4.50155 14.7525 4.48255 14.8146 4.57502 14.9118C4.6675 15.0091 4.75681 14.9982 4.99467 14.9982L14.0068 14.9982C14.1376 14.9982 14.3182 15.0188 14.4107 14.9216C14.5031 14.8244 14.4999 14.6172 14.4999 14.4797L14.4999 3.9592C14.4999 3.82172 14.4479 3.68988 14.3554 3.59268L11.9919 1.15276C11.8994 1.05553 11.774 1.00089 11.6432 1.00086Z", fill: "white" }), jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.0296 0.000864316C11.0198 0.000290348 11.0099 -6.56541e-07 10.9999 -6.55671e-07C10.99 -6.548e-07 10.9801 0.000290351 10.9703 0.000864321L4.8369 0.000864857C4.81993 0.000233884 4.80141 -0.000104073 4.78152 2.83704e-05C4.72074 0.000433151 4.64072 0.00526107 4.54896 0.0223922C4.36985 0.0558296 4.09548 0.146802 3.86067 0.393666C3.69304 0.569893 3.58196 0.777547 3.53208 1.00425C3.49285 1.18258 3.50158 1.37019 3.50158 1.33985L3.50158 14.4797C3.50158 14.5198 3.50122 14.5455 3.50083 14.574C3.50057 14.5933 3.50028 14.614 3.50008 14.6413C3.49974 14.6878 3.4992 14.7763 3.50965 14.8711C3.52155 14.9791 3.54947 15.1187 3.62034 15.2687C3.69018 15.4166 3.77851 15.5254 3.85048 15.601C3.93808 15.6931 4.05109 15.7862 4.19605 15.8593C4.33939 15.9316 4.47498 15.9645 4.58378 15.9807C4.68419 15.9955 4.77497 15.9976 4.8303 15.9983C4.86366 15.9987 4.9103 15.9985 4.94873 15.9983L4.99469 15.9982L14.0068 15.9982C14.0232 15.9982 14.0273 15.9983 14.0341 15.9985C14.0426 15.9988 14.0553 15.9993 14.1007 15.9998C14.1499 16.0004 14.229 16.0003 14.3183 15.9918C14.4687 15.9774 14.8373 15.924 15.1353 15.6108C15.4088 15.3232 15.4641 14.9774 15.4813 14.8472C15.5008 14.7004 15.5002 14.5549 15.5 14.4943L15.5 14.4797L15.4999 3.959C15.4999 3.57201 15.3541 3.19143 15.08 2.90334L12.7125 0.459413C12.4371 0.172104 12.054 0.000956435 11.6435 0.000864262L11.0296 0.000864316ZM10.4999 1.00086L4.81035 1.00086C4.81035 1.00086 4.67771 0.985647 4.58524 1.08287C4.50011 1.17237 4.50082 1.24999 4.50146 1.32147L4.50158 1.33985L4.50158 14.4797C4.50158 14.5241 4.50108 14.5629 4.50063 14.5971C4.49834 14.7736 4.49761 14.8304 4.57505 14.9118C4.65856 14.9996 4.73949 14.9993 4.92957 14.9984L4.99469 14.9982L14.0068 14.9982C14.0257 14.9982 14.0457 14.9986 14.0662 14.999C14.1879 15.0017 14.3316 15.0048 14.4107 14.9216C14.5002 14.8275 14.5001 14.6304 14.5 14.4932L14.4999 5.99814C14.4856 5.99937 14.4711 6 14.4565 6L11.6562 6C11.3046 6 10.9453 5.87848 10.7578 5.67969C10.4999 5.40633 10.4999 5.07485 10.4999 4.68765L10.4999 1.00086ZM14.4999 5.00186L14.4999 3.9592C14.4999 3.82172 14.448 3.68988 14.3555 3.59268L11.9919 1.15276C11.8994 1.05553 11.774 1.00089 11.6433 1.00086L11.4999 1.00086L11.4999 4.54273C11.4999 4.73437 11.5303 4.81853 11.6093 4.90234C11.6874 4.98516 11.7617 5 11.9028 5L14.4565 5C14.4711 5 14.4856 5.00063 14.4999 5.00186Z", fill: "#979593" }), jsxRuntime.jsx("path", { d: "M8.41522 12.5C8.41522 12.2239 8.63908 12 8.91522 12L12.9999 12C13.276 12 13.4999 12.2239 13.4999 12.5C13.4999 12.7761 13.276 13 12.9999 13L8.91522 13C8.63908 13 8.41522 12.7761 8.41522 12.5Z", fill: "#C8C6C4" }), jsxRuntime.jsx("path", { d: "M8.41522 10.5C8.41522 10.2239 8.63908 10 8.91522 10L12.9999 10C13.276 10 13.4999 10.2239 13.4999 10.5C13.4999 10.7761 13.276 11 12.9999 11L8.91522 11C8.63908 11 8.41522 10.7761 8.41522 10.5Z", fill: "#C8C6C4" }), jsxRuntime.jsx("path", { d: "M8.91522 8C8.63908 8 8.41522 8.22386 8.41522 8.5C8.41522 8.77614 8.63908 9 8.91522 9L12.9999 9C13.276 9 13.4999 8.77614 13.4999 8.5C13.4999 8.22386 13.276 8 12.9999 8L8.91522 8Z", fill: "#C8C6C4" }), jsxRuntime.jsx("path", { d: "M1.22721 14L7.77263 14C7.96551 14 8.1505 13.9233 8.28689 13.7869C8.42328 13.6506 8.4999 13.4656 8.4999 13.2727L8.4999 6.72727C8.4999 6.53438 8.42328 6.3494 8.28689 6.21301C8.1505 6.07662 7.96551 6 7.77263 6L1.22721 6C1.03432 6 0.849341 6.07662 0.712951 6.21301C0.576562 6.3494 0.499939 6.53439 0.499939 6.72727L0.49994 13.2727C0.49994 13.4656 0.576562 13.6506 0.712952 13.7869C0.849341 13.9233 1.03432 14 1.22721 14Z", fill: "#263E60" }), jsxRuntime.jsx("path", { d: "M6.83319 10.1998L6.80342 10.2391C6.54492 10.1475 6.14375 10.0673 5.87167 9.97101C5.8629 10.0396 5.85149 10.0991 5.84817 10.159C5.80417 10.9512 5.80662 12.0738 5.75953 12.8658L5.75953 13.0016L4.79444 13.0016C4.8392 13.0016 4.61812 13.0016 4.61812 13.0016C4.5893 12.92 4.57009 12.8411 4.54495 12.7747C4.33428 12.2184 4.09382 11.3796 3.7316 10.8977C3.67443 10.8216 3.67832 10.7726 3.72904 10.6993C3.94926 10.3809 4.24401 9.99539 4.37422 9.63007C4.41731 9.50917 4.38165 9.45887 4.28039 9.39608C4.02913 9.2402 3.80955 9.08718 3.57118 8.91307C3.43417 8.81302 3.23447 8.64761 3.20751 8.48296C3.17644 8.29289 3.0586 7.85351 3.05974 7.66153C3.0609 7.46569 3.0066 7.30309 2.85928 7.17309C2.71092 7.04219 2.50156 6.81994 2.35895 6.69799C2.45198 6.70695 2.6785 6.78368 2.78874 6.79335C3.30687 6.8387 3.76066 6.86281 4.28039 6.79335C4.58994 6.75196 4.96728 6.68694 5.27932 6.69799C5.87689 6.71919 6.2883 7.10504 6.39355 7.628C6.41886 7.75369 6.52194 8.12973 6.52404 8.25818C6.52816 8.50869 6.51703 8.75947 6.52234 9.00995C6.52692 9.22596 6.54205 9.44194 6.55898 9.65744C6.57569 9.86996 6.63809 10.0651 6.83319 10.1998Z", fill: "white" })] })), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", __assign({ id: "clip0_165_2861" }, { children: jsxRuntime.jsx("rect", { width: "16", height: "16", fill: "white", transform: "matrix(1 0 0 -1 0 16)" }) })) })] })));
|
|
17051
17085
|
}
|
|
17052
17086
|
|
|
17087
|
+
function AutoTimerIconDarkTheme(props) {
|
|
17088
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 16 16" }, { children: [jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.66285 5.66652C7.86788 5.66495 8.05309 5.78872 8.13008 5.97876L9.58328 9.56572L10.1259 10.8259C10.2351 11.0795 10.118 11.3737 9.86441 11.4829C9.61078 11.5921 9.31664 11.475 9.20743 11.2214L8.79281 10.2585H6.5893L6.11729 11.2403C5.99765 11.4892 5.6989 11.5939 5.45002 11.4743C5.20115 11.3546 5.09639 11.0559 5.21604 10.807L5.81576 9.55954L7.20044 5.98586C7.27452 5.79467 7.45781 5.66808 7.66285 5.66652ZM7.00485 9.25849H8.37986L7.67703 7.52368L7.00485 9.25849Z", fill: "#3FAF2A" }), jsxRuntime.jsx("path", { d: "M5.83333 1.8335C5.83333 1.55735 6.05719 1.3335 6.33333 1.3335H9.16667C9.44281 1.3335 9.66667 1.55735 9.66667 1.8335C9.66667 2.10964 9.44281 2.3335 9.16667 2.3335H6.33333C6.05719 2.3335 5.83333 2.10964 5.83333 1.8335Z", fill: "currentColor" }), jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 8.91683C2 5.74119 4.57436 3.16683 7.75 3.16683C10.9256 3.16683 13.5 5.74119 13.5 8.91683C13.5 12.0925 10.9256 14.6668 7.75 14.6668C4.57436 14.6668 2 12.0925 2 8.91683ZM7.75 4.16683C5.12665 4.16683 3 6.29348 3 8.91683C3 11.5402 5.12665 13.6668 7.75 13.6668C10.3734 13.6668 12.5 11.5402 12.5 8.91683C12.5 6.29348 10.3734 4.16683 7.75 4.16683Z", fill: "currentColor" }), jsxRuntime.jsx("path", { d: "M12.8536 3.31328C12.6583 3.11802 12.3417 3.11801 12.1465 3.31327C11.9512 3.50853 11.9512 3.82511 12.1464 4.02038L13.1464 5.02038C13.3417 5.21564 13.6582 5.21565 13.8535 5.02039C14.0488 4.82513 14.0488 4.50855 13.8535 4.31328L12.8536 3.31328Z", fill: "currentColor" })] })));
|
|
17089
|
+
}
|
|
17090
|
+
|
|
17091
|
+
function AutoTimerIconLightTheme(props) {
|
|
17092
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 16 16" }, { children: [jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.66285 5.66652C7.86788 5.66495 8.05309 5.78872 8.13008 5.97876L9.58328 9.56572L10.1259 10.8259C10.2351 11.0795 10.118 11.3737 9.86441 11.4829C9.61078 11.5921 9.31664 11.475 9.20743 11.2214L8.79281 10.2585H6.5893L6.11729 11.2403C5.99765 11.4892 5.6989 11.5939 5.45002 11.4743C5.20115 11.3546 5.09639 11.0559 5.21604 10.807L5.81576 9.55954L7.20044 5.98586C7.27452 5.79467 7.45781 5.66808 7.66285 5.66652ZM7.00485 9.25849H8.37986L7.67703 7.52368L7.00485 9.25849Z", fill: "#3FAF2A" }), jsxRuntime.jsx("path", { d: "M5.83333 1.8335C5.83333 1.55735 6.05719 1.3335 6.33333 1.3335H9.16667C9.44281 1.3335 9.66667 1.55735 9.66667 1.8335C9.66667 2.10964 9.44281 2.3335 9.16667 2.3335H6.33333C6.05719 2.3335 5.83333 2.10964 5.83333 1.8335Z", fill: "currentColor" }), jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 8.91683C2 5.74119 4.57436 3.16683 7.75 3.16683C10.9256 3.16683 13.5 5.74119 13.5 8.91683C13.5 12.0925 10.9256 14.6668 7.75 14.6668C4.57436 14.6668 2 12.0925 2 8.91683ZM7.75 4.16683C5.12665 4.16683 3 6.29348 3 8.91683C3 11.5402 5.12665 13.6668 7.75 13.6668C10.3734 13.6668 12.5 11.5402 12.5 8.91683C12.5 6.29348 10.3734 4.16683 7.75 4.16683Z", fill: "currentColor" }), jsxRuntime.jsx("path", { d: "M12.8536 3.31328C12.6583 3.11802 12.3417 3.11801 12.1465 3.31327C11.9512 3.50853 11.9512 3.82511 12.1464 4.02038L13.1464 5.02038C13.3417 5.21564 13.6582 5.21565 13.8535 5.02039C14.0488 4.82513 14.0488 4.50855 13.8535 4.31328L12.8536 3.31328Z", fill: "currentColor" })] })));
|
|
17093
|
+
}
|
|
17094
|
+
|
|
17053
17095
|
function Timer24Icon(props) {
|
|
17054
|
-
return (jsxRuntime.
|
|
17096
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: [jsxRuntime.jsx("path", { d: "M8.75 2.75C8.75 2.33579 9.08579 2 9.5 2H13.75C14.1642 2 14.5 2.33579 14.5 2.75C14.5 3.16421 14.1642 3.5 13.75 3.5H9.5C9.08579 3.5 8.75 3.16421 8.75 2.75Z", fill: "currentColor" }), jsxRuntime.jsx("path", { d: "M12.3981 9.13348C12.3981 8.71927 12.0623 8.38348 11.6481 8.38348C11.2339 8.38348 10.8981 8.71927 10.8981 9.13348V13.3835C10.8981 13.7977 11.2339 14.1335 11.6481 14.1335C12.0623 14.1335 12.3981 13.7977 12.3981 13.3835V9.13348Z", fill: "currentColor" }), jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.625 4.75C6.86154 4.75 3 8.61154 3 13.375C3 18.1385 6.86154 22 11.625 22C16.3885 22 20.25 18.1385 20.25 13.375C20.25 8.61154 16.3885 4.75 11.625 4.75ZM4.5 13.375C4.5 9.43997 7.68997 6.25 11.625 6.25C15.56 6.25 18.75 9.43997 18.75 13.375C18.75 17.31 15.56 20.5 11.625 20.5C7.68997 20.5 4.5 17.31 4.5 13.375Z", fill: "currentColor" }), jsxRuntime.jsx("path", { d: "M19.2803 4.96968C18.9875 4.67678 18.5126 4.67677 18.2197 4.96966C17.9268 5.26255 17.9268 5.73742 18.2197 6.03032L19.7196 7.53032C20.0125 7.82322 20.4874 7.82323 20.7803 7.53034C21.0732 7.23745 21.0732 6.76258 20.7803 6.46968L19.2803 4.96968Z", fill: "currentColor" })] })));
|
|
17055
17097
|
}
|
|
17056
17098
|
|
|
17057
17099
|
function TimerFilled24Icon(props) {
|
|
17058
|
-
return (jsxRuntime.
|
|
17100
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: [jsxRuntime.jsx("path", { d: "M8.75 2.75C8.75 2.33579 9.08579 2 9.5 2H13.75C14.1642 2 14.5 2.33579 14.5 2.75C14.5 3.16421 14.1642 3.5 13.75 3.5H9.5C9.08579 3.5 8.75 3.16421 8.75 2.75Z", fill: "currentColor" }), jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3 13.375C3 8.61154 6.86154 4.75 11.625 4.75C16.3885 4.75 20.25 8.61154 20.25 13.375C20.25 18.1385 16.3885 22 11.625 22C6.86154 22 3 18.1385 3 13.375ZM12.3981 9.13348C12.3981 8.71927 12.0623 8.38348 11.6481 8.38348C11.2339 8.38348 10.8981 8.71927 10.8981 9.13348V13.3835C10.8981 13.7977 11.2339 14.1335 11.6481 14.1335C12.0623 14.1335 12.3981 13.7977 12.3981 13.3835V9.13348Z", fill: "currentColor" }), jsxRuntime.jsx("path", { d: "M19.2803 4.96968C18.9875 4.67678 18.5126 4.67677 18.2197 4.96966C17.9268 5.26255 17.9268 5.73742 18.2197 6.03032L19.7196 7.53032C20.0125 7.82322 20.4874 7.82323 20.7803 7.53034C21.0732 7.23745 21.0732 6.76258 20.7803 6.46968L19.2803 4.96968Z", fill: "currentColor" })] })));
|
|
17059
17101
|
}
|
|
17060
17102
|
|
|
17061
17103
|
function AutoTimer24Icon(props) {
|
|
17062
|
-
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: [jsxRuntime.jsx("path", { d: "
|
|
17104
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: [jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.4943 8.50002C11.8019 8.49767 12.0797 8.68333 12.1952 8.96838L14.375 14.3488L15.1889 16.2391C15.3527 16.6196 15.1771 17.0608 14.7967 17.2246C14.4162 17.3884 13.975 17.2128 13.8112 16.8323L13.1893 15.388H9.88401L9.17599 16.8607C8.99652 17.234 8.5484 17.3911 8.17509 17.2117C7.80178 17.0322 7.64464 16.5841 7.82411 16.2108L8.7237 14.3395L10.8007 8.97903C10.9118 8.69225 11.1868 8.50237 11.4943 8.50002ZM10.5073 13.888H12.5698L11.5156 11.2858L10.5073 13.888Z", fill: "currentColor" }), jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.75 2.75C8.75 2.33579 9.08579 2 9.5 2H13.75C14.1642 2 14.5 2.33579 14.5 2.75C14.5 3.16421 14.1642 3.5 13.75 3.5H9.5C9.08579 3.5 8.75 3.16421 8.75 2.75ZM11.625 6.25C7.68997 6.25 4.5 9.43997 4.5 13.375C4.5 17.31 7.68997 20.5 11.625 20.5C15.56 20.5 18.75 17.31 18.75 13.375C18.75 9.43997 15.56 6.25 11.625 6.25ZM3 13.375C3 8.61154 6.86154 4.75 11.625 4.75C16.3885 4.75 20.25 8.61154 20.25 13.375C20.25 18.1385 16.3885 22 11.625 22C6.86154 22 3 18.1385 3 13.375ZM19.2803 4.96968C18.9875 4.67678 18.5126 4.67677 18.2197 4.96966C17.9268 5.26255 17.9268 5.73742 18.2197 6.03032L19.7196 7.53032C20.0125 7.82322 20.4874 7.82323 20.7803 7.53034C21.0732 7.23745 21.0732 6.76258 20.7803 6.46968L19.2803 4.96968Z", fill: "currentColor" })] })));
|
|
17063
17105
|
}
|
|
17064
17106
|
|
|
17065
17107
|
function AutoTimerFilled24Icon(props) {
|
|
17066
|
-
return (jsxRuntime.
|
|
17108
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: [jsxRuntime.jsx("path", { d: "M8.75 2.75C8.75 2.33579 9.08579 2 9.5 2H13.75C14.1642 2 14.5 2.33579 14.5 2.75C14.5 3.16421 14.1642 3.5 13.75 3.5H9.5C9.08579 3.5 8.75 3.16421 8.75 2.75Z", fill: "currentColor" }), jsxRuntime.jsx("path", { d: "M12.5698 13.888H10.5073L11.5155 11.2857L12.5698 13.888Z", fill: "currentColor" }), jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3 13.375C3 8.61154 6.86154 4.75 11.625 4.75C16.3885 4.75 20.25 8.61154 20.25 13.375C20.25 18.1385 16.3885 22 11.625 22C6.86154 22 3 18.1385 3 13.375ZM12.1951 8.96837C12.0796 8.68332 11.8018 8.49766 11.4943 8.50001C11.1867 8.50236 10.9118 8.69223 10.8007 8.97902L8.72365 14.3395L7.82406 16.2108C7.64459 16.5841 7.80173 17.0322 8.17504 17.2117C8.54835 17.3911 8.99647 17.234 9.17594 16.8607L9.88395 15.388H13.1892L13.8111 16.8323C13.975 17.2128 14.4162 17.3884 14.7966 17.2246C15.1771 17.0608 15.3527 16.6195 15.1889 16.2391L14.3749 14.3488L12.1951 8.96837Z", fill: "currentColor" }), jsxRuntime.jsx("path", { d: "M19.2803 4.96968C18.9875 4.67678 18.5126 4.67677 18.2197 4.96966C17.9268 5.26255 17.9268 5.73742 18.2197 6.03032L19.7196 7.53032C20.0125 7.82322 20.4874 7.82323 20.7803 7.53034C21.0732 7.23745 21.0732 6.76258 20.7803 6.46968L19.2803 4.96968Z", fill: "currentColor" })] })));
|
|
17067
17109
|
}
|
|
17068
17110
|
|
|
17069
17111
|
function ManualEntry24Icon(props) {
|
|
17070
|
-
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({ viewBox: "0 0 24 24" }, props, { children: [jsxRuntime.jsx("
|
|
17112
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({ viewBox: "0 0 24 24" }, props, { children: [jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17 3.5H7C5.067 3.5 3.5 5.067 3.5 7V17C3.5 18.933 5.067 20.5 7 20.5H17C18.933 20.5 20.5 18.933 20.5 17V7C20.5 5.067 18.933 3.5 17 3.5ZM7 2C4.23858 2 2 4.23858 2 7V17C2 19.7614 4.23858 22 7 22H17C19.7614 22 22 19.7614 22 17V7C22 4.23858 19.7614 2 17 2H7Z", fill: "currentColor" }), jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.2445 6.93844C18.239 7.90415 18.2506 9.4969 17.2705 10.4771L11.1263 16.6212C11.0349 16.7126 10.9215 16.7788 10.7969 16.8135L7.44263 17.7463C7.18345 17.8184 6.90551 17.7461 6.71425 17.5569C6.52299 17.3677 6.44771 17.0906 6.51697 16.8306L7.41884 13.4454C7.45282 13.3178 7.51988 13.2015 7.61323 13.1081L13.7574 6.964C14.7174 6.00393 16.2705 5.99255 17.2445 6.93844ZM16.2098 9.41643C16.5981 9.02811 16.5935 8.39712 16.1995 8.01454C15.8136 7.63981 15.1984 7.64432 14.818 8.02466L9.49649 13.3462C10.0726 13.6794 10.5522 14.1616 10.8823 14.744L16.2098 9.41643ZM9.62942 15.5812C9.41735 15.1598 9.0784 14.8169 8.66365 14.5996L8.30394 15.9498L9.62942 15.5812Z", fill: "currentColor" })] })));
|
|
17071
17113
|
}
|
|
17072
17114
|
|
|
17073
17115
|
function ManualEntryFilled24Icon(props) {
|
|
17074
|
-
return (jsxRuntime.
|
|
17116
|
+
return (jsxRuntime.jsx(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: jsxRuntime.jsx("path", { d: "M11.6566 17.1515L11.1263 16.6212L11.6566 17.1515L17.8007 11.0074C19.0769 9.73129 19.0617 7.65765 17.767 6.40038C16.4989 5.16891 14.4769 5.18373 13.227 6.43366L7.08286 12.5778C6.89616 12.7645 6.76205 12.9972 6.69408 13.2523L5.79221 16.6375C5.6537 17.1574 5.80426 17.7117 6.18677 18.0901C6.56929 18.4685 7.12517 18.613 7.64354 18.4688L10.9978 17.536C11.2469 17.4668 11.4738 17.3343 11.6566 17.1515ZM2.75 7C2.75 4.65279 4.65279 2.75 7 2.75H17C19.3472 2.75 21.25 4.65279 21.25 7V17C21.25 19.3472 19.3472 21.25 17 21.25H7C4.65279 21.25 2.75 19.3472 2.75 17V7ZM15.677 8.55257C15.7707 8.64359 15.7718 8.7937 15.6794 8.88608L10.9732 13.5923C10.869 13.4758 10.7589 13.3649 10.6432 13.2601L15.3483 8.55498C15.4388 8.4645 15.5852 8.46342 15.677 8.55257Z", fill: "currentColor", stroke: "currentColor", "stroke-width": "1.5" }) })));
|
|
17117
|
+
}
|
|
17118
|
+
|
|
17119
|
+
function ManualEntryIconDarkTheme(props) {
|
|
17120
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 16 16" }, { children: [jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.6667 2.3335H4.33333C3.22876 2.3335 2.33333 3.22893 2.33333 4.33349V11.6668C2.33333 12.7714 3.22876 13.6668 4.33333 13.6668H11.6667C12.7712 13.6668 13.6667 12.7714 13.6667 11.6668V4.3335C13.6667 3.22893 12.7712 2.3335 11.6667 2.3335ZM4.33333 1.3335C2.67647 1.3335 1.33333 2.67664 1.33333 4.33349V11.6668C1.33333 13.3237 2.67647 14.6668 4.33333 14.6668H11.6667C13.3235 14.6668 14.6667 13.3237 14.6667 11.6668V4.3335C14.6667 2.67664 13.3235 1.3335 11.6667 1.3335H4.33333Z", fill: "currentColor" }), jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.4963 4.62567C12.1593 5.26947 12.1671 6.33131 11.5136 6.98476L7.41752 11.0809C7.35659 11.1418 7.28095 11.1859 7.19793 11.209L4.96174 11.8309C4.78894 11.8789 4.60365 11.8308 4.47615 11.7046C4.34864 11.5785 4.29846 11.3938 4.34463 11.2205L4.94587 8.96364C4.96853 8.8786 5.01323 8.80104 5.07547 8.73881L9.17156 4.64271C9.81161 4.00266 10.847 3.99507 11.4963 4.62567ZM10.8065 6.27766C11.0654 6.01878 11.0623 5.59812 10.7997 5.34307C10.5424 5.09325 10.1322 5.09625 9.87867 5.34982L6.32513 8.90335C6.70793 9.1271 7.02755 9.44771 7.2501 9.83407L10.8065 6.27766ZM6.41418 10.389C6.2699 10.1129 6.04613 9.88728 5.77379 9.74049L5.53594 10.6333L6.41418 10.389Z", fill: "#32ABE2" })] })));
|
|
17121
|
+
}
|
|
17122
|
+
|
|
17123
|
+
function ManualEntryIconLightTheme(props) {
|
|
17124
|
+
return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 16 16" }, { children: [jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.6667 2.3335H4.33333C3.22876 2.3335 2.33333 3.22893 2.33333 4.33349V11.6668C2.33333 12.7714 3.22876 13.6668 4.33333 13.6668H11.6667C12.7712 13.6668 13.6667 12.7714 13.6667 11.6668V4.3335C13.6667 3.22893 12.7712 2.3335 11.6667 2.3335ZM4.33333 1.3335C2.67647 1.3335 1.33333 2.67664 1.33333 4.33349V11.6668C1.33333 13.3237 2.67647 14.6668 4.33333 14.6668H11.6667C13.3235 14.6668 14.6667 13.3237 14.6667 11.6668V4.3335C14.6667 2.67664 13.3235 1.3335 11.6667 1.3335H4.33333Z", fill: "currentColor" }), jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.4963 4.62567C12.1593 5.26947 12.1671 6.33131 11.5136 6.98476L7.41752 11.0809C7.35659 11.1418 7.28095 11.1859 7.19793 11.209L4.96174 11.8309C4.78894 11.8789 4.60365 11.8308 4.47615 11.7046C4.34864 11.5785 4.29846 11.3938 4.34463 11.2205L4.94587 8.96364C4.96853 8.8786 5.01323 8.80104 5.07547 8.73881L9.17156 4.64271C9.81161 4.00266 10.847 3.99507 11.4963 4.62567ZM10.8065 6.27766C11.0654 6.01878 11.0623 5.59812 10.7997 5.34307C10.5424 5.09325 10.1322 5.09625 9.87867 5.34982L6.32513 8.90335C6.70793 9.1271 7.02755 9.44771 7.2501 9.83407L10.8065 6.27766ZM6.41418 10.389C6.2699 10.1129 6.04613 9.88728 5.77379 9.74049L5.53594 10.6333L6.41418 10.389Z", fill: "#32ABE2" })] })));
|
|
17075
17125
|
}
|
|
17076
17126
|
|
|
17077
17127
|
function CalendarRibbonIcon() {
|
|
@@ -17474,6 +17524,8 @@ exports.AssignCurvedIcon = AssignCurvedIcon;
|
|
|
17474
17524
|
exports.AttachmentIcon = AttachmentIcon;
|
|
17475
17525
|
exports.AutoTimer24Icon = AutoTimer24Icon;
|
|
17476
17526
|
exports.AutoTimerFilled24Icon = AutoTimerFilled24Icon;
|
|
17527
|
+
exports.AutoTimerIconDarkTheme = AutoTimerIconDarkTheme;
|
|
17528
|
+
exports.AutoTimerIconLightTheme = AutoTimerIconLightTheme;
|
|
17477
17529
|
exports.Autocomplete = Autocomplete;
|
|
17478
17530
|
exports.Avatar = Avatar;
|
|
17479
17531
|
exports.AvatarBusinessIcon = AvatarBusinessIcon;
|
|
@@ -17624,6 +17676,8 @@ exports.Loader = Loader;
|
|
|
17624
17676
|
exports.LoaderIcon = LoaderIcon;
|
|
17625
17677
|
exports.ManualEntry24Icon = ManualEntry24Icon;
|
|
17626
17678
|
exports.ManualEntryFilled24Icon = ManualEntryFilled24Icon;
|
|
17679
|
+
exports.ManualEntryIconDarkTheme = ManualEntryIconDarkTheme;
|
|
17680
|
+
exports.ManualEntryIconLightTheme = ManualEntryIconLightTheme;
|
|
17627
17681
|
exports.MatterFolderRibbonIcon = MatterFolderRibbonIcon;
|
|
17628
17682
|
exports.Memo16Icon = Memo16Icon;
|
|
17629
17683
|
exports.Menu = Menu;
|