@galaxy-ds/core 2.0.12 → 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.
Files changed (40) hide show
  1. package/dist/Icons/leap/AutoTimerDarkTheme.d.ts +2 -0
  2. package/dist/Icons/leap/AutoTimerLightTheme.d.ts +2 -0
  3. package/dist/Icons/leap/ManualEntryDarkTheme.d.ts +2 -0
  4. package/dist/Icons/leap/ManualEntryLightTheme.d.ts +2 -0
  5. package/dist/Icons/leap/index.d.ts +4 -0
  6. package/dist/Theme/leap/desktop/design-tokens/components/chip.d.ts +1 -0
  7. package/dist/Theme/leap/web/design-tokens/components/chip.d.ts +1 -0
  8. package/dist/index.esm.js +105 -53
  9. package/dist/index.esm.js.map +1 -1
  10. package/dist/index.js +108 -52
  11. package/dist/index.js.map +1 -1
  12. package/dist/package.json +1 -1
  13. package/package.json +1 -1
  14. package/src/Chip/Chip.stories.mdx +17 -74
  15. package/src/Icons/leap/AutoTimer24.tsx +2 -13
  16. package/src/Icons/leap/AutoTimerDarkTheme.tsx +13 -0
  17. package/src/Icons/leap/AutoTimerFilled24.tsx +4 -6
  18. package/src/Icons/leap/AutoTimerLightTheme.tsx +12 -0
  19. package/src/Icons/leap/ManualEntry24.tsx +2 -18
  20. package/src/Icons/leap/ManualEntryDarkTheme.tsx +11 -0
  21. package/src/Icons/leap/ManualEntryFilled24.tsx +1 -18
  22. package/src/Icons/leap/ManualEntryLightTheme.tsx +10 -0
  23. package/src/Icons/leap/Timer24.tsx +4 -6
  24. package/src/Icons/leap/TimerFillled24.tsx +3 -6
  25. package/src/Icons/leap/icons.ts +15 -0
  26. package/src/Icons/leap/index.ts +4 -0
  27. package/src/Icons/leap-icons.stories.mdx +71 -1
  28. package/src/MenuItem/MenuItem.stories.mdx +2 -2
  29. package/src/Theme/leap/desktop/design-tokens/components/chip.ts +2 -1
  30. package/src/Theme/leap/desktop/overrides/Dialog/dialog.ts +5 -4
  31. package/src/Theme/leap/desktop/overrides/listItemIcon.ts +0 -1
  32. package/src/Theme/leap/desktop/overrides/menu.ts +36 -33
  33. package/src/Theme/leap/desktop/overrides/menuItem.ts +38 -10
  34. package/src/Theme/leap/desktop/theme.ts +2 -0
  35. package/src/Theme/leap/web/design-tokens/components/chip.ts +2 -1
  36. package/src/Theme/leap/web/overrides/Dialog/dialog.ts +4 -6
  37. package/src/Theme/leap/web/overrides/menu.ts +8 -6
  38. package/src/Theme/leap/web/overrides/menuItem.ts +19 -8
  39. package/src/Theme/leap/web/theme.ts +2 -0
  40. 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
- border: '1px solid #CCCCCC',
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 #CCCCCC',
1086
- boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
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
- "& .MuiPaper-root": {
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
- "&.gds-menu-system .MuiPaper-root": {
1401
- color: "#d4d4d4",
1402
- border: "1px solid #CCCCCC",
1403
- backgroundColor: "#eeeeee",
1404
- padding: "0 2px",
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
- "& .MuiListSubheader-root": {
1411
+ '& .MuiListSubheader-root': {
1407
1412
  fontSize: theme.typography.body2.fontSize,
1408
1413
  },
1409
1414
  },
1410
1415
  });
1411
1416
  },
