@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
@@ -0,0 +1,2 @@
1
+ import { SvgIconProps } from '@mui/material/SvgIcon';
2
+ export default function AutoTimerIconDarkTheme(props: SvgIconProps): JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SvgIconProps } from '@mui/material/SvgIcon';
2
+ export default function AutoTimerIconLightTheme(props: SvgIconProps): JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SvgIconProps } from '@mui/material/SvgIcon';
2
+ export default function ManualEntryIconDarkTheme(props: SvgIconProps): JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SvgIconProps } from '@mui/material/SvgIcon';
2
+ export default function ManualEntryIconLightTheme(props: SvgIconProps): JSX.Element;
@@ -67,12 +67,16 @@ export { default as Video16Icon } from './Video16';
67
67
  export { default as VideoCall16Icon } from './VideoCall16';
68
68
  export { default as VoiceMemo16Icon } from './VoiceMemo16';
69
69
  export { default as Zyphta16Icon } from './Zyphta16';
70
+ export { default as AutoTimerIconDarkTheme } from './AutoTimerDarkTheme';
71
+ export { default as AutoTimerIconLightTheme } from './AutoTimerLightTheme';
70
72
  export { default as Timer24Icon } from './Timer24';
71
73
  export { default as TimerFilled24Icon } from './TimerFillled24';
72
74
  export { default as AutoTimer24Icon } from './AutoTimer24';
73
75
  export { default as AutoTimerFilled24Icon } from './AutoTimerFilled24';
74
76
  export { default as ManualEntry24Icon } from './ManualEntry24';
75
77
  export { default as ManualEntryFilled24Icon } from './ManualEntryFilled24';
78
+ export { default as ManualEntryIconDarkTheme } from './ManualEntryDarkTheme';
79
+ export { default as ManualEntryIconLightTheme } from './ManualEntryLightTheme';
76
80
  export { default as CalendarRibbonIcon } from './ribbon/Calendar';
77
81
  export { default as DeleteRibbonIcon } from './ribbon/Delete';
78
82
  export { default as MatterFolderRibbonIcon } from './ribbon/MatterFolder';
@@ -56,6 +56,7 @@ declare const chip: {
56
56
  fontSize: string;
57
57
  height: string;
58
58
  iconBorder: string;
59
+ paddingLabel: string;
59
60
  };
60
61
  };
61
62
  };
@@ -55,6 +55,7 @@ declare const chip: {
55
55
  fontSize: string;
56
56
  height: string;
57
57
  iconBorder: string;
58
+ paddingLabel: string;
58
59
  };
59
60
  };
60
61
  };
package/dist/index.esm.js CHANGED
@@ -713,7 +713,8 @@ var chip$1 = {
713
713
  fontWeight: '400',
714
714
  fontSize: '12px',
715
715
  height: '22px',
716
- iconBorder: '1px solid #d4d4d4'
716
+ iconBorder: '1px solid #d4d4d4',
717
+ paddingLabel: '4px',
717
718
  },
718
719
  }
719
720
  };