1412
1417
  list: {
1413
- padding: '2px 0',
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: '#0078D7',
1438
+ backgroundColor: '#4e9af7',
1434
1439
  '& .MuiListItemText-root': {
1435
1440
  color: '#fff',
1436
1441
  },
1437
- }, '&.gds-menu-item-icon .MuiListItemIcon-root': {
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-system': __assign(__assign({ minHeight: 22, maxHeight: 22, padding: 0, paddingLeft: 32, paddingRight: 10, backgroundColor: theme.palette.grey[100], color: theme.palette.text.primary }, theme.typography.body2), { '&:hover': {
1474
- backgroundColor: '#91C9F7',
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: theme.palette.grey[100],
1508
+ backgroundColor: "#EDEDEE",
1480
1509
  '& .MuiListItemText-root': {
1481
1510
  color: theme.palette.text.primary,
1482
1511
  },
1483
1512
  '& .MuiListItemIcon-root': {
1484
- backgroundColor: '#91C9F7',
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
  };
@@ -1979,6 +2007,8 @@ theme$2 = material.createTheme(theme$2, {
1979
2007
  });
1980
2008
  theme$2.shadows[3] = '2px 3px 4px 0 rgba(0,0,0,0.5)';
1981
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
1982
2012
  var theme$3 = theme$2;
1983
2013
 
1984
2014
  var typography = {
@@ -2339,7 +2369,8 @@ var chip = {
2339
2369
  fontWeight: '400',
2340
2370
  fontSize: '12px',
2341
2371
  height: '20px',
2342
- iconBorder: '1px solid #d4d4d4'
2372
+ iconBorder: '1px solid #d4d4d4',
2373
+ paddingLabel: '8px',
2343
2374
  },
2344
2375
  }
2345
2376
  };
@@ -2590,8 +2621,7 @@ var dialogOverrides = {
2590
2621
  "&.gds-modal--desktop": {
2591
2622
  '& .gds-modal_paper': {
2592
2623
  color: "#444444",
2593
- border: '1px solid #CCCCCC',
2594
- boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
2624
+ boxShadow: theme.shadows[5],
2595
2625
  maxWidth: 502,
2596
2626
  "&:focus": {
2597
2627
  outline: 'none',
@@ -2656,14 +2686,11 @@ var dialogOverrides = {
2656
2686
  });
2657
2687
  },
2658
2688
  paper: function (_a) {
2659
- var theme = _a.theme;
2689
+ _a.theme;
2660
2690
  return ({
2661
- border: '1px solid #CCCCCC',
2662
- boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
2663
- background: theme.palette.grey[100],
2664
2691
  "& .MuiDialogTitle-root + .MuiDialogContent-root": {
2665
2692
  "&:not(.gds-disablePaddings)": {
2666
- paddingTop: 12,
2693
+ paddingTop: 16,
2667
2694
  },
2668
2695
  },
2669
2696
  });
@@ -3006,6 +3033,7 @@ var menuOverrides = {
3006
3033
  marginTop: 1,
3007
3034
  paddingTop: 4,
3008
3035
  paddingBottom: 4,
3036
+ borderRadius: 4,
3009
3037
  },
3010
3038
  '& .customDropdown': {
3011
3039
  '& .MuiCheckbox-root + .MuiTypography-root': {
@@ -3013,10 +3041,12 @@ var menuOverrides = {
3013
3041
  },
3014
3042
  },
3015
3043
  "&.gds-menu-system .MuiPaper-root": {
3016
- color: "#d4d4d4",
3017
- border: "1px solid #CCCCCC",
3018
- backgroundColor: "#eeeeee",
3019
- padding: "0 2px",
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',
3020
3050
  minWidth: 180,
3021
3051
  "& .MuiListSubheader-root": {
3022
3052
  fontSize: theme.typography.body2.fontSize,
@@ -3025,10 +3055,9 @@ var menuOverrides = {
3025
3055
  });
3026
3056
  },
3027
3057
  list: {
3028
- padding: '2px 0',
3058
+ padding: 0,
3029
3059
  '& .MuiListSubheader-root': {
3030
3060
  pointerEvents: 'none',
3031
- background: 'none',
3032
3061
  },
3033
3062
  },
3034
3063
  }
@@ -3042,7 +3071,7 @@ var menuItemOverrides = {
3042
3071
  '&.MuiMenuItem-root': {
3043
3072
  lineHeight: 1.5715,
3044
3073
  letterSpacing: '0.01rem',
3045
- padding: '.375rem 1.25rem',
3074
+ padding: '.25rem 1.25rem',
3046
3075
  '& .MuiListItemText-root .MuiTypography-root': {
3047
3076
  fontSize: '.8125rem',
3048
3077
  },
@@ -3130,22 +3159,27 @@ var menuItemOverrides = {
3130
3159
  },
3131
3160
  },
3132
3161
  },
3133
- '&.gds-menu-item-system': __assign(__assign({ minHeight: 22, maxHeight: 22, padding: 0, paddingLeft: 32, paddingRight: 10, backgroundColor: theme.palette.grey[100], color: theme.palette.text.primary }, theme.typography.body2), { '&:hover': {
3134
- backgroundColor: '#91C9F7',
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',
3135
3164
  color: theme.palette.text.primary,
3136
3165
  }, '&:hover .MuiListItemText-root .MuiTypography-root': {
3137
3166
  color: theme.palette.text.primary,
3167
+ }, '&:hover .MuiListItemIcon-root': {
3168
+ backgroundColor: '#EDEDEE',
3169
+ borderRadius: theme.shapes.sm,
3138
3170
  }, '&.Mui-selected': {
3139
- backgroundColor: theme.palette.grey[100],
3140
- color: theme.palette.text.primary,
3171
+ backgroundColor: "#EDEDEE",
3172
+ '& .MuiListItemText-root': {
3173
+ color: theme.palette.text.primary,
3174
+ },
3141
3175
  '& .MuiListItemIcon-root': {
3142
- backgroundColor: '#91C9F7',
3176
+ backgroundColor: '#EDEDEE',
3177
+ borderRadius: theme.shapes.sm,
3143
3178
  },
3144
3179
  '& svg': {
3145
3180
  color: theme.palette.text.primary,
3146
3181
  },
3147
3182
  }, '&.Mui-selected:hover': {
3148
- backgroundColor: '#91C9F7',
3149
3183
  color: theme.palette.text.primary,
3150
3184
  '& svg': {
3151
3185
  color: theme.palette.text.primary,
@@ -3166,8 +3200,8 @@ var menuItemOverrides = {
3166
3200
  fontSize: 15,
3167
3201
  color: 'currentColor',
3168
3202
  }, '& .MuiListItemText-root': {
3169
- color: theme.palette.text.primary,
3170
3203
  margin: 0,
3204
+ '& .MuiTypography-root': __assign({}, theme.typography.body2),
3171
3205
  } }),
3172
3206
  },
3173
3207
  });
@@ -3568,6 +3602,8 @@ theme = styles$1.createTheme(theme, {
3568
3602
  // Override shadows
3569
3603
  theme.shadows[3] = '2px 3px 4px 0 rgba(0,0,0,0.15)';
3570
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
3571
3607
  var theme$1 = theme;
3572
3608
 
3573
3609
  var ThemeProvider = function (_a) {
@@ -17048,28 +17084,44 @@ function Zyphta16Icon(props) {
17048
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)" }) })) })] })));
17049
17085
  }
17050
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
+
17051
17095
  function Timer24Icon(props) {
17052
- return (jsxRuntime.jsx(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "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.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.375ZM11.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.75ZM12.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.13348ZM19.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: "#1E365E" }) })));
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" })] })));
17053
17097
  }
17054
17098
 
17055
17099
  function TimerFilled24Icon(props) {
17056
- return (jsxRuntime.jsx(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "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.75ZM3 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.96968ZM12.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: "#1E365E" }) })));
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" })] })));
17057
17101
  }
17058
17102
 
17059
17103
  function AutoTimer24Icon(props) {
17060
- return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: [jsxRuntime.jsx("path", { d: "M14.5 16.5357L13.6828 14.638M8.5 16.5357L9.41235 14.638M13.6828 14.638L11.5 9.24999L9.41235 14.638M13.6828 14.638H9.41235", stroke: "#1E365E", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "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: "#1E365E" })] })));
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" })] })));
17061
17105
  }
17062
17106
 
17063
17107
  function AutoTimerFilled24Icon(props) {
17064
- return (jsxRuntime.jsx(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "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.75ZM3 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.96968ZM12.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.96837ZM12.5698 13.888H10.5073L11.5155 11.2857L12.5698 13.888Z", fill: "#1E365E" }) })));
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" })] })));
17065
17109
  }
17066
17110
 
17067
17111
  function ManualEntry24Icon(props) {
17068
- return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({ viewBox: "0 0 24 24" }, props, { children: [jsxRuntime.jsx("rect", { x: "2.75", y: "2.75", width: "18.5", height: "18.5", rx: "4.25", fill: "none", stroke: "#1E365E", strokeWidth: "1.5" }), jsxRuntime.jsx("path", { fill: "none", d: "M10.5959 16.0909L7.24165 17.0237L8.14352 13.6385L14.2877 7.49432C14.9579 6.82411 16.042 6.81617 16.722 7.47648C17.4162 8.15062 17.4243 9.26249 16.7401 9.94674L10.5959 16.0909Z", stroke: "#1E365E", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] })));
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" })] })));
17069
17113
  }
17070
17114
 
17071
17115
  function ManualEntryFilled24Icon(props) {
17072
- return (jsxRuntime.jsxs(SvgIcon__default["default"], __assign({}, props, { viewBox: "0 0 24 24" }, { children: [jsxRuntime.jsx("mask", __assign({ id: "path-1-inside-1_6547_1306", fill: "white" }, { children: jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 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 2H7ZM17.2704 10.4771C18.2506 9.49689 18.2389 7.90414 17.2445 6.93843C16.2704 5.99254 14.7174 6.00392 13.7573 6.96399L7.61319 13.1081C7.51984 13.2015 7.45278 13.3178 7.4188 13.4454L6.51693 16.8306C6.44767 17.0906 6.52295 17.3677 6.71421 17.5569C6.90547 17.7461 7.18341 17.8183 7.4426 17.7463L10.7969 16.8135C10.9214 16.7788 11.0349 16.7126 11.1263 16.6212L17.2704 10.4771ZM16.1995 8.01452C16.5934 8.3971 16.5981 9.0281 16.2098 9.41641L10.205 15.4211L8.3039 15.9498L8.81636 14.0263L14.818 8.02465C15.1983 7.6443 15.8136 7.63979 16.1995 8.01452Z" }) })), jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 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 2H7ZM17.2704 10.4771C18.2506 9.49689 18.2389 7.90414 17.2445 6.93843C16.2704 5.99254 14.7174 6.00392 13.7573 6.96399L7.61319 13.1081C7.51984 13.2015 7.45278 13.3178 7.4188 13.4454L6.51693 16.8306C6.44767 17.0906 6.52295 17.3677 6.71421 17.5569C6.90547 17.7461 7.18341 17.8183 7.4426 17.7463L10.7969 16.8135C10.9214 16.7788 11.0349 16.7126 11.1263 16.6212L17.2704 10.4771ZM16.1995 8.01452C16.5934 8.3971 16.5981 9.0281 16.2098 9.41641L10.205 15.4211L8.3039 15.9498L8.81636 14.0263L14.818 8.02465C15.1983 7.6443 15.8136 7.63979 16.1995 8.01452Z", fill: "#1E365E" }), jsxRuntime.jsx("path", { d: "M17.2445 6.93843L16.1995 8.01452L17.2445 6.93843ZM17.2704 10.4771L18.3311 11.5377L18.3311 11.5377L17.2704 10.4771ZM13.7573 6.96399L12.6967 5.90333L13.7573 6.96399ZM7.61319 13.1081L8.67385 14.1688L7.61319 13.1081ZM7.4188 13.4454L5.96935 13.0592L5.96935 13.0592L7.4188 13.4454ZM6.51693 16.8306L7.96637 17.2168L7.96637 17.2168L6.51693 16.8306ZM6.71421 17.5569L5.65933 18.6233L5.65933 18.6233L6.71421 17.5569ZM7.4426 17.7463L7.04071 16.3011H7.04071L7.4426 17.7463ZM10.7969 16.8135L11.1988 18.2586L11.1988 18.2586L10.7969 16.8135ZM11.1263 16.6212L12.1869 17.6819L12.1869 17.6819L11.1263 16.6212ZM16.1995 8.01452L15.1545 9.09062L16.1995 8.01452ZM10.205 15.4211L10.6069 16.8663L10.9868 16.7606L11.2657 16.4818L10.205 15.4211ZM8.3039 15.9498L6.85446 15.5637L6.1794 18.0975L8.70579 17.395L8.3039 15.9498ZM8.81636 14.0263L7.7557 12.9656L7.47068 13.2506L7.36691 13.6401L8.81636 14.0263ZM14.818 8.02465L13.7573 6.96399L13.7573 6.96399L14.818 8.02465ZM3.5 7C3.5 5.067 5.067 3.5 7 3.5V0.5C3.41015 0.5 0.5 3.41015 0.5 7H3.5ZM3.5 17V7H0.5V17H3.5ZM7 20.5C5.067 20.5 3.5 18.933 3.5 17H0.5C0.5 20.5898 3.41015 23.5 7 23.5V20.5ZM17 20.5H7V23.5H17V20.5ZM20.5 17C20.5 18.933 18.933 20.5 17 20.5V23.5C20.5898 23.5 23.5 20.5898 23.5 17H20.5ZM20.5 7V17H23.5V7H20.5ZM17 3.5C18.933 3.5 20.5 5.067 20.5 7H23.5C23.5 3.41015 20.5898 0.5 17 0.5V3.5ZM7 3.5H17V0.5H7V3.5ZM16.1995 8.01452C16.5934 8.3971 16.5981 9.0281 16.2098 9.41641L18.3311 11.5377C19.9031 9.96569 19.8844 7.41117 18.2895 5.86233L16.1995 8.01452ZM14.818 8.02465C15.1983 7.6443 15.8136 7.63979 16.1995 8.01452L18.2895 5.86233C16.7273 4.34528 14.2365 4.36354 12.6967 5.90333L14.818 8.02465ZM8.67385 14.1688L14.818 8.02465L12.6967 5.90333L6.55253 12.0475L8.67385 14.1688ZM8.86824 13.8315C8.83426 13.9591 8.7672 14.0754 8.67385 14.1688L6.55253 12.0475C6.27248 12.3275 6.07131 12.6765 5.96935 13.0592L8.86824 13.8315ZM7.96637 17.2168L8.86824 13.8315L5.96935 13.0592L5.06749 16.4445L7.96637 17.2168ZM7.76909 16.4905C7.96035 16.6797 8.03563 16.9568 7.96637 17.2168L5.06749 16.4445C4.85972 17.2243 5.08556 18.0557 5.65933 18.6233L7.76909 16.4905ZM7.04071 16.3011C7.29989 16.229 7.57783 16.3013 7.76909 16.4905L5.65933 18.6233C6.23311 19.1909 7.06692 19.4077 7.84448 19.1914L7.04071 16.3011ZM10.395 15.3683L7.04071 16.3011L7.84448 19.1914L11.1988 18.2586L10.395 15.3683ZM10.0656 15.5605C10.157 15.4692 10.2705 15.4029 10.395 15.3683L11.1988 18.2586C11.5723 18.1547 11.9127 17.9561 12.1869 17.6819L10.0656 15.5605ZM16.2098 9.41641L10.0656 15.5606L12.1869 17.6819L18.3311 11.5377L16.2098 9.41641ZM17.2704 10.4771C18.2506 9.49689 18.2389 7.90414 17.2445 6.93843L15.1545 9.09062C14.948 8.89007 14.9455 8.5593 15.1491 8.35575L17.2704 10.4771ZM11.2657 16.4818L17.2704 10.4771L15.1491 8.35575L9.14437 14.3605L11.2657 16.4818ZM8.70579 17.395L10.6069 16.8663L9.80315 13.976L7.90202 14.5047L8.70579 17.395ZM7.36691 13.6401L6.85446 15.5637L9.75335 16.336L10.2658 14.4124L7.36691 13.6401ZM13.7573 6.96399L7.7557 12.9656L9.87702 15.0869L15.8787 9.08531L13.7573 6.96399ZM17.2445 6.93843C16.2704 5.99254 14.7174 6.00392 13.7573 6.96399L15.8787 9.08531C15.6793 9.28469 15.3568 9.28705 15.1545 9.09062L17.2445 6.93843Z", fill: "#1E365E", mask: "url(#path-1-inside-1_6547_1306)" })] })));
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" })] })));
17073
17125
  }
17074
17126
 
17075
17127
  function CalendarRibbonIcon() {
@@ -17472,6 +17524,8 @@ exports.AssignCurvedIcon = AssignCurvedIcon;
17472
17524
  exports.AttachmentIcon = AttachmentIcon;
17473
17525
  exports.AutoTimer24Icon = AutoTimer24Icon;
17474
17526
  exports.AutoTimerFilled24Icon = AutoTimerFilled24Icon;
17527
+ exports.AutoTimerIconDarkTheme = AutoTimerIconDarkTheme;
17528
+ exports.AutoTimerIconLightTheme = AutoTimerIconLightTheme;
17475
17529
  exports.Autocomplete = Autocomplete;
17476
17530
  exports.Avatar = Avatar;
17477
17531
  exports.AvatarBusinessIcon = AvatarBusinessIcon;
@@ -17622,6 +17676,8 @@ exports.Loader = Loader;
17622
17676
  exports.LoaderIcon = LoaderIcon;
17623
17677
  exports.ManualEntry24Icon = ManualEntry24Icon;
17624
17678
  exports.ManualEntryFilled24Icon = ManualEntryFilled24Icon;
17679
+ exports.ManualEntryIconDarkTheme = ManualEntryIconDarkTheme;
17680
+ exports.ManualEntryIconLightTheme = ManualEntryIconLightTheme;
17625
17681
  exports.MatterFolderRibbonIcon = MatterFolderRibbonIcon;
17626
17682
  exports.Memo16Icon = Memo16Icon;
17627
17683
  exports.Menu = Menu;