@@ -986,9 +987,9 @@ var dialogOverrides$1 = {
986
987
  "&.gds-modal--desktop": {
987
988
  '& .gds-modal_paper': {
988
989
  color: "#444444",
989
- border: '1px solid #CCCCCC',
990
- boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
990
+ boxShadow: theme.shadows[5],
991
991
  maxWidth: 502,
992
+ borderRadius: theme.shapes.md,
992
993
  "&:focus": {
993
994
  outline: 'none',
994
995
  }
@@ -1054,9 +1055,10 @@ var dialogOverrides$1 = {
1054
1055
  paper: function (_a) {
1055
1056
  var theme = _a.theme;
1056
1057
  return ({
1057
- border: '1px solid #CCCCCC',
1058
- boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
1058
+ border: '1px solid #BBBDBF',
1059
+ boxShadow: theme.shadows[5],
1059
1060
  background: theme.palette.grey[100],
1061
+ borderRadius: theme.shapes.md,
1060
1062
  "& .MuiDialogTitle-root + .MuiDialogContent-root": {
1061
1063
  "&:not(.gds-disablePaddings)": {
1062
1064
  paddingTop: 12,
@@ -1356,10 +1358,11 @@ var menuOverrides$1 = {
1356
1358
  root: function (_a) {
1357
1359
  var theme = _a.theme;
1358
1360
  return ({
1359
- "& .MuiPaper-root": {
1361
+ '& .MuiPaper-root': {
1360
1362
  border: "1px solid #646464",
1361
1363
  boxShadow: '3px 3px 4px rgba(0, 0, 0, 0.4)',
1362
1364
  background: '#eeeeee',
1365
+ borderRadius: '0',
1363
1366
  },
1364
1367
  '& .customDropdown': {
1365
1368
  '& .MuiListSubheader-root': {
@@ -1369,25 +1372,27 @@ var menuOverrides$1 = {
1369
1372
  marginLeft: 6,
1370
1373
  },
1371
1374
  },
1372
- "&.gds-menu-system .MuiPaper-root": {
1373
- color: "#d4d4d4",
1374
- border: "1px solid #CCCCCC",
1375
- backgroundColor: "#eeeeee",
1376
- padding: "0 2px",
1375
+ '&.gds-menu-system .MuiPaper-root': {
1376
+ color: '#d4d4d4',
1377
+ border: '1px solid #CCCCCC',
1378
+ boxShadow: theme.shadows[6],
1379
+ borderRadius: theme.shapes.sm,
1380
+ backgroundColor: '#F9F9F9',
1381
+ padding: '0 4px',
1377
1382
  minWidth: 180,
1378
- "& .MuiListSubheader-root": {
1383
+ '& .MuiListSubheader-root': {
1379
1384
  fontSize: theme.typography.body2.fontSize,
1380
1385
  },
1381
1386
  },
1382
1387
  });
1383
1388
  },
1384
1389
  list: {
1385
- padding: '2px 0',
1390
+ padding: 0,
1386
1391
  '& .MuiListSubheader-root': {
1387
1392
  pointerEvents: 'none',
1388
1393
  },
1389
1394
  },
1390
- }
1395
+ },
1391
1396
  };
1392
1397
 
1393
1398
  var menuItemOverrides$1 = {
@@ -1402,13 +1407,11 @@ var menuItemOverrides$1 = {
1402
1407
  }, '&:hover .MuiListItemText-root .MuiTypography-root': {
1403
1408
  color: '#fff',
1404
1409
  }, '&.Mui-selected': {
1405
- backgroundColor: '#0078D7',
1410
+ backgroundColor: '#4e9af7',
1406
1411
  '& .MuiListItemText-root': {
1407
1412
  color: '#fff',
1408
1413
  },
1409
- }, '&.gds-menu-item-icon .MuiListItemIcon-root': {
1410
- display: 'none',
1411
- }, '.customMultipleList &$selected': {
1414
+ }, '&.customMultipleList .Mui-selected': {
1412
1415
  backgroundColor: '#fff',
1413
1416
  }, '&.Mui-selected:hover': {
1414
1417
  backgroundColor: '#0078D7',
@@ -1442,24 +1445,50 @@ var menuItemOverrides$1 = {
1442
1445
  },
1443
1446
  }, '& .MuiDivider-root': {
1444
1447
  marginLeft: 32,
1445
- }, '&.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': {
1446
- backgroundColor: '#91C9F7',
1448
+ }, '&.gds-menu-item-icon': {
1449
+ paddingLeft: 0,
1450
+ '& .MuiSvgIcon-root': {
1451
+ fontSize: 15,
1452
+ },
1453
+ '& .MuiListItemIcon-root': {
1454
+ color: theme.palette.text.primary,
1455
+ minWidth: 22,
1456
+ height: 22,
1457
+ display: 'flex',
1458
+ alignItems: 'center',
1459
+ justifyContent: 'center',
1460
+ },
1461
+ '&.Mui-selected': {
1462
+ '& .MuiListItemIcon-root': {
1463
+ color: '#fff',
1464
+ backgroundColor: '#4e9af7'
1465
+ },
1466
+ },
1467
+ '&:hover .MuiListItemIcon-root': {
1468
+ color: '#fff',
1469
+ backgroundColor: '#0078D7',
1470
+ },
1471
+ }, '&.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': {
1472
+ backgroundColor: '#EDEDEE',
1447
1473
  color: theme.palette.text.primary,
1448
1474
  }, '&:hover .MuiListItemText-root .MuiTypography-root': {
1449
1475
  color: theme.palette.text.primary,
1476
+ }, '&:hover .MuiListItemIcon-root': {
1477
+ backgroundColor: '#EDEDEE',
1478
+ borderRadius: theme.shapes.sm,
1450
1479
  }, '&.Mui-selected': {
1451
- backgroundColor: theme.palette.grey[100],
1480
+ backgroundColor: "#EDEDEE",
1452
1481
  '& .MuiListItemText-root': {
1453
1482
  color: theme.palette.text.primary,
1454
1483
  },
1455
1484
  '& .MuiListItemIcon-root': {
1456
- backgroundColor: '#91C9F7',
1485
+ backgroundColor: '#EDEDEE',
1486
+ borderRadius: theme.shapes.sm,
1457
1487
  },
1458
1488
  '& svg': {
1459
1489
  color: theme.palette.text.primary,
1460
1490
  },
1461
1491
  }, '&.Mui-selected:hover': {
1462
- backgroundColor: '#91C9F7',
1463
1492
  color: theme.palette.text.primary,
1464
1493
  '& svg': {
1465
1494
  color: theme.palette.text.primary,
@@ -1626,7 +1655,6 @@ var listItemIconOverrides$1 = {
1626
1655
  styleOverrides: {
1627
1656
  root: function () { return ({
1628
1657
  minWidth: 'auto',
1629
- marginRight: 10,
1630
1658
  }); },
1631
1659
  },
1632
1660
  };
@@ -1951,6 +1979,8 @@ theme$2 = createTheme(theme$2, {
1951
1979
  });
1952
1980
  theme$2.shadows[3] = '2px 3px 4px 0 rgba(0,0,0,0.5)';
1953
1981
  theme$2.shadows[4] = '0px 4px 20px 0px #00000036'; //Shadow / Modal Window
1982
+ theme$2.shadows[5] = '0px 10px 10px -5px rgba(0, 0, 0, 0.04), 0px 20px 25px -5px rgba(0, 0, 0, 0.1)';
1983
+ 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
1954
1984
  var theme$3 = theme$2;
1955
1985
 
1956
1986
  var typography = {
@@ -2311,7 +2341,8 @@ var chip = {
2311
2341
  fontWeight: '400',
2312
2342
  fontSize: '12px',
2313
2343
  height: '20px',
2314
- iconBorder: '1px solid #d4d4d4'
2344
+ iconBorder: '1px solid #d4d4d4',
2345
+ paddingLabel: '8px',
2315
2346
  },
2316
2347
  }
2317
2348
  };
@@ -2562,8 +2593,7 @@ var dialogOverrides = {
2562
2593
  "&.gds-modal--desktop": {
2563
2594
  '& .gds-modal_paper': {
2564
2595
  color: "#444444",
2565
- border: '1px solid #CCCCCC',
2566
- boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
2596
+ boxShadow: theme.shadows[5],
2567
2597
  maxWidth: 502,
2568
2598
  "&:focus": {
2569
2599
  outline: 'none',
@@ -2628,14 +2658,11 @@ var dialogOverrides = {
2628
2658
  });
2629
2659
  },
2630
2660
  paper: function (_a) {
2631
- var theme = _a.theme;
2661
+ _a.theme;
2632
2662
  return ({
2633
- border: '1px solid #CCCCCC',
2634
- boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.21)',
2635
- background: theme.palette.grey[100],
2636
2663
  "& .MuiDialogTitle-root + .MuiDialogContent-root": {
2637
2664
  "&:not(.gds-disablePaddings)": {
2638
- paddingTop: 12,
2665
+ paddingTop: 16,
2639
2666
  },
2640
2667
  },
2641
2668
  });
@@ -2978,6 +3005,7 @@ var menuOverrides = {
2978
3005
  marginTop: 1,
2979
3006
  paddingTop: 4,
2980
3007
  paddingBottom: 4,
3008
+ borderRadius: 4,
2981
3009
  },
2982
3010
  '& .customDropdown': {
2983
3011
  '& .MuiCheckbox-root + .MuiTypography-root': {
@@ -2985,10 +3013,12 @@ var menuOverrides = {
2985
3013
  },
2986
3014
  },
2987
3015
  "&.gds-menu-system .MuiPaper-root": {
2988
- color: "#d4d4d4",
2989
- border: "1px solid #CCCCCC",
2990
- backgroundColor: "#eeeeee",
2991
- padding: "0 2px",
3016
+ color: '#d4d4d4',
3017
+ border: '1px solid #CCCCCC',
3018
+ boxShadow: theme.shadows[6],
3019
+ borderRadius: theme.shapes.sm,
3020
+ backgroundColor: '#F9F9F9',
3021
+ padding: '0 4px',
2992
3022
  minWidth: 180,
2993
3023
  "& .MuiListSubheader-root": {
2994
3024
  fontSize: theme.typography.body2.fontSize,
@@ -2997,10 +3027,9 @@ var menuOverrides = {
2997
3027
  });
2998
3028
  },
2999
3029
  list: {
3000
- padding: '2px 0',
3030
+ padding: 0,
3001
3031
  '& .MuiListSubheader-root': {
3002
3032
  pointerEvents: 'none',
3003
- background: 'none',
3004
3033
  },
3005
3034
  },
3006
3035
  }
@@ -3014,7 +3043,7 @@ var menuItemOverrides = {
3014
3043
  '&.MuiMenuItem-root': {
3015
3044
  lineHeight: 1.5715,
3016
3045
  letterSpacing: '0.01rem',
3017
- padding: '.375rem 1.25rem',
3046
+ padding: '.25rem 1.25rem',
3018
3047
  '& .MuiListItemText-root .MuiTypography-root': {
3019
3048
  fontSize: '.8125rem',
3020
3049
  },
@@ -3102,22 +3131,27 @@ var menuItemOverrides = {
3102
3131
  },
3103
3132
  },
3104
3133
  },
3105
- '&.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': {
3106
- backgroundColor: '#91C9F7',
3134
+ '&.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': {
3135
+ backgroundColor: '#EDEDEE',
3107
3136
  color: theme.palette.text.primary,
3108
3137
  }, '&:hover .MuiListItemText-root .MuiTypography-root': {
3109
3138
  color: theme.palette.text.primary,
3139
+ }, '&:hover .MuiListItemIcon-root': {
3140
+ backgroundColor: '#EDEDEE',
3141
+ borderRadius: theme.shapes.sm,
3110
3142
  }, '&.Mui-selected': {
3111
- backgroundColor: theme.palette.grey[100],
3112
- color: theme.palette.text.primary,
3143
+ backgroundColor: "#EDEDEE",
3144
+ '& .MuiListItemText-root': {
3145
+ color: theme.palette.text.primary,
3146
+ },
3113
3147
  '& .MuiListItemIcon-root': {
3114
- backgroundColor: '#91C9F7',
3148
+ backgroundColor: '#EDEDEE',
3149
+ borderRadius: theme.shapes.sm,
3115
3150
  },
3116
3151
  '& svg': {
3117
3152
  color: theme.palette.text.primary,
3118
3153
  },
3119
3154
  }, '&.Mui-selected:hover': {
3120
- backgroundColor: '#91C9F7',
3121
3155
  color: theme.palette.text.primary,
3122
3156
  '& svg': {
3123
3157
  color: theme.palette.text.primary,
@@ -3138,8 +3172,8 @@ var menuItemOverrides = {
3138
3172
  fontSize: 15,
3139
3173
  color: 'currentColor',
3140
3174
  }, '& .MuiListItemText-root': {
3141
- color: theme.palette.text.primary,
3142
3175
  margin: 0,
3176
+ '& .MuiTypography-root': __assign({}, theme.typography.body2),
3143
3177
  } }),
3144
3178
  },
3145
3179
  });
@@ -3540,6 +3574,8 @@ theme = createTheme$1(theme, {
3540
3574
  // Override shadows
3541
3575
  theme.shadows[3] = '2px 3px 4px 0 rgba(0,0,0,0.15)';
3542
3576
  theme.shadows[4] = '0px 4px 20px 0px #00000036'; //Shadow / Modal Window
3577
+ 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);';
3578
+ 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
3543
3579
  var theme$1 = theme;
3544
3580
 
3545
3581
  var ThemeProvider = function (_a) {
@@ -17020,28 +17056,44 @@ function Zyphta16Icon(props) {
17020
17056
  return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16" }, { children: [jsxs("g", __assign({ clipPath: "url(#clip0_165_2861)" }, { children: [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" }), 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" }), 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" }), 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" }), 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" }), 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" }), 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" })] })), jsx("defs", { children: jsx("clipPath", __assign({ id: "clip0_165_2861" }, { children: jsx("rect", { width: "16", height: "16", fill: "white", transform: "matrix(1 0 0 -1 0 16)" }) })) })] })));
17021
17057
  }
17022
17058
 
17059
+ function AutoTimerIconDarkTheme(props) {
17060
+ return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16" }, { children: [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" }), 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" }), 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" }), 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" })] })));
17061
+ }
17062
+
17063
+ function AutoTimerIconLightTheme(props) {
17064
+ return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16" }, { children: [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" }), 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" }), 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" }), 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" })] })));
17065
+ }
17066
+
17023
17067
  function Timer24Icon(props) {
17024
- return (jsx(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: 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" }) })));
17068
+ return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: [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" }), 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" }), 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" }), 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" })] })));
17025
17069
  }
17026
17070
 
17027
17071
  function TimerFilled24Icon(props) {
17028
- return (jsx(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: 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" }) })));
17072
+ return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: [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" }), 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" }), 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" })] })));
17029
17073
  }
17030
17074
 
17031
17075
  function AutoTimer24Icon(props) {
17032
- return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: [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" }), 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" })] })));
17076
+ return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: [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" }), 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" })] })));
17033
17077
  }
17034
17078
 
17035
17079
  function AutoTimerFilled24Icon(props) {
17036
- return (jsx(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: 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" }) })));
17080
+ return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: [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" }), jsx("path", { d: "M12.5698 13.888H10.5073L11.5155 11.2857L12.5698 13.888Z", fill: "currentColor" }), 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" }), 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" })] })));
17037
17081
  }
17038
17082
 
17039
17083
  function ManualEntry24Icon(props) {
17040
- return (jsxs(SvgIcon, __assign({ viewBox: "0 0 24 24" }, props, { children: [jsx("rect", { x: "2.75", y: "2.75", width: "18.5", height: "18.5", rx: "4.25", fill: "none", stroke: "#1E365E", strokeWidth: "1.5" }), 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" })] })));
17084
+ return (jsxs(SvgIcon, __assign({ viewBox: "0 0 24 24" }, props, { children: [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" }), 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" })] })));
17041
17085
  }
17042
17086
 
17043
17087
  function ManualEntryFilled24Icon(props) {
17044
- return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: [jsx("mask", __assign({ id: "path-1-inside-1_6547_1306", fill: "white" }, { children: 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" }) })), 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" }), 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)" })] })));
17088
+ return (jsx(SvgIcon, __assign({}, props, { viewBox: "0 0 24 24" }, { children: 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" }) })));
17089
+ }
17090
+
17091
+ function ManualEntryIconDarkTheme(props) {
17092
+ return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16" }, { children: [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" }), 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" })] })));
17093
+ }
17094
+
17095
+ function ManualEntryIconLightTheme(props) {
17096
+ return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16" }, { children: [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" }), 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" })] })));
17045
17097
  }
17046
17098
 
17047
17099
  function CalendarRibbonIcon() {
@@ -17422,5 +17474,5 @@ function PoweredByLawconnectLogo(props) {
17422
17474
  // Themes
17423
17475
  var IconsPath = '../Icons/lawconnect/';
17424
17476
 
17425
- export { AccessIcon, Accordion, AccordionDetails, AccordionPanel, AccordionSummary, AccountingIcon, ActivityDefault16Icon, ActivityLog, ActivityTypeDefault, ActivityTypeDefault16, ActivityTypePhoneCall, ActivityTypePhoneCall16, ActivityTypeScannedDoc, ActivityTypeScannedDoc16, ActivityTypeVideoCall, ActivityTypeVideoCall16, AppBar, Appointment16Icon, AssignCurvedIcon, AttachmentIcon, AutoTimer24Icon, AutoTimerFilled24Icon, Autocomplete, Avatar, AvatarBusinessIcon, AvatarCompanyIcon, AvatarGovernmentIcon, AvatarGroup, AvatarPeopleIcon, AvatarPersonIcon, AvatarTrustIcon, BlankLetter16Icon, BottomListButton, Box, Breadcrumbs, Browse2Icon, BrowseIcon, Button, ButtonCaretIcon, ButtonFilterIcon, Bylawyers16Icon as BylawyersIcon, CalendarIcon, CalendarRibbonIcon, CaratIcon, Card, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, Chip, Clause16Icon, CoinEuroIcon$1 as CoinEuroIcon, CoinIcon, CoinPoundIcon, CostRecoveryExceeded16Icon, Cross16Icon, CrossIcon, CssBaseline, CoinEuroIcon as CurrencyEuroIcon, CurrencyIcon, CurrencyPoundIcon, DatePicker, DateRangePicker, DeleteRibbonIcon, Dialog, Divider, DocTypeAppointment$1 as DocTypeAppointment, DocTypeAppointment16, DocTypeAppointmentCriticalDate, DocTypeAppointmentCriticalDate16, DocTypeAudio, DocTypeAudio16, DocTypeEmailDraft$2 as DocTypeClausePrecedent, DocTypeClausePrecedent16, DocTypeAppointment as DocTypeComment, DocTypeComment16, DocTypeCriticalDate, DocTypeCriticalDate16, DocTypeDeadline, DocTypeDeadline16, DocTypeDefault, DocTypeDefault16, DocTypeEmail, DocTypeEmail16, DocTypeEmailDraft$3 as DocTypeEmailDraft, DocTypeEmailDraft16, DocTypeEmailDraft$1 as DocTypeEmailReceived, DocTypeEmailRecieved16 as DocTypeEmailReceived16, DocTypeEmailRecieved, DocTypeEmailSent, DocTypeEmailSent16, DocTypeExcel, DocTypeExcel16, DocTypeExcel16Shortcut, DocTypeFax, DocTypeFax16, DocTypeFileNote, DocTypeFileNote16, DocTypeFolder, DocTypeFolder16, DocTypeImage, DocTypeImage16, DocTypeInfotrack, DocTypeInfotrack16, DocTypeInvoiceRequest, DocTypeInvoiceRequest16, DocTypeInvoiceRequests, DocTypeInvoiceRequests16, DocTypeLetter, DocTypeLetter16, DocTypeMemo, DocTypeMemo16, DocTypePdf, DocTypePdf16, DocTypePowerpoint, DocTypePowerpoint16, DocTypeSMS, DocTypeSMS16, DocTypeScannedDoc16, DocTypeEmailDraft as DocTypeSignatureDeclined, DocTypeSignatureDeclined16, DocTypeSignaturePending, DocTypeSignaturePending16, DocTypeSignatureRequest, DocTypeSignatureRequest16, DocTypeSignatureSigned, DocTypeSignatureSigned16, DocTypeTasks, DocTypeTasks16, DocTypeTrust, DocTypeTrust16, DocTypeVideo, DocTypeVideo16, DocTypeWord, DocTypeWord16, DocTypeWord16Shortcut, DocTypeZip, DocTypeZip16, Drawer, DrawerMenu, Dropdown, EmailSentIcon, EmptyState, Fax16Icon, FooterActions, FormBody, FormContainer, FormGroup, FormHeader, Grid, HeaderToolbar, HomeIcon, HyperLink16Icon, Icon, IconButton, IconsPath, Input, InputLabel, InsertLinkIcon, LawconnectIcon, LeapLegsLogo, LeapLogo, List, ListItem, ListItemAvatar, ListItemIcon, ListItemText, ListSubheader, Loader, LoaderIcon, ManualEntry24Icon, ManualEntryFilled24Icon, MatterFolderRibbonIcon, Memo16Icon, Menu, MenuHeader, MenuIcon, MenuItem, Modal, ModalActions, ModalContent, ModalTitle, MoreVerticalIcon, NewAppointmentIcon, NewEntryRibbonIcons as NewEntryRibbonIcon, Pagination, PhoneCall16Icon, Popover, PowerIcon, PoweredByLawconnectLogo, PrecedentNotification16Icon, PreviewIcon, ProgressBar, Radio, RadioGroup, ReportingIcon, ResponseIcon, RevokeAccessIcon, RibbonButton, RibbonButtonGroup, ScannedDoc16Icon, SearchIcon, Select, SelectFilterEmptyIcon, SelectFilterFilledIcon, SelectFilterIcon, SharedFolder16Icon, SidebarLayout, Sms16Icon, SpinnerIcon, StepNavigation, SvgCheckboxChecked, SvgCheckboxIndeterminate, SvgCheckboxUncontrolled, SvgFormSearch, SvgNewAppointment, SvgRadioChecked, SvgRadioDefault, Switch, Tab, TabListItem, Table, TableBody, TableCell, TableCellIcon, TableContainer, TableFooter, TableHead, TableRow, Tabs, Tag, TaxInvoice162Icon, TaxInvoice16Icon, TextField, ThemeProvider, TickIcon, TimedEntry16Icon, Timer24Icon, TimerFilled24Icon, Toolbar, ToolbarButton, Tooltip, TrustStatement16Icon, TwoColumnLayout, Typography, UnkwownType16Icon as UnknownType16Icon, UserLinkIcon, UserLockIcon, UsersIcon, Video16Icon, VideoCall16Icon, VoiceMemo16Icon, Zyphta16Icon, createFilterOptions, theme$3 as themeDesktop, theme$1 as themeWeb };
17477
+ export { AccessIcon, Accordion, AccordionDetails, AccordionPanel, AccordionSummary, AccountingIcon, ActivityDefault16Icon, ActivityLog, ActivityTypeDefault, ActivityTypeDefault16, ActivityTypePhoneCall, ActivityTypePhoneCall16, ActivityTypeScannedDoc, ActivityTypeScannedDoc16, ActivityTypeVideoCall, ActivityTypeVideoCall16, AppBar, Appointment16Icon, AssignCurvedIcon, AttachmentIcon, AutoTimer24Icon, AutoTimerFilled24Icon, AutoTimerIconDarkTheme, AutoTimerIconLightTheme, Autocomplete, Avatar, AvatarBusinessIcon, AvatarCompanyIcon, AvatarGovernmentIcon, AvatarGroup, AvatarPeopleIcon, AvatarPersonIcon, AvatarTrustIcon, BlankLetter16Icon, BottomListButton, Box, Breadcrumbs, Browse2Icon, BrowseIcon, Button, ButtonCaretIcon, ButtonFilterIcon, Bylawyers16Icon as BylawyersIcon, CalendarIcon, CalendarRibbonIcon, CaratIcon, Card, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, Chip, Clause16Icon, CoinEuroIcon$1 as CoinEuroIcon, CoinIcon, CoinPoundIcon, CostRecoveryExceeded16Icon, Cross16Icon, CrossIcon, CssBaseline, CoinEuroIcon as CurrencyEuroIcon, CurrencyIcon, CurrencyPoundIcon, DatePicker, DateRangePicker, DeleteRibbonIcon, Dialog, Divider, DocTypeAppointment$1 as DocTypeAppointment, DocTypeAppointment16, DocTypeAppointmentCriticalDate, DocTypeAppointmentCriticalDate16, DocTypeAudio, DocTypeAudio16, DocTypeEmailDraft$2 as DocTypeClausePrecedent, DocTypeClausePrecedent16, DocTypeAppointment as DocTypeComment, DocTypeComment16, DocTypeCriticalDate, DocTypeCriticalDate16, DocTypeDeadline, DocTypeDeadline16, DocTypeDefault, DocTypeDefault16, DocTypeEmail, DocTypeEmail16, DocTypeEmailDraft$3 as DocTypeEmailDraft, DocTypeEmailDraft16, DocTypeEmailDraft$1 as DocTypeEmailReceived, DocTypeEmailRecieved16 as DocTypeEmailReceived16, DocTypeEmailRecieved, DocTypeEmailSent, DocTypeEmailSent16, DocTypeExcel, DocTypeExcel16, DocTypeExcel16Shortcut, DocTypeFax, DocTypeFax16, DocTypeFileNote, DocTypeFileNote16, DocTypeFolder, DocTypeFolder16, DocTypeImage, DocTypeImage16, DocTypeInfotrack, DocTypeInfotrack16, DocTypeInvoiceRequest, DocTypeInvoiceRequest16, DocTypeInvoiceRequests, DocTypeInvoiceRequests16, DocTypeLetter, DocTypeLetter16, DocTypeMemo, DocTypeMemo16, DocTypePdf, DocTypePdf16, DocTypePowerpoint, DocTypePowerpoint16, DocTypeSMS, DocTypeSMS16, DocTypeScannedDoc16, DocTypeEmailDraft as DocTypeSignatureDeclined, DocTypeSignatureDeclined16, DocTypeSignaturePending, DocTypeSignaturePending16, DocTypeSignatureRequest, DocTypeSignatureRequest16, DocTypeSignatureSigned, DocTypeSignatureSigned16, DocTypeTasks, DocTypeTasks16, DocTypeTrust, DocTypeTrust16, DocTypeVideo, DocTypeVideo16, DocTypeWord, DocTypeWord16, DocTypeWord16Shortcut, DocTypeZip, DocTypeZip16, Drawer, DrawerMenu, Dropdown, EmailSentIcon, EmptyState, Fax16Icon, FooterActions, FormBody, FormContainer, FormGroup, FormHeader, Grid, HeaderToolbar, HomeIcon, HyperLink16Icon, Icon, IconButton, IconsPath, Input, InputLabel, InsertLinkIcon, LawconnectIcon, LeapLegsLogo, LeapLogo, List, ListItem, ListItemAvatar, ListItemIcon, ListItemText, ListSubheader, Loader, LoaderIcon, ManualEntry24Icon, ManualEntryFilled24Icon, ManualEntryIconDarkTheme, ManualEntryIconLightTheme, MatterFolderRibbonIcon, Memo16Icon, Menu, MenuHeader, MenuIcon, MenuItem, Modal, ModalActions, ModalContent, ModalTitle, MoreVerticalIcon, NewAppointmentIcon, NewEntryRibbonIcons as NewEntryRibbonIcon, Pagination, PhoneCall16Icon, Popover, PowerIcon, PoweredByLawconnectLogo, PrecedentNotification16Icon, PreviewIcon, ProgressBar, Radio, RadioGroup, ReportingIcon, ResponseIcon, RevokeAccessIcon, RibbonButton, RibbonButtonGroup, ScannedDoc16Icon, SearchIcon, Select, SelectFilterEmptyIcon, SelectFilterFilledIcon, SelectFilterIcon, SharedFolder16Icon, SidebarLayout, Sms16Icon, SpinnerIcon, StepNavigation, SvgCheckboxChecked, SvgCheckboxIndeterminate, SvgCheckboxUncontrolled, SvgFormSearch, SvgNewAppointment, SvgRadioChecked, SvgRadioDefault, Switch, Tab, TabListItem, Table, TableBody, TableCell, TableCellIcon, TableContainer, TableFooter, TableHead, TableRow, Tabs, Tag, TaxInvoice162Icon, TaxInvoice16Icon, TextField, ThemeProvider, TickIcon, TimedEntry16Icon, Timer24Icon, TimerFilled24Icon, Toolbar, ToolbarButton, Tooltip, TrustStatement16Icon, TwoColumnLayout, Typography, UnkwownType16Icon as UnknownType16Icon, UserLinkIcon, UserLockIcon, UsersIcon, Video16Icon, VideoCall16Icon, VoiceMemo16Icon, Zyphta16Icon, createFilterOptions, theme$3 as themeDesktop, theme$1 as themeWeb };
17426
17478
  //# sourceMappingURL=index.esm.js.map