@activecollab/components 2.0.353 → 2.0.355

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 (57) hide show
  1. package/dist/cjs/components/Icons/collection/Cloud.js +47 -0
  2. package/dist/cjs/components/Icons/collection/Cloud.js.map +1 -0
  3. package/dist/cjs/components/Icons/collection/CloudDeploy.js +53 -0
  4. package/dist/cjs/components/Icons/collection/CloudDeploy.js.map +1 -0
  5. package/dist/cjs/components/Icons/collection/CloudDeployFailed.js +53 -0
  6. package/dist/cjs/components/Icons/collection/CloudDeployFailed.js.map +1 -0
  7. package/dist/cjs/components/Icons/collection/Gear.js +49 -0
  8. package/dist/cjs/components/Icons/collection/Gear.js.map +1 -0
  9. package/dist/cjs/components/Icons/collection/GearFailed.js +85 -0
  10. package/dist/cjs/components/Icons/collection/GearFailed.js.map +1 -0
  11. package/dist/cjs/components/Icons/collection/GitMerge.js +57 -0
  12. package/dist/cjs/components/Icons/collection/GitMerge.js.map +1 -0
  13. package/dist/cjs/components/Icons/collection/GitPullRequestClosed.js +8 -8
  14. package/dist/cjs/components/Icons/collection/GitPullRequestClosed.js.map +1 -1
  15. package/dist/cjs/components/Icons/collection/index.js +42 -0
  16. package/dist/cjs/components/Icons/collection/index.js.map +1 -1
  17. package/dist/cjs/presentation/shared/SourceCodeSection.js +271 -75
  18. package/dist/cjs/presentation/shared/SourceCodeSection.js.map +1 -1
  19. package/dist/esm/components/Icons/collection/Cloud.d.ts +15 -0
  20. package/dist/esm/components/Icons/collection/Cloud.d.ts.map +1 -0
  21. package/dist/esm/components/Icons/collection/Cloud.js +40 -0
  22. package/dist/esm/components/Icons/collection/Cloud.js.map +1 -0
  23. package/dist/esm/components/Icons/collection/CloudDeploy.d.ts +17 -0
  24. package/dist/esm/components/Icons/collection/CloudDeploy.d.ts.map +1 -0
  25. package/dist/esm/components/Icons/collection/CloudDeploy.js +46 -0
  26. package/dist/esm/components/Icons/collection/CloudDeploy.js.map +1 -0
  27. package/dist/esm/components/Icons/collection/CloudDeployFailed.d.ts +17 -0
  28. package/dist/esm/components/Icons/collection/CloudDeployFailed.d.ts.map +1 -0
  29. package/dist/esm/components/Icons/collection/CloudDeployFailed.js +46 -0
  30. package/dist/esm/components/Icons/collection/CloudDeployFailed.js.map +1 -0
  31. package/dist/esm/components/Icons/collection/Gear.d.ts +15 -0
  32. package/dist/esm/components/Icons/collection/Gear.d.ts.map +1 -0
  33. package/dist/esm/components/Icons/collection/Gear.js +42 -0
  34. package/dist/esm/components/Icons/collection/Gear.js.map +1 -0
  35. package/dist/esm/components/Icons/collection/GearFailed.d.ts +17 -0
  36. package/dist/esm/components/Icons/collection/GearFailed.d.ts.map +1 -0
  37. package/dist/esm/components/Icons/collection/GearFailed.js +68 -0
  38. package/dist/esm/components/Icons/collection/GearFailed.js.map +1 -0
  39. package/dist/esm/components/Icons/collection/GitMerge.d.ts +17 -0
  40. package/dist/esm/components/Icons/collection/GitMerge.d.ts.map +1 -0
  41. package/dist/esm/components/Icons/collection/GitMerge.js +50 -0
  42. package/dist/esm/components/Icons/collection/GitMerge.js.map +1 -0
  43. package/dist/esm/components/Icons/collection/GitPullRequestClosed.js +8 -8
  44. package/dist/esm/components/Icons/collection/GitPullRequestClosed.js.map +1 -1
  45. package/dist/esm/components/Icons/collection/index.d.ts +6 -0
  46. package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
  47. package/dist/esm/components/Icons/collection/index.js +6 -0
  48. package/dist/esm/components/Icons/collection/index.js.map +1 -1
  49. package/dist/esm/presentation/shared/SourceCodeSection.d.ts +8 -1
  50. package/dist/esm/presentation/shared/SourceCodeSection.d.ts.map +1 -1
  51. package/dist/esm/presentation/shared/SourceCodeSection.js +271 -84
  52. package/dist/esm/presentation/shared/SourceCodeSection.js.map +1 -1
  53. package/dist/index.js +545 -268
  54. package/dist/index.js.map +1 -1
  55. package/dist/index.min.js +1 -1
  56. package/dist/index.min.js.map +1 -1
  57. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -189,7 +189,7 @@
189
189
  })(["display:inline-flex;svg{margin:0 4px;}"]);
190
190
  StyledButtonElement.displayName = "StyledButtonElement";
191
191
 
192
- var _excluded$5e = ["children", "active", "variant", "size", "className"];
192
+ var _excluded$5k = ["children", "active", "variant", "size", "className"];
193
193
  /**
194
194
  * @component Button
195
195
  * @description
@@ -219,7 +219,7 @@
219
219
  _ref$size = _ref.size,
220
220
  size = _ref$size === void 0 ? "medium" : _ref$size,
221
221
  className = _ref.className,
222
- args = _objectWithoutProperties(_ref, _excluded$5e);
222
+ args = _objectWithoutProperties(_ref, _excluded$5k);
223
223
  return /*#__PURE__*/React__default["default"].createElement(StyledButton$2, _extends({
224
224
  className: classNames__default["default"]("c-btn", className, {
225
225
  "c-btn--contained": variant === "primary" || variant === "contained",
@@ -284,7 +284,7 @@
284
284
  })));
285
285
  };
286
286
 
287
- var _excluded$5d = ["gradient"];
287
+ var _excluded$5j = ["gradient"];
288
288
 
289
289
  /**
290
290
  * @component AddCrossTinyIcon
@@ -314,7 +314,7 @@
314
314
  */
315
315
  var AddCrossTinyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
316
316
  var gradient = _ref.gradient,
317
- props = _objectWithoutProperties(_ref, _excluded$5d);
317
+ props = _objectWithoutProperties(_ref, _excluded$5j);
318
318
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
319
319
  xmlns: "http://www.w3.org/2000/svg",
320
320
  width: 24,
@@ -334,12 +334,12 @@
334
334
  AddCrossTinyIcon.displayName = "AddCrossTinyIcon";
335
335
  var AddCrossTinyIcon$1 = AddCrossTinyIcon;
336
336
 
337
- var _excluded$5c = ["className", "disabled"];
337
+ var _excluded$5i = ["className", "disabled"];
338
338
  var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
339
339
  var className = _ref.className,
340
340
  _ref$disabled = _ref.disabled,
341
341
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
342
- rest = _objectWithoutProperties(_ref, _excluded$5c);
342
+ rest = _objectWithoutProperties(_ref, _excluded$5i);
343
343
  return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
344
344
  ref: ref,
345
345
  variant: "contained",
@@ -377,12 +377,12 @@
377
377
  });
378
378
  StyledButtonGroup$1.displayName = "StyledButtonGroup";
379
379
 
380
- var _excluded$5b = ["children", "className", "invalid"];
380
+ var _excluded$5h = ["children", "className", "invalid"];
381
381
  var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
382
382
  var children = _ref.children,
383
383
  className = _ref.className,
384
384
  invalid = _ref.invalid,
385
- rest = _objectWithoutProperties(_ref, _excluded$5b);
385
+ rest = _objectWithoutProperties(_ref, _excluded$5h);
386
386
  return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
387
387
  ref: ref,
388
388
  className: classNames__default["default"]("c-btn-group", className),
@@ -407,11 +407,11 @@
407
407
  })(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
408
408
  StyledListSeparator$1.displayName = "StyledListSeparator";
409
409
 
410
- var _excluded$5a = ["children", "className"];
410
+ var _excluded$5g = ["children", "className"];
411
411
  var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
412
412
  var children = _ref.children,
413
413
  className = _ref.className,
414
- props = _objectWithoutProperties(_ref, _excluded$5a);
414
+ props = _objectWithoutProperties(_ref, _excluded$5g);
415
415
  return /*#__PURE__*/React__default["default"].createElement(StyledListItem$1, _extends({
416
416
  className: classNames__default["default"]("c-list-item", className),
417
417
  ref: ref,
@@ -420,21 +420,21 @@
420
420
  });
421
421
  ListItem.displayName = "ListItem";
422
422
 
423
- var _excluded$59 = ["className"];
423
+ var _excluded$5f = ["className"];
424
424
  var ListSeparator = function ListSeparator(_ref) {
425
425
  var className = _ref.className,
426
- props = _objectWithoutProperties(_ref, _excluded$59);
426
+ props = _objectWithoutProperties(_ref, _excluded$5f);
427
427
  return /*#__PURE__*/React__default["default"].createElement(StyledListSeparator$1, _extends({
428
428
  className: classNames__default["default"]("c-list-separator", className)
429
429
  }, props));
430
430
  };
431
431
  ListSeparator.displayName = "ListSeparator";
432
432
 
433
- var _excluded$58 = ["children", "className"];
433
+ var _excluded$5e = ["children", "className"];
434
434
  var _List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
435
435
  var children = _ref.children,
436
436
  className = _ref.className,
437
- props = _objectWithoutProperties(_ref, _excluded$58);
437
+ props = _objectWithoutProperties(_ref, _excluded$5e);
438
438
  return /*#__PURE__*/React__default["default"].createElement(StyledList$1, _extends({
439
439
  className: className,
440
440
  ref: ref,
@@ -950,7 +950,7 @@
950
950
  return size === "big" && styled.css(["width:40px;"]);
951
951
  });
952
952
 
953
- var _excluded$57 = ["children", "className", "variant", "size", "active"];
953
+ var _excluded$5d = ["children", "className", "variant", "size", "active"];
954
954
 
955
955
  // eslint-disable-next-line @typescript-eslint/no-empty-interface
956
956
 
@@ -980,7 +980,7 @@
980
980
  variant = _ref.variant,
981
981
  size = _ref.size,
982
982
  active = _ref.active,
983
- args = _objectWithoutProperties(_ref, _excluded$57);
983
+ args = _objectWithoutProperties(_ref, _excluded$5d);
984
984
  return /*#__PURE__*/React__default["default"].createElement(StyledIconButton$1, _extends({
985
985
  className: className,
986
986
  variant: variant,
@@ -991,7 +991,7 @@
991
991
  });
992
992
  IconButton.displayName = "IconButton";
993
993
 
994
- var _excluded$56 = ["gradient"];
994
+ var _excluded$5c = ["gradient"];
995
995
 
996
996
  /**
997
997
  * @component RecurringIcon
@@ -1021,7 +1021,7 @@
1021
1021
  */
1022
1022
  var RecurringIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1023
1023
  var gradient = _ref.gradient,
1024
- props = _objectWithoutProperties(_ref, _excluded$56);
1024
+ props = _objectWithoutProperties(_ref, _excluded$5c);
1025
1025
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1026
1026
  xmlns: "http://www.w3.org/2000/svg",
1027
1027
  width: 18,
@@ -1042,7 +1042,7 @@
1042
1042
  RecurringIcon.displayName = "RecurringIcon";
1043
1043
  var RecurringIcon$1 = RecurringIcon;
1044
1044
 
1045
- var _excluded$55 = ["gradient"];
1045
+ var _excluded$5b = ["gradient"];
1046
1046
 
1047
1047
  /**
1048
1048
  * @component AccessLogIcon
@@ -1072,7 +1072,7 @@
1072
1072
  */
1073
1073
  var AccessLogIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1074
1074
  var gradient = _ref.gradient,
1075
- props = _objectWithoutProperties(_ref, _excluded$55);
1075
+ props = _objectWithoutProperties(_ref, _excluded$5b);
1076
1076
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1077
1077
  xmlns: "http://www.w3.org/2000/svg",
1078
1078
  width: 24,
@@ -1100,7 +1100,7 @@
1100
1100
  AccessLogIcon.displayName = "AccessLogIcon";
1101
1101
  var AccessLogIcon$1 = AccessLogIcon;
1102
1102
 
1103
- var _excluded$54 = ["gradient"];
1103
+ var _excluded$5a = ["gradient"];
1104
1104
 
1105
1105
  /**
1106
1106
  * @component ActivityIcon
@@ -1130,7 +1130,7 @@
1130
1130
  */
1131
1131
  var ActivityIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1132
1132
  var gradient = _ref.gradient,
1133
- props = _objectWithoutProperties(_ref, _excluded$54);
1133
+ props = _objectWithoutProperties(_ref, _excluded$5a);
1134
1134
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1135
1135
  xmlns: "http://www.w3.org/2000/svg",
1136
1136
  width: 24,
@@ -1154,7 +1154,7 @@
1154
1154
  ActivityIcon.displayName = "ActivityIcon";
1155
1155
  var ActivityIcon$1 = ActivityIcon;
1156
1156
 
1157
- var _excluded$53 = ["gradient"];
1157
+ var _excluded$59 = ["gradient"];
1158
1158
 
1159
1159
  /**
1160
1160
  * @component AddCrossIcon
@@ -1184,7 +1184,7 @@
1184
1184
  */
1185
1185
  var AddCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1186
1186
  var gradient = _ref.gradient,
1187
- props = _objectWithoutProperties(_ref, _excluded$53);
1187
+ props = _objectWithoutProperties(_ref, _excluded$59);
1188
1188
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1189
1189
  xmlns: "http://www.w3.org/2000/svg",
1190
1190
  width: 10,
@@ -1204,7 +1204,7 @@
1204
1204
  AddCrossIcon.displayName = "AddCrossIcon";
1205
1205
  var AddCrossIcon$1 = AddCrossIcon;
1206
1206
 
1207
- var _excluded$52 = ["gradient"];
1207
+ var _excluded$58 = ["gradient"];
1208
1208
 
1209
1209
  /**
1210
1210
  * @component ArchiveIcon
@@ -1234,7 +1234,7 @@
1234
1234
  */
1235
1235
  var ArchiveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1236
1236
  var gradient = _ref.gradient,
1237
- props = _objectWithoutProperties(_ref, _excluded$52);
1237
+ props = _objectWithoutProperties(_ref, _excluded$58);
1238
1238
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1239
1239
  xmlns: "http://www.w3.org/2000/svg",
1240
1240
  width: 24,
@@ -1255,7 +1255,7 @@
1255
1255
  ArchiveIcon.displayName = "ArchiveIcon";
1256
1256
  var ArchiveIcon$1 = ArchiveIcon;
1257
1257
 
1258
- var _excluded$51 = ["gradient"];
1258
+ var _excluded$57 = ["gradient"];
1259
1259
 
1260
1260
  /**
1261
1261
  * @component ArrowBackMobileIcon
@@ -1285,7 +1285,7 @@
1285
1285
  */
1286
1286
  var ArrowBackMobileIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1287
1287
  var gradient = _ref.gradient,
1288
- props = _objectWithoutProperties(_ref, _excluded$51);
1288
+ props = _objectWithoutProperties(_ref, _excluded$57);
1289
1289
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1290
1290
  xmlns: "http://www.w3.org/2000/svg",
1291
1291
  width: 24,
@@ -1306,7 +1306,7 @@
1306
1306
  ArrowBackMobileIcon.displayName = "ArrowBackMobileIcon";
1307
1307
  var ArrowBackMobileIcon$1 = ArrowBackMobileIcon;
1308
1308
 
1309
- var _excluded$50 = ["gradient"];
1309
+ var _excluded$56 = ["gradient"];
1310
1310
 
1311
1311
  /**
1312
1312
  * @component ArrowCollapseMultipleIcon
@@ -1336,7 +1336,7 @@
1336
1336
  */
1337
1337
  var ArrowCollapseMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1338
1338
  var gradient = _ref.gradient,
1339
- props = _objectWithoutProperties(_ref, _excluded$50);
1339
+ props = _objectWithoutProperties(_ref, _excluded$56);
1340
1340
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1341
1341
  xmlns: "http://www.w3.org/2000/svg",
1342
1342
  width: 24,
@@ -1356,7 +1356,7 @@
1356
1356
  ArrowCollapseMultipleIcon.displayName = "ArrowCollapseMultipleIcon";
1357
1357
  var ArrowCollapseMultipleIcon$1 = ArrowCollapseMultipleIcon;
1358
1358
 
1359
- var _excluded$4$ = ["gradient"];
1359
+ var _excluded$55 = ["gradient"];
1360
1360
 
1361
1361
  /**
1362
1362
  * @component ArrowDownLongIcon
@@ -1386,7 +1386,7 @@
1386
1386
  */
1387
1387
  var ArrowDownLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1388
1388
  var gradient = _ref.gradient,
1389
- props = _objectWithoutProperties(_ref, _excluded$4$);
1389
+ props = _objectWithoutProperties(_ref, _excluded$55);
1390
1390
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1391
1391
  xmlns: "http://www.w3.org/2000/svg",
1392
1392
  width: 24,
@@ -1406,7 +1406,7 @@
1406
1406
  ArrowDownLongIcon.displayName = "ArrowDownLongIcon";
1407
1407
  var ArrowDownLongIcon$1 = ArrowDownLongIcon;
1408
1408
 
1409
- var _excluded$4_ = ["gradient"];
1409
+ var _excluded$54 = ["gradient"];
1410
1410
 
1411
1411
  /**
1412
1412
  * @component ArrowDownSmallIcon
@@ -1436,7 +1436,7 @@
1436
1436
  */
1437
1437
  var ArrowDownSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1438
1438
  var gradient = _ref.gradient,
1439
- props = _objectWithoutProperties(_ref, _excluded$4_);
1439
+ props = _objectWithoutProperties(_ref, _excluded$54);
1440
1440
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1441
1441
  xmlns: "http://www.w3.org/2000/svg",
1442
1442
  width: 16,
@@ -1456,7 +1456,7 @@
1456
1456
  ArrowDownSmallIcon.displayName = "ArrowDownSmallIcon";
1457
1457
  var ArrowDownSmallIcon$1 = ArrowDownSmallIcon;
1458
1458
 
1459
- var _excluded$4Z = ["gradient"];
1459
+ var _excluded$53 = ["gradient"];
1460
1460
 
1461
1461
  /**
1462
1462
  * @component ArrowDownIcon
@@ -1486,7 +1486,7 @@
1486
1486
  */
1487
1487
  var ArrowDownIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1488
1488
  var gradient = _ref.gradient,
1489
- props = _objectWithoutProperties(_ref, _excluded$4Z);
1489
+ props = _objectWithoutProperties(_ref, _excluded$53);
1490
1490
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1491
1491
  xmlns: "http://www.w3.org/2000/svg",
1492
1492
  width: 24,
@@ -1505,7 +1505,7 @@
1505
1505
  ArrowDownIcon.displayName = "ArrowDownIcon";
1506
1506
  var ArrowDownIcon$1 = ArrowDownIcon;
1507
1507
 
1508
- var _excluded$4Y = ["gradient"];
1508
+ var _excluded$52 = ["gradient"];
1509
1509
 
1510
1510
  /**
1511
1511
  * @component ArrowExpandeMultipleIcon
@@ -1535,7 +1535,7 @@
1535
1535
  */
1536
1536
  var ArrowExpandeMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1537
1537
  var gradient = _ref.gradient,
1538
- props = _objectWithoutProperties(_ref, _excluded$4Y);
1538
+ props = _objectWithoutProperties(_ref, _excluded$52);
1539
1539
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1540
1540
  xmlns: "http://www.w3.org/2000/svg",
1541
1541
  width: 24,
@@ -1555,7 +1555,7 @@
1555
1555
  ArrowExpandeMultipleIcon.displayName = "ArrowExpandeMultipleIcon";
1556
1556
  var ArrowExpandeMultipleIcon$1 = ArrowExpandeMultipleIcon;
1557
1557
 
1558
- var _excluded$4X = ["gradient"];
1558
+ var _excluded$51 = ["gradient"];
1559
1559
 
1560
1560
  /**
1561
1561
  * @component ArrowLeftBoxIcon
@@ -1585,7 +1585,7 @@
1585
1585
  */
1586
1586
  var ArrowLeftBoxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1587
1587
  var gradient = _ref.gradient,
1588
- props = _objectWithoutProperties(_ref, _excluded$4X);
1588
+ props = _objectWithoutProperties(_ref, _excluded$51);
1589
1589
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1590
1590
  xmlns: "http://www.w3.org/2000/svg",
1591
1591
  width: 24,
@@ -1605,7 +1605,7 @@
1605
1605
  ArrowLeftBoxIcon.displayName = "ArrowLeftBoxIcon";
1606
1606
  var ArrowLeftBoxIcon$1 = ArrowLeftBoxIcon;
1607
1607
 
1608
- var _excluded$4W = ["gradient"];
1608
+ var _excluded$50 = ["gradient"];
1609
1609
 
1610
1610
  /**
1611
1611
  * @component ArrowLeftIcon
@@ -1635,7 +1635,7 @@
1635
1635
  */
1636
1636
  var ArrowLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1637
1637
  var gradient = _ref.gradient,
1638
- props = _objectWithoutProperties(_ref, _excluded$4W);
1638
+ props = _objectWithoutProperties(_ref, _excluded$50);
1639
1639
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1640
1640
  xmlns: "http://www.w3.org/2000/svg",
1641
1641
  width: 24,
@@ -1655,7 +1655,7 @@
1655
1655
  ArrowLeftIcon.displayName = "ArrowLeftIcon";
1656
1656
  var ArrowLeftIcon$1 = ArrowLeftIcon;
1657
1657
 
1658
- var _excluded$4V = ["gradient"];
1658
+ var _excluded$4$ = ["gradient"];
1659
1659
 
1660
1660
  /**
1661
1661
  * @component ArrowRefreshIcon
@@ -1685,7 +1685,7 @@
1685
1685
  */
1686
1686
  var ArrowRefreshIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1687
1687
  var gradient = _ref.gradient,
1688
- props = _objectWithoutProperties(_ref, _excluded$4V);
1688
+ props = _objectWithoutProperties(_ref, _excluded$4$);
1689
1689
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1690
1690
  xmlns: "http://www.w3.org/2000/svg",
1691
1691
  width: 24,
@@ -1706,7 +1706,7 @@
1706
1706
  ArrowRefreshIcon.displayName = "ArrowRefreshIcon";
1707
1707
  var ArrowRefreshIcon$1 = ArrowRefreshIcon;
1708
1708
 
1709
- var _excluded$4U = ["gradient"];
1709
+ var _excluded$4_ = ["gradient"];
1710
1710
 
1711
1711
  /**
1712
1712
  * @component ArrowRestoreIcon
@@ -1736,7 +1736,7 @@
1736
1736
  */
1737
1737
  var ArrowRestoreIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1738
1738
  var gradient = _ref.gradient,
1739
- props = _objectWithoutProperties(_ref, _excluded$4U);
1739
+ props = _objectWithoutProperties(_ref, _excluded$4_);
1740
1740
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1741
1741
  xmlns: "http://www.w3.org/2000/svg",
1742
1742
  width: 24,
@@ -1756,7 +1756,7 @@
1756
1756
  ArrowRestoreIcon.displayName = "ArrowRestoreIcon";
1757
1757
  var ArrowRestoreIcon$1 = ArrowRestoreIcon;
1758
1758
 
1759
- var _excluded$4T = ["gradient"];
1759
+ var _excluded$4Z = ["gradient"];
1760
1760
 
1761
1761
  /**
1762
1762
  * @component ArrowRightIcon
@@ -1786,7 +1786,7 @@
1786
1786
  */
1787
1787
  var ArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1788
1788
  var gradient = _ref.gradient,
1789
- props = _objectWithoutProperties(_ref, _excluded$4T);
1789
+ props = _objectWithoutProperties(_ref, _excluded$4Z);
1790
1790
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1791
1791
  xmlns: "http://www.w3.org/2000/svg",
1792
1792
  width: 24,
@@ -1806,7 +1806,7 @@
1806
1806
  ArrowRightIcon.displayName = "ArrowRightIcon";
1807
1807
  var ArrowRightIcon$1 = ArrowRightIcon;
1808
1808
 
1809
- var _excluded$4S = ["gradient"];
1809
+ var _excluded$4Y = ["gradient"];
1810
1810
 
1811
1811
  /**
1812
1812
  * @component ArrowUpLongIcon
@@ -1836,7 +1836,7 @@
1836
1836
  */
1837
1837
  var ArrowUpLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1838
1838
  var gradient = _ref.gradient,
1839
- props = _objectWithoutProperties(_ref, _excluded$4S);
1839
+ props = _objectWithoutProperties(_ref, _excluded$4Y);
1840
1840
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1841
1841
  xmlns: "http://www.w3.org/2000/svg",
1842
1842
  width: 24,
@@ -1856,7 +1856,7 @@
1856
1856
  ArrowUpLongIcon.displayName = "ArrowUpLongIcon";
1857
1857
  var ArrowUpLongIcon$1 = ArrowUpLongIcon;
1858
1858
 
1859
- var _excluded$4R = ["gradient"];
1859
+ var _excluded$4X = ["gradient"];
1860
1860
 
1861
1861
  /**
1862
1862
  * @component ArrowUpIcon
@@ -1886,7 +1886,7 @@
1886
1886
  */
1887
1887
  var ArrowUpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1888
1888
  var gradient = _ref.gradient,
1889
- props = _objectWithoutProperties(_ref, _excluded$4R);
1889
+ props = _objectWithoutProperties(_ref, _excluded$4X);
1890
1890
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1891
1891
  xmlns: "http://www.w3.org/2000/svg",
1892
1892
  width: 24,
@@ -1905,7 +1905,7 @@
1905
1905
  ArrowUpIcon.displayName = "ArrowUpIcon";
1906
1906
  var ArrowUpIcon$1 = ArrowUpIcon;
1907
1907
 
1908
- var _excluded$4Q = ["gradient"];
1908
+ var _excluded$4W = ["gradient"];
1909
1909
 
1910
1910
  /**
1911
1911
  * @component AssignIcon
@@ -1935,7 +1935,7 @@
1935
1935
  */
1936
1936
  var AssignIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1937
1937
  var gradient = _ref.gradient,
1938
- props = _objectWithoutProperties(_ref, _excluded$4Q);
1938
+ props = _objectWithoutProperties(_ref, _excluded$4W);
1939
1939
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1940
1940
  xmlns: "http://www.w3.org/2000/svg",
1941
1941
  width: 24,
@@ -1955,7 +1955,7 @@
1955
1955
  AssignIcon.displayName = "AssignIcon";
1956
1956
  var AssignIcon$1 = AssignIcon;
1957
1957
 
1958
- var _excluded$4P = ["gradient"];
1958
+ var _excluded$4V = ["gradient"];
1959
1959
 
1960
1960
  /**
1961
1961
  * @component AttachmentIcon
@@ -1985,7 +1985,7 @@
1985
1985
  */
1986
1986
  var AttachmentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1987
1987
  var gradient = _ref.gradient,
1988
- props = _objectWithoutProperties(_ref, _excluded$4P);
1988
+ props = _objectWithoutProperties(_ref, _excluded$4V);
1989
1989
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1990
1990
  xmlns: "http://www.w3.org/2000/svg",
1991
1991
  width: 24,
@@ -2005,7 +2005,7 @@
2005
2005
  AttachmentIcon.displayName = "AttachmentIcon";
2006
2006
  var AttachmentIcon$1 = AttachmentIcon;
2007
2007
 
2008
- var _excluded$4O = ["gradient"];
2008
+ var _excluded$4U = ["gradient"];
2009
2009
 
2010
2010
  /**
2011
2011
  * @component BellOffSmallIcon
@@ -2035,7 +2035,7 @@
2035
2035
  */
2036
2036
  var BellOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2037
2037
  var gradient = _ref.gradient,
2038
- props = _objectWithoutProperties(_ref, _excluded$4O);
2038
+ props = _objectWithoutProperties(_ref, _excluded$4U);
2039
2039
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2040
2040
  xmlns: "http://www.w3.org/2000/svg",
2041
2041
  width: 12,
@@ -2055,7 +2055,7 @@
2055
2055
  BellOffSmallIcon.displayName = "BellOffSmallIcon";
2056
2056
  var BellOffSmallIcon$1 = BellOffSmallIcon;
2057
2057
 
2058
- var _excluded$4N = ["gradient"];
2058
+ var _excluded$4T = ["gradient"];
2059
2059
 
2060
2060
  /**
2061
2061
  * @component BellOffIcon
@@ -2085,7 +2085,7 @@
2085
2085
  */
2086
2086
  var BellOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2087
2087
  var gradient = _ref.gradient,
2088
- props = _objectWithoutProperties(_ref, _excluded$4N);
2088
+ props = _objectWithoutProperties(_ref, _excluded$4T);
2089
2089
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2090
2090
  xmlns: "http://www.w3.org/2000/svg",
2091
2091
  width: 24,
@@ -2105,7 +2105,7 @@
2105
2105
  BellOffIcon.displayName = "BellOffIcon";
2106
2106
  var BellOffIcon$1 = BellOffIcon;
2107
2107
 
2108
- var _excluded$4M = ["gradient"];
2108
+ var _excluded$4S = ["gradient"];
2109
2109
 
2110
2110
  /**
2111
2111
  * @component BillingIcon
@@ -2135,7 +2135,7 @@
2135
2135
  */
2136
2136
  var BillingIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2137
2137
  var gradient = _ref.gradient,
2138
- props = _objectWithoutProperties(_ref, _excluded$4M);
2138
+ props = _objectWithoutProperties(_ref, _excluded$4S);
2139
2139
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2140
2140
  xmlns: "http://www.w3.org/2000/svg",
2141
2141
  width: 24,
@@ -2158,7 +2158,7 @@
2158
2158
  BillingIcon.displayName = "BillingIcon";
2159
2159
  var BillingIcon$1 = BillingIcon;
2160
2160
 
2161
- var _excluded$4L = ["gradient"];
2161
+ var _excluded$4R = ["gradient"];
2162
2162
 
2163
2163
  /**
2164
2164
  * @component BudgetAlertIcon
@@ -2188,7 +2188,7 @@
2188
2188
  */
2189
2189
  var BudgetAlertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2190
2190
  var gradient = _ref.gradient,
2191
- props = _objectWithoutProperties(_ref, _excluded$4L);
2191
+ props = _objectWithoutProperties(_ref, _excluded$4R);
2192
2192
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2193
2193
  xmlns: "http://www.w3.org/2000/svg",
2194
2194
  width: 24,
@@ -2208,7 +2208,7 @@
2208
2208
  BudgetAlertIcon.displayName = "BudgetAlertIcon";
2209
2209
  var BudgetAlertIcon$1 = BudgetAlertIcon;
2210
2210
 
2211
- var _excluded$4K = ["gradient"];
2211
+ var _excluded$4Q = ["gradient"];
2212
2212
 
2213
2213
  /**
2214
2214
  * @component BulbIcon
@@ -2238,7 +2238,7 @@
2238
2238
  */
2239
2239
  var BulbIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2240
2240
  var gradient = _ref.gradient,
2241
- props = _objectWithoutProperties(_ref, _excluded$4K);
2241
+ props = _objectWithoutProperties(_ref, _excluded$4Q);
2242
2242
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2243
2243
  xmlns: "http://www.w3.org/2000/svg",
2244
2244
  width: 16,
@@ -2257,7 +2257,7 @@
2257
2257
  BulbIcon.displayName = "BulbIcon";
2258
2258
  var BulbIcon$1 = BulbIcon;
2259
2259
 
2260
- var _excluded$4J = ["gradient"];
2260
+ var _excluded$4P = ["gradient"];
2261
2261
 
2262
2262
  /**
2263
2263
  * @component CalendarAddXIcon
@@ -2287,7 +2287,7 @@
2287
2287
  */
2288
2288
  var CalendarAddXIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2289
2289
  var gradient = _ref.gradient,
2290
- props = _objectWithoutProperties(_ref, _excluded$4J);
2290
+ props = _objectWithoutProperties(_ref, _excluded$4P);
2291
2291
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2292
2292
  xmlns: "http://www.w3.org/2000/svg",
2293
2293
  width: 24,
@@ -2307,7 +2307,7 @@
2307
2307
  CalendarAddXIcon.displayName = "CalendarAddXIcon";
2308
2308
  var CalendarAddXIcon$1 = CalendarAddXIcon;
2309
2309
 
2310
- var _excluded$4I = ["gradient"];
2310
+ var _excluded$4O = ["gradient"];
2311
2311
 
2312
2312
  /**
2313
2313
  * @component CalendarImportIcon
@@ -2337,7 +2337,7 @@
2337
2337
  */
2338
2338
  var CalendarImportIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2339
2339
  var gradient = _ref.gradient,
2340
- props = _objectWithoutProperties(_ref, _excluded$4I);
2340
+ props = _objectWithoutProperties(_ref, _excluded$4O);
2341
2341
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2342
2342
  xmlns: "http://www.w3.org/2000/svg",
2343
2343
  width: 18,
@@ -2360,7 +2360,7 @@
2360
2360
  CalendarImportIcon.displayName = "CalendarImportIcon";
2361
2361
  var CalendarImportIcon$1 = CalendarImportIcon;
2362
2362
 
2363
- var _excluded$4H = ["gradient"];
2363
+ var _excluded$4N = ["gradient"];
2364
2364
 
2365
2365
  /**
2366
2366
  * @component CalendarIcon
@@ -2390,7 +2390,7 @@
2390
2390
  */
2391
2391
  var CalendarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2392
2392
  var gradient = _ref.gradient,
2393
- props = _objectWithoutProperties(_ref, _excluded$4H);
2393
+ props = _objectWithoutProperties(_ref, _excluded$4N);
2394
2394
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2395
2395
  xmlns: "http://www.w3.org/2000/svg",
2396
2396
  width: 24,
@@ -2410,7 +2410,7 @@
2410
2410
  CalendarIcon.displayName = "CalendarIcon";
2411
2411
  var CalendarIcon$1 = CalendarIcon;
2412
2412
 
2413
- var _excluded$4G = ["gradient"];
2413
+ var _excluded$4M = ["gradient"];
2414
2414
 
2415
2415
  /**
2416
2416
  * @component CancelCrossIcon
@@ -2440,7 +2440,7 @@
2440
2440
  */
2441
2441
  var CancelCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2442
2442
  var gradient = _ref.gradient,
2443
- props = _objectWithoutProperties(_ref, _excluded$4G);
2443
+ props = _objectWithoutProperties(_ref, _excluded$4M);
2444
2444
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2445
2445
  xmlns: "http://www.w3.org/2000/svg",
2446
2446
  width: 24,
@@ -2460,7 +2460,7 @@
2460
2460
  CancelCrossIcon.displayName = "CancelCrossIcon";
2461
2461
  var CancelCrossIcon$1 = CancelCrossIcon;
2462
2462
 
2463
- var _excluded$4F = ["gradient"];
2463
+ var _excluded$4L = ["gradient"];
2464
2464
 
2465
2465
  /**
2466
2466
  * @component CaretLeftIcon
@@ -2490,7 +2490,7 @@
2490
2490
  */
2491
2491
  var CaretLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2492
2492
  var gradient = _ref.gradient,
2493
- props = _objectWithoutProperties(_ref, _excluded$4F);
2493
+ props = _objectWithoutProperties(_ref, _excluded$4L);
2494
2494
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2495
2495
  xmlns: "http://www.w3.org/2000/svg",
2496
2496
  width: 18,
@@ -2510,7 +2510,7 @@
2510
2510
  CaretLeftIcon.displayName = "CaretLeftIcon";
2511
2511
  var CaretLeftIcon$1 = CaretLeftIcon;
2512
2512
 
2513
- var _excluded$4E = ["gradient"];
2513
+ var _excluded$4K = ["gradient"];
2514
2514
 
2515
2515
  /**
2516
2516
  * @component CaretRightIcon
@@ -2540,7 +2540,7 @@
2540
2540
  */
2541
2541
  var CaretRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2542
2542
  var gradient = _ref.gradient,
2543
- props = _objectWithoutProperties(_ref, _excluded$4E);
2543
+ props = _objectWithoutProperties(_ref, _excluded$4K);
2544
2544
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2545
2545
  xmlns: "http://www.w3.org/2000/svg",
2546
2546
  width: 18,
@@ -2560,7 +2560,7 @@
2560
2560
  CaretRightIcon.displayName = "CaretRightIcon";
2561
2561
  var CaretRightIcon$1 = CaretRightIcon;
2562
2562
 
2563
- var _excluded$4D = ["gradient"];
2563
+ var _excluded$4J = ["gradient"];
2564
2564
 
2565
2565
  /**
2566
2566
  * @component ChatIcon
@@ -2590,7 +2590,7 @@
2590
2590
  */
2591
2591
  var ChatIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2592
2592
  var gradient = _ref.gradient,
2593
- props = _objectWithoutProperties(_ref, _excluded$4D);
2593
+ props = _objectWithoutProperties(_ref, _excluded$4J);
2594
2594
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2595
2595
  xmlns: "http://www.w3.org/2000/svg",
2596
2596
  width: 24,
@@ -2610,7 +2610,7 @@
2610
2610
  ChatIcon.displayName = "ChatIcon";
2611
2611
  var ChatIcon$1 = ChatIcon;
2612
2612
 
2613
- var _excluded$4C = ["gradient"];
2613
+ var _excluded$4I = ["gradient"];
2614
2614
 
2615
2615
  /**
2616
2616
  * @component CheckIcon
@@ -2640,7 +2640,7 @@
2640
2640
  */
2641
2641
  var CheckIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2642
2642
  var gradient = _ref.gradient,
2643
- props = _objectWithoutProperties(_ref, _excluded$4C);
2643
+ props = _objectWithoutProperties(_ref, _excluded$4I);
2644
2644
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2645
2645
  xmlns: "http://www.w3.org/2000/svg",
2646
2646
  width: 24,
@@ -2660,7 +2660,7 @@
2660
2660
  CheckIcon.displayName = "CheckIcon";
2661
2661
  var CheckIcon$1 = CheckIcon;
2662
2662
 
2663
- var _excluded$4B = ["gradient"];
2663
+ var _excluded$4H = ["gradient"];
2664
2664
 
2665
2665
  /**
2666
2666
  * @component CheckboxBlankTogglerIcon
@@ -2690,7 +2690,7 @@
2690
2690
  */
2691
2691
  var CheckboxBlankTogglerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2692
2692
  var gradient = _ref.gradient,
2693
- props = _objectWithoutProperties(_ref, _excluded$4B);
2693
+ props = _objectWithoutProperties(_ref, _excluded$4H);
2694
2694
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2695
2695
  xmlns: "http://www.w3.org/2000/svg",
2696
2696
  width: 24,
@@ -2710,7 +2710,7 @@
2710
2710
  CheckboxBlankTogglerIcon.displayName = "CheckboxBlankTogglerIcon";
2711
2711
  var CheckboxBlankTogglerIcon$1 = CheckboxBlankTogglerIcon;
2712
2712
 
2713
- var _excluded$4A = ["gradient"];
2713
+ var _excluded$4G = ["gradient"];
2714
2714
 
2715
2715
  /**
2716
2716
  * @component CheckboxCircleArrowIcon
@@ -2740,7 +2740,7 @@
2740
2740
  */
2741
2741
  var CheckboxCircleArrowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2742
2742
  var gradient = _ref.gradient,
2743
- props = _objectWithoutProperties(_ref, _excluded$4A);
2743
+ props = _objectWithoutProperties(_ref, _excluded$4G);
2744
2744
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2745
2745
  xmlns: "http://www.w3.org/2000/svg",
2746
2746
  width: 24,
@@ -2760,7 +2760,7 @@
2760
2760
  CheckboxCircleArrowIcon.displayName = "CheckboxCircleArrowIcon";
2761
2761
  var CheckboxCircleArrowIcon$1 = CheckboxCircleArrowIcon;
2762
2762
 
2763
- var _excluded$4z = ["gradient"];
2763
+ var _excluded$4F = ["gradient"];
2764
2764
 
2765
2765
  /**
2766
2766
  * @component CheckboxCircleBlankIcon
@@ -2790,7 +2790,7 @@
2790
2790
  */
2791
2791
  var CheckboxCircleBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2792
2792
  var gradient = _ref.gradient,
2793
- props = _objectWithoutProperties(_ref, _excluded$4z);
2793
+ props = _objectWithoutProperties(_ref, _excluded$4F);
2794
2794
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2795
2795
  xmlns: "http://www.w3.org/2000/svg",
2796
2796
  width: 15,
@@ -2811,7 +2811,7 @@
2811
2811
  CheckboxCircleBlankIcon.displayName = "CheckboxCircleBlankIcon";
2812
2812
  var CheckboxCircleBlankIcon$1 = CheckboxCircleBlankIcon;
2813
2813
 
2814
- var _excluded$4y = ["gradient"];
2814
+ var _excluded$4E = ["gradient"];
2815
2815
 
2816
2816
  /**
2817
2817
  * @component CheckboxDocumentsIcon
@@ -2841,7 +2841,7 @@
2841
2841
  */
2842
2842
  var CheckboxDocumentsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2843
2843
  var gradient = _ref.gradient,
2844
- props = _objectWithoutProperties(_ref, _excluded$4y);
2844
+ props = _objectWithoutProperties(_ref, _excluded$4E);
2845
2845
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2846
2846
  xmlns: "http://www.w3.org/2000/svg",
2847
2847
  width: 24,
@@ -2861,7 +2861,7 @@
2861
2861
  CheckboxDocumentsIcon.displayName = "CheckboxDocumentsIcon";
2862
2862
  var CheckboxDocumentsIcon$1 = CheckboxDocumentsIcon;
2863
2863
 
2864
- var _excluded$4x = ["gradient"];
2864
+ var _excluded$4D = ["gradient"];
2865
2865
 
2866
2866
  /**
2867
2867
  * @component CheckboxIcon
@@ -2891,7 +2891,7 @@
2891
2891
  */
2892
2892
  var CheckboxIcon$2 = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2893
2893
  var gradient = _ref.gradient,
2894
- props = _objectWithoutProperties(_ref, _excluded$4x);
2894
+ props = _objectWithoutProperties(_ref, _excluded$4D);
2895
2895
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2896
2896
  xmlns: "http://www.w3.org/2000/svg",
2897
2897
  width: 16,
@@ -2921,7 +2921,7 @@
2921
2921
  CheckboxIcon$2.displayName = "CheckboxIcon";
2922
2922
  var CheckboxIcon$3 = CheckboxIcon$2;
2923
2923
 
2924
- var _excluded$4w = ["gradient"];
2924
+ var _excluded$4C = ["gradient"];
2925
2925
 
2926
2926
  /**
2927
2927
  * @component ChecklistSmallIcon
@@ -2951,7 +2951,7 @@
2951
2951
  */
2952
2952
  var ChecklistSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2953
2953
  var gradient = _ref.gradient,
2954
- props = _objectWithoutProperties(_ref, _excluded$4w);
2954
+ props = _objectWithoutProperties(_ref, _excluded$4C);
2955
2955
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2956
2956
  xmlns: "http://www.w3.org/2000/svg",
2957
2957
  width: 12,
@@ -2971,7 +2971,7 @@
2971
2971
  ChecklistSmallIcon.displayName = "ChecklistSmallIcon";
2972
2972
  var ChecklistSmallIcon$1 = ChecklistSmallIcon;
2973
2973
 
2974
- var _excluded$4v = ["gradient"];
2974
+ var _excluded$4B = ["gradient"];
2975
2975
 
2976
2976
  /**
2977
2977
  * @component ChecklistIcon
@@ -3001,7 +3001,7 @@
3001
3001
  */
3002
3002
  var ChecklistIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3003
3003
  var gradient = _ref.gradient,
3004
- props = _objectWithoutProperties(_ref, _excluded$4v);
3004
+ props = _objectWithoutProperties(_ref, _excluded$4B);
3005
3005
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3006
3006
  xmlns: "http://www.w3.org/2000/svg",
3007
3007
  width: 24,
@@ -3021,7 +3021,7 @@
3021
3021
  ChecklistIcon.displayName = "ChecklistIcon";
3022
3022
  var ChecklistIcon$1 = ChecklistIcon;
3023
3023
 
3024
- var _excluded$4u = ["gradient"];
3024
+ var _excluded$4A = ["gradient"];
3025
3025
 
3026
3026
  /**
3027
3027
  * @component CircleIcon
@@ -3051,7 +3051,7 @@
3051
3051
  */
3052
3052
  var CircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3053
3053
  var gradient = _ref.gradient,
3054
- props = _objectWithoutProperties(_ref, _excluded$4u);
3054
+ props = _objectWithoutProperties(_ref, _excluded$4A);
3055
3055
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3056
3056
  xmlns: "http://www.w3.org/2000/svg",
3057
3057
  width: 24,
@@ -3070,7 +3070,7 @@
3070
3070
  CircleIcon.displayName = "CircleIcon";
3071
3071
  var CircleIcon$1 = CircleIcon;
3072
3072
 
3073
- var _excluded$4t = ["gradient"];
3073
+ var _excluded$4z = ["gradient"];
3074
3074
 
3075
3075
  /**
3076
3076
  * @component CircleMultipleIcon
@@ -3100,7 +3100,7 @@
3100
3100
  */
3101
3101
  var CircleMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3102
3102
  var gradient = _ref.gradient,
3103
- props = _objectWithoutProperties(_ref, _excluded$4t);
3103
+ props = _objectWithoutProperties(_ref, _excluded$4z);
3104
3104
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3105
3105
  xmlns: "http://www.w3.org/2000/svg",
3106
3106
  width: 24,
@@ -3120,7 +3120,7 @@
3120
3120
  CircleMultipleIcon.displayName = "CircleMultipleIcon";
3121
3121
  var CircleMultipleIcon$1 = CircleMultipleIcon;
3122
3122
 
3123
- var _excluded$4s = ["gradient"];
3123
+ var _excluded$4y = ["gradient"];
3124
3124
 
3125
3125
  /**
3126
3126
  * @component ClockAddIcon
@@ -3150,7 +3150,7 @@
3150
3150
  */
3151
3151
  var ClockAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3152
3152
  var gradient = _ref.gradient,
3153
- props = _objectWithoutProperties(_ref, _excluded$4s);
3153
+ props = _objectWithoutProperties(_ref, _excluded$4y);
3154
3154
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3155
3155
  xmlns: "http://www.w3.org/2000/svg",
3156
3156
  width: 24,
@@ -3170,7 +3170,7 @@
3170
3170
  ClockAddIcon.displayName = "ClockAddIcon";
3171
3171
  var ClockAddIcon$1 = ClockAddIcon;
3172
3172
 
3173
- var _excluded$4r = ["gradient"];
3173
+ var _excluded$4x = ["gradient"];
3174
3174
 
3175
3175
  /**
3176
3176
  * @component ClockDollarIcon
@@ -3200,7 +3200,7 @@
3200
3200
  */
3201
3201
  var ClockDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3202
3202
  var gradient = _ref.gradient,
3203
- props = _objectWithoutProperties(_ref, _excluded$4r);
3203
+ props = _objectWithoutProperties(_ref, _excluded$4x);
3204
3204
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3205
3205
  xmlns: "http://www.w3.org/2000/svg",
3206
3206
  width: 24,
@@ -3223,7 +3223,7 @@
3223
3223
  ClockDollarIcon.displayName = "ClockDollarIcon";
3224
3224
  var ClockDollarIcon$1 = ClockDollarIcon;
3225
3225
 
3226
- var _excluded$4q = ["gradient"];
3226
+ var _excluded$4w = ["gradient"];
3227
3227
 
3228
3228
  /**
3229
3229
  * @component ClockSmallIcon
@@ -3253,7 +3253,7 @@
3253
3253
  */
3254
3254
  var ClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3255
3255
  var gradient = _ref.gradient,
3256
- props = _objectWithoutProperties(_ref, _excluded$4q);
3256
+ props = _objectWithoutProperties(_ref, _excluded$4w);
3257
3257
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3258
3258
  xmlns: "http://www.w3.org/2000/svg",
3259
3259
  width: 12,
@@ -3273,7 +3273,7 @@
3273
3273
  ClockSmallIcon.displayName = "ClockSmallIcon";
3274
3274
  var ClockSmallIcon$1 = ClockSmallIcon;
3275
3275
 
3276
- var _excluded$4p = ["gradient"];
3276
+ var _excluded$4v = ["gradient"];
3277
3277
 
3278
3278
  /**
3279
3279
  * @component ClockStopwatchIndicatorIcon
@@ -3303,7 +3303,7 @@
3303
3303
  */
3304
3304
  var ClockStopwatchIndicatorIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3305
3305
  var gradient = _ref.gradient,
3306
- props = _objectWithoutProperties(_ref, _excluded$4p);
3306
+ props = _objectWithoutProperties(_ref, _excluded$4v);
3307
3307
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3308
3308
  xmlns: "http://www.w3.org/2000/svg",
3309
3309
  width: 24,
@@ -3324,7 +3324,7 @@
3324
3324
  ClockStopwatchIndicatorIcon.displayName = "ClockStopwatchIndicatorIcon";
3325
3325
  var ClockStopwatchIndicatorIcon$1 = ClockStopwatchIndicatorIcon;
3326
3326
 
3327
- var _excluded$4o = ["gradient"];
3327
+ var _excluded$4u = ["gradient"];
3328
3328
 
3329
3329
  /**
3330
3330
  * @component ClockStopwatchSmallIcon
@@ -3354,7 +3354,7 @@
3354
3354
  */
3355
3355
  var ClockStopwatchSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3356
3356
  var gradient = _ref.gradient,
3357
- props = _objectWithoutProperties(_ref, _excluded$4o);
3357
+ props = _objectWithoutProperties(_ref, _excluded$4u);
3358
3358
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3359
3359
  xmlns: "http://www.w3.org/2000/svg",
3360
3360
  width: 12,
@@ -3374,7 +3374,7 @@
3374
3374
  ClockStopwatchSmallIcon.displayName = "ClockStopwatchSmallIcon";
3375
3375
  var ClockStopwatchSmallIcon$1 = ClockStopwatchSmallIcon;
3376
3376
 
3377
- var _excluded$4n = ["gradient"];
3377
+ var _excluded$4t = ["gradient"];
3378
3378
 
3379
3379
  /**
3380
3380
  * @component ClockStopwatchIcon
@@ -3404,7 +3404,7 @@
3404
3404
  */
3405
3405
  var ClockStopwatchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3406
3406
  var gradient = _ref.gradient,
3407
- props = _objectWithoutProperties(_ref, _excluded$4n);
3407
+ props = _objectWithoutProperties(_ref, _excluded$4t);
3408
3408
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3409
3409
  xmlns: "http://www.w3.org/2000/svg",
3410
3410
  width: 24,
@@ -3424,7 +3424,7 @@
3424
3424
  ClockStopwatchIcon.displayName = "ClockStopwatchIcon";
3425
3425
  var ClockStopwatchIcon$1 = ClockStopwatchIcon;
3426
3426
 
3427
- var _excluded$4m = ["gradient"];
3427
+ var _excluded$4s = ["gradient"];
3428
3428
 
3429
3429
  /**
3430
3430
  * @component ClockIcon
@@ -3454,7 +3454,7 @@
3454
3454
  */
3455
3455
  var ClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3456
3456
  var gradient = _ref.gradient,
3457
- props = _objectWithoutProperties(_ref, _excluded$4m);
3457
+ props = _objectWithoutProperties(_ref, _excluded$4s);
3458
3458
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3459
3459
  xmlns: "http://www.w3.org/2000/svg",
3460
3460
  width: 24,
@@ -3474,7 +3474,7 @@
3474
3474
  ClockIcon.displayName = "ClockIcon";
3475
3475
  var ClockIcon$1 = ClockIcon;
3476
3476
 
3477
- var _excluded$4l = ["gradient"];
3477
+ var _excluded$4r = ["gradient"];
3478
3478
 
3479
3479
  /**
3480
3480
  * @component CloseCircleIcon
@@ -3504,7 +3504,7 @@
3504
3504
  */
3505
3505
  var CloseCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3506
3506
  var gradient = _ref.gradient,
3507
- props = _objectWithoutProperties(_ref, _excluded$4l);
3507
+ props = _objectWithoutProperties(_ref, _excluded$4r);
3508
3508
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3509
3509
  xmlns: "http://www.w3.org/2000/svg",
3510
3510
  width: 24,
@@ -3525,7 +3525,7 @@
3525
3525
  CloseCircleIcon.displayName = "CloseCircleIcon";
3526
3526
  var CloseCircleIcon$1 = CloseCircleIcon;
3527
3527
 
3528
- var _excluded$4k = ["gradient"];
3528
+ var _excluded$4q = ["gradient"];
3529
3529
 
3530
3530
  /**
3531
3531
  * @component CloseDocumentIcon
@@ -3555,7 +3555,7 @@
3555
3555
  */
3556
3556
  var CloseDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3557
3557
  var gradient = _ref.gradient,
3558
- props = _objectWithoutProperties(_ref, _excluded$4k);
3558
+ props = _objectWithoutProperties(_ref, _excluded$4q);
3559
3559
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3560
3560
  xmlns: "http://www.w3.org/2000/svg",
3561
3561
  width: 24,
@@ -3575,7 +3575,7 @@
3575
3575
  CloseDocumentIcon.displayName = "CloseDocumentIcon";
3576
3576
  var CloseDocumentIcon$1 = CloseDocumentIcon;
3577
3577
 
3578
- var _excluded$4j = ["gradient"];
3578
+ var _excluded$4p = ["gradient"];
3579
3579
 
3580
3580
  /**
3581
3581
  * @component CloseSmallIcon
@@ -3605,7 +3605,7 @@
3605
3605
  */
3606
3606
  var CloseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3607
3607
  var gradient = _ref.gradient,
3608
- props = _objectWithoutProperties(_ref, _excluded$4j);
3608
+ props = _objectWithoutProperties(_ref, _excluded$4p);
3609
3609
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3610
3610
  xmlns: "http://www.w3.org/2000/svg",
3611
3611
  width: 24,
@@ -3625,7 +3625,7 @@
3625
3625
  CloseSmallIcon.displayName = "CloseSmallIcon";
3626
3626
  var CloseSmallIcon$1 = CloseSmallIcon;
3627
3627
 
3628
- var _excluded$4i = ["gradient"];
3628
+ var _excluded$4o = ["gradient"];
3629
3629
 
3630
3630
  /**
3631
3631
  * @component CloseIcon
@@ -3655,7 +3655,7 @@
3655
3655
  */
3656
3656
  var CloseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3657
3657
  var gradient = _ref.gradient,
3658
- props = _objectWithoutProperties(_ref, _excluded$4i);
3658
+ props = _objectWithoutProperties(_ref, _excluded$4o);
3659
3659
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3660
3660
  xmlns: "http://www.w3.org/2000/svg",
3661
3661
  width: 24,
@@ -3676,64 +3676,184 @@
3676
3676
  CloseIcon.displayName = "CloseIcon";
3677
3677
  var CloseIcon$1 = CloseIcon;
3678
3678
 
3679
- var _excluded$4h = ["gradient"];
3679
+ var _excluded$4n = ["gradient"];
3680
3680
 
3681
3681
  /**
3682
- * @component CollapsIcon
3682
+ * @component CloudIcon
3683
3683
  * @description
3684
+ * Outline cloud glyph for cloud/storage/sync signifiers.
3684
3685
  *
3685
- * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
3686
- * The Icon component is
3687
- * customizable, allowing for variations in size, color, and style to fit the needs of the application.
3688
- *
3689
- * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
3690
- * Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
3691
- *
3692
- * @example
3693
- * return (
3694
- * <CollapsIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
3695
- * )
3696
- *
3697
- * @example
3698
- * return (
3699
- * <CollapsIcon className="mr-2" />
3700
- * )
3686
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
3701
3687
  *
3702
- * @see
3703
- * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
3704
- * @see
3705
- * https://design.activecollab.com/docs/foundations/icons
3688
+ * @see https://design.activecollab.com/docs/foundations/icons
3706
3689
  */
3707
- var CollapsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3690
+ var CloudIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3708
3691
  var gradient = _ref.gradient,
3709
- props = _objectWithoutProperties(_ref, _excluded$4h);
3692
+ props = _objectWithoutProperties(_ref, _excluded$4n);
3710
3693
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3711
3694
  xmlns: "http://www.w3.org/2000/svg",
3712
- width: 6,
3713
- height: 9,
3714
- viewBox: "0 0 6 9",
3715
- "data-testid": "CollapsIcon",
3716
- fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
3695
+ width: 24,
3696
+ height: 24,
3697
+ viewBox: "0 0 24 24",
3698
+ "data-testid": "CloudIcon",
3699
+ fill: "none",
3700
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
3701
+ strokeWidth: 2,
3702
+ strokeLinecap: "round",
3703
+ strokeLinejoin: "round",
3717
3704
  focusable: false,
3718
3705
  ref: ref
3719
3706
  }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
3720
3707
  gradient: gradient
3721
3708
  }), /*#__PURE__*/React__default["default"].createElement("path", {
3722
- fillRule: "evenodd",
3723
- d: "M4.243.22 0 4.462l4.243 4.243a.75.75 0 1 0 1.06-1.06l-3.18-3.183 3.18-3.182A.75.75 0 0 0 4.243.22"
3709
+ d: "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"
3724
3710
  }));
3725
3711
  });
3726
- CollapsIcon.displayName = "CollapsIcon";
3727
- var CollapsIcon$1 = CollapsIcon;
3712
+ CloudIcon.displayName = "CloudIcon";
3713
+ var CloudIcon$1 = CloudIcon;
3728
3714
 
3729
- var _excluded$4g = ["gradient"];
3715
+ var _excluded$4m = ["gradient"];
3730
3716
 
3731
3717
  /**
3732
- * @component CollapseAllIcon
3718
+ * @component CloudDeployIcon
3733
3719
  * @description
3720
+ * Outline cloud glyph with an upward arrow through the middle for
3721
+ * deploy/upload-to-cloud signifiers. The cloud's bottom edge has a cutout so
3722
+ * it does not intersect the arrow shaft.
3734
3723
  *
3735
- * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
3736
- * The Icon component is
3724
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
3725
+ *
3726
+ * @see https://design.activecollab.com/docs/foundations/icons
3727
+ */
3728
+ var CloudDeployIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3729
+ var gradient = _ref.gradient,
3730
+ props = _objectWithoutProperties(_ref, _excluded$4m);
3731
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3732
+ xmlns: "http://www.w3.org/2000/svg",
3733
+ width: 24,
3734
+ height: 24,
3735
+ viewBox: "0 0 24 24",
3736
+ "data-testid": "CloudDeployIcon",
3737
+ fill: "none",
3738
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
3739
+ strokeWidth: 2,
3740
+ strokeLinecap: "round",
3741
+ strokeLinejoin: "round",
3742
+ focusable: false,
3743
+ ref: ref
3744
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
3745
+ gradient: gradient
3746
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
3747
+ d: "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-3.535M9 18h-2.343"
3748
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
3749
+ d: "M12 20v-8"
3750
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
3751
+ d: "M9.5 14.5l2.5 -2.5l2.5 2.5"
3752
+ }));
3753
+ });
3754
+ CloudDeployIcon.displayName = "CloudDeployIcon";
3755
+ var CloudDeployIcon$1 = CloudDeployIcon;
3756
+
3757
+ var _excluded$4l = ["gradient"];
3758
+
3759
+ /**
3760
+ * @component CloudDeployFailedIcon
3761
+ * @description
3762
+ * Outline cloud glyph with an X through the bottom for failed
3763
+ * deploy/upload-to-cloud signifiers. The cloud's bottom edge has a cutout so
3764
+ * it does not intersect the X.
3765
+ *
3766
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
3767
+ *
3768
+ * @see https://design.activecollab.com/docs/foundations/icons
3769
+ */
3770
+ var CloudDeployFailedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3771
+ var gradient = _ref.gradient,
3772
+ props = _objectWithoutProperties(_ref, _excluded$4l);
3773
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3774
+ xmlns: "http://www.w3.org/2000/svg",
3775
+ width: 24,
3776
+ height: 24,
3777
+ viewBox: "0 0 24 24",
3778
+ "data-testid": "CloudDeployFailedIcon",
3779
+ fill: "none",
3780
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
3781
+ strokeWidth: 2,
3782
+ strokeLinecap: "round",
3783
+ strokeLinejoin: "round",
3784
+ focusable: false,
3785
+ ref: ref
3786
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
3787
+ gradient: gradient
3788
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
3789
+ d: "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-1.535M7 18h-0.343"
3790
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
3791
+ d: "M9.5 15.5l5 5"
3792
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
3793
+ d: "M14.5 15.5l-5 5"
3794
+ }));
3795
+ });
3796
+ CloudDeployFailedIcon.displayName = "CloudDeployFailedIcon";
3797
+ var CloudDeployFailedIcon$1 = CloudDeployFailedIcon;
3798
+
3799
+ var _excluded$4k = ["gradient"];
3800
+
3801
+ /**
3802
+ * @component CollapsIcon
3803
+ * @description
3804
+ *
3805
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
3806
+ * The Icon component is
3807
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
3808
+ *
3809
+ * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
3810
+ * Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
3811
+ *
3812
+ * @example
3813
+ * return (
3814
+ * <CollapsIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
3815
+ * )
3816
+ *
3817
+ * @example
3818
+ * return (
3819
+ * <CollapsIcon className="mr-2" />
3820
+ * )
3821
+ *
3822
+ * @see
3823
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
3824
+ * @see
3825
+ * https://design.activecollab.com/docs/foundations/icons
3826
+ */
3827
+ var CollapsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3828
+ var gradient = _ref.gradient,
3829
+ props = _objectWithoutProperties(_ref, _excluded$4k);
3830
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3831
+ xmlns: "http://www.w3.org/2000/svg",
3832
+ width: 6,
3833
+ height: 9,
3834
+ viewBox: "0 0 6 9",
3835
+ "data-testid": "CollapsIcon",
3836
+ fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
3837
+ focusable: false,
3838
+ ref: ref
3839
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
3840
+ gradient: gradient
3841
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
3842
+ fillRule: "evenodd",
3843
+ d: "M4.243.22 0 4.462l4.243 4.243a.75.75 0 1 0 1.06-1.06l-3.18-3.183 3.18-3.182A.75.75 0 0 0 4.243.22"
3844
+ }));
3845
+ });
3846
+ CollapsIcon.displayName = "CollapsIcon";
3847
+ var CollapsIcon$1 = CollapsIcon;
3848
+
3849
+ var _excluded$4j = ["gradient"];
3850
+
3851
+ /**
3852
+ * @component CollapseAllIcon
3853
+ * @description
3854
+ *
3855
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
3856
+ * The Icon component is
3737
3857
  * customizable, allowing for variations in size, color, and style to fit the needs of the application.
3738
3858
  *
3739
3859
  * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
@@ -3756,7 +3876,7 @@
3756
3876
  */
3757
3877
  var CollapseAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3758
3878
  var gradient = _ref.gradient,
3759
- props = _objectWithoutProperties(_ref, _excluded$4g);
3879
+ props = _objectWithoutProperties(_ref, _excluded$4j);
3760
3880
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3761
3881
  xmlns: "http://www.w3.org/2000/svg",
3762
3882
  width: 24,
@@ -3776,7 +3896,7 @@
3776
3896
  CollapseAllIcon.displayName = "CollapseAllIcon";
3777
3897
  var CollapseAllIcon$1 = CollapseAllIcon;
3778
3898
 
3779
- var _excluded$4f = ["gradient"];
3899
+ var _excluded$4i = ["gradient"];
3780
3900
 
3781
3901
  /**
3782
3902
  * @component CollapseExpandSingleIcon
@@ -3806,7 +3926,7 @@
3806
3926
  */
3807
3927
  var CollapseExpandSingleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3808
3928
  var gradient = _ref.gradient,
3809
- props = _objectWithoutProperties(_ref, _excluded$4f);
3929
+ props = _objectWithoutProperties(_ref, _excluded$4i);
3810
3930
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3811
3931
  xmlns: "http://www.w3.org/2000/svg",
3812
3932
  width: 24,
@@ -3826,7 +3946,7 @@
3826
3946
  CollapseExpandSingleIcon.displayName = "CollapseExpandSingleIcon";
3827
3947
  var CollapseExpandSingleIcon$1 = CollapseExpandSingleIcon;
3828
3948
 
3829
- var _excluded$4e = ["gradient"];
3949
+ var _excluded$4h = ["gradient"];
3830
3950
 
3831
3951
  /**
3832
3952
  * @component CompanyAddIcon
@@ -3856,7 +3976,7 @@
3856
3976
  */
3857
3977
  var CompanyAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3858
3978
  var gradient = _ref.gradient,
3859
- props = _objectWithoutProperties(_ref, _excluded$4e);
3979
+ props = _objectWithoutProperties(_ref, _excluded$4h);
3860
3980
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3861
3981
  xmlns: "http://www.w3.org/2000/svg",
3862
3982
  width: 18,
@@ -3877,7 +3997,7 @@
3877
3997
  CompanyAddIcon.displayName = "CompanyAddIcon";
3878
3998
  var CompanyAddIcon$1 = CompanyAddIcon;
3879
3999
 
3880
- var _excluded$4d = ["gradient"];
4000
+ var _excluded$4g = ["gradient"];
3881
4001
 
3882
4002
  /**
3883
4003
  * @component CompanyIcon
@@ -3907,7 +4027,7 @@
3907
4027
  */
3908
4028
  var CompanyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3909
4029
  var gradient = _ref.gradient,
3910
- props = _objectWithoutProperties(_ref, _excluded$4d);
4030
+ props = _objectWithoutProperties(_ref, _excluded$4g);
3911
4031
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3912
4032
  xmlns: "http://www.w3.org/2000/svg",
3913
4033
  width: 24,
@@ -3928,7 +4048,7 @@
3928
4048
  CompanyIcon.displayName = "CompanyIcon";
3929
4049
  var CompanyIcon$1 = CompanyIcon;
3930
4050
 
3931
- var _excluded$4c = ["gradient"];
4051
+ var _excluded$4f = ["gradient"];
3932
4052
 
3933
4053
  /**
3934
4054
  * @component ComputerIcon
@@ -3958,7 +4078,7 @@
3958
4078
  */
3959
4079
  var ComputerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3960
4080
  var gradient = _ref.gradient,
3961
- props = _objectWithoutProperties(_ref, _excluded$4c);
4081
+ props = _objectWithoutProperties(_ref, _excluded$4f);
3962
4082
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3963
4083
  xmlns: "http://www.w3.org/2000/svg",
3964
4084
  width: 24,
@@ -3978,7 +4098,7 @@
3978
4098
  ComputerIcon.displayName = "ComputerIcon";
3979
4099
  var ComputerIcon$1 = ComputerIcon;
3980
4100
 
3981
- var _excluded$4b = ["gradient"];
4101
+ var _excluded$4e = ["gradient"];
3982
4102
 
3983
4103
  /**
3984
4104
  * @component ConnectionIcon
@@ -4008,7 +4128,7 @@
4008
4128
  */
4009
4129
  var ConnectionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4010
4130
  var gradient = _ref.gradient,
4011
- props = _objectWithoutProperties(_ref, _excluded$4b);
4131
+ props = _objectWithoutProperties(_ref, _excluded$4e);
4012
4132
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4013
4133
  xmlns: "http://www.w3.org/2000/svg",
4014
4134
  width: 24,
@@ -4043,7 +4163,7 @@
4043
4163
  ConnectionIcon.displayName = "ConnectionIcon";
4044
4164
  var ConnectionIcon$1 = ConnectionIcon;
4045
4165
 
4046
- var _excluded$4a = ["gradient"];
4166
+ var _excluded$4d = ["gradient"];
4047
4167
 
4048
4168
  /**
4049
4169
  * @component CopyIcon
@@ -4073,7 +4193,7 @@
4073
4193
  */
4074
4194
  var CopyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4075
4195
  var gradient = _ref.gradient,
4076
- props = _objectWithoutProperties(_ref, _excluded$4a);
4196
+ props = _objectWithoutProperties(_ref, _excluded$4d);
4077
4197
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4078
4198
  xmlns: "http://www.w3.org/2000/svg",
4079
4199
  width: 24,
@@ -4093,7 +4213,7 @@
4093
4213
  CopyIcon.displayName = "CopyIcon";
4094
4214
  var CopyIcon$1 = CopyIcon;
4095
4215
 
4096
- var _excluded$49 = ["gradient"];
4216
+ var _excluded$4c = ["gradient"];
4097
4217
 
4098
4218
  /**
4099
4219
  * @component CrownBlankIcon
@@ -4123,7 +4243,7 @@
4123
4243
  */
4124
4244
  var CrownBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4125
4245
  var gradient = _ref.gradient,
4126
- props = _objectWithoutProperties(_ref, _excluded$49);
4246
+ props = _objectWithoutProperties(_ref, _excluded$4c);
4127
4247
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4128
4248
  xmlns: "http://www.w3.org/2000/svg",
4129
4249
  width: 24,
@@ -4143,7 +4263,7 @@
4143
4263
  CrownBlankIcon.displayName = "CrownBlankIcon";
4144
4264
  var CrownBlankIcon$1 = CrownBlankIcon;
4145
4265
 
4146
- var _excluded$48 = ["gradient"];
4266
+ var _excluded$4b = ["gradient"];
4147
4267
 
4148
4268
  /**
4149
4269
  * @component CrownSelectedIcon
@@ -4173,7 +4293,7 @@
4173
4293
  */
4174
4294
  var CrownSelectedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4175
4295
  var gradient = _ref.gradient,
4176
- props = _objectWithoutProperties(_ref, _excluded$48);
4296
+ props = _objectWithoutProperties(_ref, _excluded$4b);
4177
4297
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4178
4298
  xmlns: "http://www.w3.org/2000/svg",
4179
4299
  width: 24,
@@ -4193,7 +4313,7 @@
4193
4313
  CrownSelectedIcon.displayName = "CrownSelectedIcon";
4194
4314
  var CrownSelectedIcon$1 = CrownSelectedIcon;
4195
4315
 
4196
- var _excluded$47 = ["gradient"];
4316
+ var _excluded$4a = ["gradient"];
4197
4317
 
4198
4318
  /**
4199
4319
  * @component DependencySmallIcon
@@ -4223,7 +4343,7 @@
4223
4343
  */
4224
4344
  var DependencySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4225
4345
  var gradient = _ref.gradient,
4226
- props = _objectWithoutProperties(_ref, _excluded$47);
4346
+ props = _objectWithoutProperties(_ref, _excluded$4a);
4227
4347
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4228
4348
  xmlns: "http://www.w3.org/2000/svg",
4229
4349
  width: 12,
@@ -4243,7 +4363,7 @@
4243
4363
  DependencySmallIcon.displayName = "DependencySmallIcon";
4244
4364
  var DependencySmallIcon$1 = DependencySmallIcon;
4245
4365
 
4246
- var _excluded$46 = ["gradient"];
4366
+ var _excluded$49 = ["gradient"];
4247
4367
 
4248
4368
  /**
4249
4369
  * @component DependencyIcon
@@ -4273,7 +4393,7 @@
4273
4393
  */
4274
4394
  var DependencyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4275
4395
  var gradient = _ref.gradient,
4276
- props = _objectWithoutProperties(_ref, _excluded$46);
4396
+ props = _objectWithoutProperties(_ref, _excluded$49);
4277
4397
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4278
4398
  xmlns: "http://www.w3.org/2000/svg",
4279
4399
  width: 24,
@@ -4293,7 +4413,7 @@
4293
4413
  DependencyIcon.displayName = "DependencyIcon";
4294
4414
  var DependencyIcon$1 = DependencyIcon;
4295
4415
 
4296
- var _excluded$45 = ["gradient"];
4416
+ var _excluded$48 = ["gradient"];
4297
4417
 
4298
4418
  /**
4299
4419
  * @component DescriptionSmallIcon
@@ -4323,7 +4443,7 @@
4323
4443
  */
4324
4444
  var DescriptionSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4325
4445
  var gradient = _ref.gradient,
4326
- props = _objectWithoutProperties(_ref, _excluded$45);
4446
+ props = _objectWithoutProperties(_ref, _excluded$48);
4327
4447
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4328
4448
  xmlns: "http://www.w3.org/2000/svg",
4329
4449
  width: 18,
@@ -4344,7 +4464,7 @@
4344
4464
  DescriptionSmallIcon.displayName = "DescriptionSmallIcon";
4345
4465
  var DescriptionSmallIcon$1 = DescriptionSmallIcon;
4346
4466
 
4347
- var _excluded$44 = ["gradient"];
4467
+ var _excluded$47 = ["gradient"];
4348
4468
 
4349
4469
  /**
4350
4470
  * @component DescriptionIcon
@@ -4374,7 +4494,7 @@
4374
4494
  */
4375
4495
  var DescriptionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4376
4496
  var gradient = _ref.gradient,
4377
- props = _objectWithoutProperties(_ref, _excluded$44);
4497
+ props = _objectWithoutProperties(_ref, _excluded$47);
4378
4498
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4379
4499
  xmlns: "http://www.w3.org/2000/svg",
4380
4500
  width: 24,
@@ -4394,7 +4514,7 @@
4394
4514
  DescriptionIcon.displayName = "DescriptionIcon";
4395
4515
  var DescriptionIcon$1 = DescriptionIcon;
4396
4516
 
4397
- var _excluded$43 = ["gradient"];
4517
+ var _excluded$46 = ["gradient"];
4398
4518
 
4399
4519
  /**
4400
4520
  * @component DiscussionAddIcon
@@ -4424,7 +4544,7 @@
4424
4544
  */
4425
4545
  var DiscussionAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4426
4546
  var gradient = _ref.gradient,
4427
- props = _objectWithoutProperties(_ref, _excluded$43);
4547
+ props = _objectWithoutProperties(_ref, _excluded$46);
4428
4548
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4429
4549
  xmlns: "http://www.w3.org/2000/svg",
4430
4550
  width: 24,
@@ -4444,7 +4564,7 @@
4444
4564
  DiscussionAddIcon.displayName = "DiscussionAddIcon";
4445
4565
  var DiscussionAddIcon$1 = DiscussionAddIcon;
4446
4566
 
4447
- var _excluded$42 = ["gradient"];
4567
+ var _excluded$45 = ["gradient"];
4448
4568
 
4449
4569
  /**
4450
4570
  * @component DiscussionIcon
@@ -4474,7 +4594,7 @@
4474
4594
  */
4475
4595
  var DiscussionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4476
4596
  var gradient = _ref.gradient,
4477
- props = _objectWithoutProperties(_ref, _excluded$42);
4597
+ props = _objectWithoutProperties(_ref, _excluded$45);
4478
4598
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4479
4599
  xmlns: "http://www.w3.org/2000/svg",
4480
4600
  width: 24,
@@ -4495,7 +4615,7 @@
4495
4615
  DiscussionIcon.displayName = "DiscussionIcon";
4496
4616
  var DiscussionIcon$1 = DiscussionIcon;
4497
4617
 
4498
- var _excluded$41 = ["gradient"];
4618
+ var _excluded$44 = ["gradient"];
4499
4619
 
4500
4620
  /**
4501
4621
  * @component DollarCheckmarkSmallIcon
@@ -4525,7 +4645,7 @@
4525
4645
  */
4526
4646
  var DollarCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4527
4647
  var gradient = _ref.gradient,
4528
- props = _objectWithoutProperties(_ref, _excluded$41);
4648
+ props = _objectWithoutProperties(_ref, _excluded$44);
4529
4649
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4530
4650
  xmlns: "http://www.w3.org/2000/svg",
4531
4651
  width: 12,
@@ -4545,7 +4665,7 @@
4545
4665
  DollarCheckmarkSmallIcon.displayName = "DollarCheckmarkSmallIcon";
4546
4666
  var DollarCheckmarkSmallIcon$1 = DollarCheckmarkSmallIcon;
4547
4667
 
4548
- var _excluded$40 = ["gradient"];
4668
+ var _excluded$43 = ["gradient"];
4549
4669
 
4550
4670
  /**
4551
4671
  * @component DollarCheckmarkIcon
@@ -4575,7 +4695,7 @@
4575
4695
  */
4576
4696
  var DollarCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4577
4697
  var gradient = _ref.gradient,
4578
- props = _objectWithoutProperties(_ref, _excluded$40);
4698
+ props = _objectWithoutProperties(_ref, _excluded$43);
4579
4699
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4580
4700
  xmlns: "http://www.w3.org/2000/svg",
4581
4701
  width: 24,
@@ -4595,7 +4715,7 @@
4595
4715
  DollarCheckmarkIcon.displayName = "DollarCheckmarkIcon";
4596
4716
  var DollarCheckmarkIcon$1 = DollarCheckmarkIcon;
4597
4717
 
4598
- var _excluded$3$ = ["gradient"];
4718
+ var _excluded$42 = ["gradient"];
4599
4719
 
4600
4720
  /**
4601
4721
  * @component DollarClockSmallIcon
@@ -4625,7 +4745,7 @@
4625
4745
  */
4626
4746
  var DollarClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4627
4747
  var gradient = _ref.gradient,
4628
- props = _objectWithoutProperties(_ref, _excluded$3$);
4748
+ props = _objectWithoutProperties(_ref, _excluded$42);
4629
4749
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4630
4750
  xmlns: "http://www.w3.org/2000/svg",
4631
4751
  width: 12,
@@ -4645,7 +4765,7 @@
4645
4765
  DollarClockSmallIcon.displayName = "DollarClockSmallIcon";
4646
4766
  var DollarClockSmallIcon$1 = DollarClockSmallIcon;
4647
4767
 
4648
- var _excluded$3_ = ["gradient"];
4768
+ var _excluded$41 = ["gradient"];
4649
4769
 
4650
4770
  /**
4651
4771
  * @component DollarClockIcon
@@ -4675,7 +4795,7 @@
4675
4795
  */
4676
4796
  var DollarClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4677
4797
  var gradient = _ref.gradient,
4678
- props = _objectWithoutProperties(_ref, _excluded$3_);
4798
+ props = _objectWithoutProperties(_ref, _excluded$41);
4679
4799
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4680
4800
  xmlns: "http://www.w3.org/2000/svg",
4681
4801
  width: 24,
@@ -4695,7 +4815,7 @@
4695
4815
  DollarClockIcon.displayName = "DollarClockIcon";
4696
4816
  var DollarClockIcon$1 = DollarClockIcon;
4697
4817
 
4698
- var _excluded$3Z = ["gradient"];
4818
+ var _excluded$40 = ["gradient"];
4699
4819
 
4700
4820
  /**
4701
4821
  * @component DollarDocumentPlusIcon
@@ -4725,7 +4845,7 @@
4725
4845
  */
4726
4846
  var DollarDocumentPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4727
4847
  var gradient = _ref.gradient,
4728
- props = _objectWithoutProperties(_ref, _excluded$3Z);
4848
+ props = _objectWithoutProperties(_ref, _excluded$40);
4729
4849
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4730
4850
  xmlns: "http://www.w3.org/2000/svg",
4731
4851
  width: 24,
@@ -4745,7 +4865,7 @@
4745
4865
  DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
4746
4866
  var DollarDocumentPlusIcon$1 = DollarDocumentPlusIcon;
4747
4867
 
4748
- var _excluded$3Y = ["gradient"];
4868
+ var _excluded$3$ = ["gradient"];
4749
4869
 
4750
4870
  /**
4751
4871
  * @component DollarDocumentIcon
@@ -4775,7 +4895,7 @@
4775
4895
  */
4776
4896
  var DollarDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4777
4897
  var gradient = _ref.gradient,
4778
- props = _objectWithoutProperties(_ref, _excluded$3Y);
4898
+ props = _objectWithoutProperties(_ref, _excluded$3$);
4779
4899
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4780
4900
  xmlns: "http://www.w3.org/2000/svg",
4781
4901
  width: 24,
@@ -4796,7 +4916,7 @@
4796
4916
  DollarDocumentIcon.displayName = "DollarDocumentIcon";
4797
4917
  var DollarDocumentIcon$1 = DollarDocumentIcon;
4798
4918
 
4799
- var _excluded$3X = ["gradient"];
4919
+ var _excluded$3_ = ["gradient"];
4800
4920
 
4801
4921
  /**
4802
4922
  * @component DollarOffSmallIcon
@@ -4826,7 +4946,7 @@
4826
4946
  */
4827
4947
  var DollarOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4828
4948
  var gradient = _ref.gradient,
4829
- props = _objectWithoutProperties(_ref, _excluded$3X);
4949
+ props = _objectWithoutProperties(_ref, _excluded$3_);
4830
4950
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4831
4951
  xmlns: "http://www.w3.org/2000/svg",
4832
4952
  width: 12,
@@ -4846,7 +4966,7 @@
4846
4966
  DollarOffSmallIcon.displayName = "DollarOffSmallIcon";
4847
4967
  var DollarOffSmallIcon$1 = DollarOffSmallIcon;
4848
4968
 
4849
- var _excluded$3W = ["gradient"];
4969
+ var _excluded$3Z = ["gradient"];
4850
4970
 
4851
4971
  /**
4852
4972
  * @component DollarOffIcon
@@ -4876,7 +4996,7 @@
4876
4996
  */
4877
4997
  var DollarOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4878
4998
  var gradient = _ref.gradient,
4879
- props = _objectWithoutProperties(_ref, _excluded$3W);
4999
+ props = _objectWithoutProperties(_ref, _excluded$3Z);
4880
5000
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4881
5001
  xmlns: "http://www.w3.org/2000/svg",
4882
5002
  width: 24,
@@ -4896,7 +5016,7 @@
4896
5016
  DollarOffIcon.displayName = "DollarOffIcon";
4897
5017
  var DollarOffIcon$1 = DollarOffIcon;
4898
5018
 
4899
- var _excluded$3V = ["gradient"];
5019
+ var _excluded$3Y = ["gradient"];
4900
5020
 
4901
5021
  /**
4902
5022
  * @component DollarSmallIcon
@@ -4926,7 +5046,7 @@
4926
5046
  */
4927
5047
  var DollarSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4928
5048
  var gradient = _ref.gradient,
4929
- props = _objectWithoutProperties(_ref, _excluded$3V);
5049
+ props = _objectWithoutProperties(_ref, _excluded$3Y);
4930
5050
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4931
5051
  xmlns: "http://www.w3.org/2000/svg",
4932
5052
  width: 12,
@@ -4946,7 +5066,7 @@
4946
5066
  DollarSmallIcon.displayName = "DollarSmallIcon";
4947
5067
  var DollarSmallIcon$1 = DollarSmallIcon;
4948
5068
 
4949
- var _excluded$3U = ["gradient"];
5069
+ var _excluded$3X = ["gradient"];
4950
5070
 
4951
5071
  /**
4952
5072
  * @component DollarIcon
@@ -4976,7 +5096,7 @@
4976
5096
  */
4977
5097
  var DollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4978
5098
  var gradient = _ref.gradient,
4979
- props = _objectWithoutProperties(_ref, _excluded$3U);
5099
+ props = _objectWithoutProperties(_ref, _excluded$3X);
4980
5100
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4981
5101
  xmlns: "http://www.w3.org/2000/svg",
4982
5102
  width: 24,
@@ -4996,7 +5116,7 @@
4996
5116
  DollarIcon.displayName = "DollarIcon";
4997
5117
  var DollarIcon$1 = DollarIcon;
4998
5118
 
4999
- var _excluded$3T = ["gradient"];
5119
+ var _excluded$3W = ["gradient"];
5000
5120
 
5001
5121
  /**
5002
5122
  * @component DownloadIcon
@@ -5026,7 +5146,7 @@
5026
5146
  */
5027
5147
  var DownloadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5028
5148
  var gradient = _ref.gradient,
5029
- props = _objectWithoutProperties(_ref, _excluded$3T);
5149
+ props = _objectWithoutProperties(_ref, _excluded$3W);
5030
5150
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5031
5151
  xmlns: "http://www.w3.org/2000/svg",
5032
5152
  width: 24,
@@ -5046,7 +5166,7 @@
5046
5166
  DownloadIcon.displayName = "DownloadIcon";
5047
5167
  var DownloadIcon$1 = DownloadIcon;
5048
5168
 
5049
- var _excluded$3S = ["gradient"];
5169
+ var _excluded$3V = ["gradient"];
5050
5170
 
5051
5171
  /**
5052
5172
  * @component DrawIcon
@@ -5076,7 +5196,7 @@
5076
5196
  */
5077
5197
  var DrawIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5078
5198
  var gradient = _ref.gradient,
5079
- props = _objectWithoutProperties(_ref, _excluded$3S);
5199
+ props = _objectWithoutProperties(_ref, _excluded$3V);
5080
5200
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5081
5201
  xmlns: "http://www.w3.org/2000/svg",
5082
5202
  width: 24,
@@ -5097,7 +5217,7 @@
5097
5217
  DrawIcon.displayName = "DrawIcon";
5098
5218
  var DrawIcon$1 = DrawIcon;
5099
5219
 
5100
- var _excluded$3R = ["gradient"];
5220
+ var _excluded$3U = ["gradient"];
5101
5221
 
5102
5222
  /**
5103
5223
  * @component DriveIcon
@@ -5127,7 +5247,7 @@
5127
5247
  */
5128
5248
  var DriveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5129
5249
  var gradient = _ref.gradient,
5130
- props = _objectWithoutProperties(_ref, _excluded$3R);
5250
+ props = _objectWithoutProperties(_ref, _excluded$3U);
5131
5251
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5132
5252
  xmlns: "http://www.w3.org/2000/svg",
5133
5253
  width: 24,
@@ -5147,7 +5267,7 @@
5147
5267
  DriveIcon.displayName = "DriveIcon";
5148
5268
  var DriveIcon$1 = DriveIcon;
5149
5269
 
5150
- var _excluded$3Q = ["gradient"];
5270
+ var _excluded$3T = ["gradient"];
5151
5271
 
5152
5272
  /**
5153
5273
  * @component DropboxIcon
@@ -5177,7 +5297,7 @@
5177
5297
  */
5178
5298
  var DropboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5179
5299
  var gradient = _ref.gradient,
5180
- props = _objectWithoutProperties(_ref, _excluded$3Q);
5300
+ props = _objectWithoutProperties(_ref, _excluded$3T);
5181
5301
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5182
5302
  xmlns: "http://www.w3.org/2000/svg",
5183
5303
  width: 24,
@@ -5197,7 +5317,7 @@
5197
5317
  DropboxIcon.displayName = "DropboxIcon";
5198
5318
  var DropboxIcon$1 = DropboxIcon;
5199
5319
 
5200
- var _excluded$3P = ["gradient"];
5320
+ var _excluded$3S = ["gradient"];
5201
5321
 
5202
5322
  /**
5203
5323
  * @component DuplicateIcon
@@ -5227,7 +5347,7 @@
5227
5347
  */
5228
5348
  var DuplicateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5229
5349
  var gradient = _ref.gradient,
5230
- props = _objectWithoutProperties(_ref, _excluded$3P);
5350
+ props = _objectWithoutProperties(_ref, _excluded$3S);
5231
5351
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5232
5352
  xmlns: "http://www.w3.org/2000/svg",
5233
5353
  width: 24,
@@ -5247,7 +5367,7 @@
5247
5367
  DuplicateIcon.displayName = "DuplicateIcon";
5248
5368
  var DuplicateIcon$1 = DuplicateIcon;
5249
5369
 
5250
- var _excluded$3O = ["gradient"];
5370
+ var _excluded$3R = ["gradient"];
5251
5371
 
5252
5372
  /**
5253
5373
  * @component EditMultipleIcon
@@ -5277,7 +5397,7 @@
5277
5397
  */
5278
5398
  var EditMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5279
5399
  var gradient = _ref.gradient,
5280
- props = _objectWithoutProperties(_ref, _excluded$3O);
5400
+ props = _objectWithoutProperties(_ref, _excluded$3R);
5281
5401
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5282
5402
  xmlns: "http://www.w3.org/2000/svg",
5283
5403
  width: 24,
@@ -5297,7 +5417,7 @@
5297
5417
  EditMultipleIcon.displayName = "EditMultipleIcon";
5298
5418
  var EditMultipleIcon$1 = EditMultipleIcon;
5299
5419
 
5300
- var _excluded$3N = ["gradient"];
5420
+ var _excluded$3Q = ["gradient"];
5301
5421
 
5302
5422
  /**
5303
5423
  * @component EditIcon
@@ -5327,7 +5447,7 @@
5327
5447
  */
5328
5448
  var EditIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5329
5449
  var gradient = _ref.gradient,
5330
- props = _objectWithoutProperties(_ref, _excluded$3N);
5450
+ props = _objectWithoutProperties(_ref, _excluded$3Q);
5331
5451
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5332
5452
  xmlns: "http://www.w3.org/2000/svg",
5333
5453
  width: 24,
@@ -5347,7 +5467,7 @@
5347
5467
  EditIcon.displayName = "EditIcon";
5348
5468
  var EditIcon$1 = EditIcon;
5349
5469
 
5350
- var _excluded$3M = ["gradient"];
5470
+ var _excluded$3P = ["gradient"];
5351
5471
 
5352
5472
  /**
5353
5473
  * @component EmojiIcon
@@ -5377,7 +5497,7 @@
5377
5497
  */
5378
5498
  var EmojiIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5379
5499
  var gradient = _ref.gradient,
5380
- props = _objectWithoutProperties(_ref, _excluded$3M);
5500
+ props = _objectWithoutProperties(_ref, _excluded$3P);
5381
5501
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5382
5502
  xmlns: "http://www.w3.org/2000/svg",
5383
5503
  width: 24,
@@ -5397,7 +5517,7 @@
5397
5517
  EmojiIcon.displayName = "EmojiIcon";
5398
5518
  var EmojiIcon$1 = EmojiIcon;
5399
5519
 
5400
- var _excluded$3L = ["gradient"];
5520
+ var _excluded$3O = ["gradient"];
5401
5521
 
5402
5522
  /**
5403
5523
  * @component EstimatePlusIcon
@@ -5427,7 +5547,7 @@
5427
5547
  */
5428
5548
  var EstimatePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5429
5549
  var gradient = _ref.gradient,
5430
- props = _objectWithoutProperties(_ref, _excluded$3L);
5550
+ props = _objectWithoutProperties(_ref, _excluded$3O);
5431
5551
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5432
5552
  xmlns: "http://www.w3.org/2000/svg",
5433
5553
  width: 24,
@@ -5448,7 +5568,7 @@
5448
5568
  EstimatePlusIcon.displayName = "EstimatePlusIcon";
5449
5569
  var EstimatePlusIcon$1 = EstimatePlusIcon;
5450
5570
 
5451
- var _excluded$3K = ["gradient"];
5571
+ var _excluded$3N = ["gradient"];
5452
5572
 
5453
5573
  /**
5454
5574
  * @component EstimatesIcon
@@ -5478,7 +5598,7 @@
5478
5598
  */
5479
5599
  var EstimatesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5480
5600
  var gradient = _ref.gradient,
5481
- props = _objectWithoutProperties(_ref, _excluded$3K);
5601
+ props = _objectWithoutProperties(_ref, _excluded$3N);
5482
5602
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5483
5603
  xmlns: "http://www.w3.org/2000/svg",
5484
5604
  width: 24,
@@ -5502,7 +5622,7 @@
5502
5622
  EstimatesIcon.displayName = "EstimatesIcon";
5503
5623
  var EstimatesIcon$1 = EstimatesIcon;
5504
5624
 
5505
- var _excluded$3J = ["gradient"];
5625
+ var _excluded$3M = ["gradient"];
5506
5626
 
5507
5627
  /**
5508
5628
  * @component ExpandAllIcon
@@ -5532,7 +5652,7 @@
5532
5652
  */
5533
5653
  var ExpandAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5534
5654
  var gradient = _ref.gradient,
5535
- props = _objectWithoutProperties(_ref, _excluded$3J);
5655
+ props = _objectWithoutProperties(_ref, _excluded$3M);
5536
5656
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5537
5657
  xmlns: "http://www.w3.org/2000/svg",
5538
5658
  width: 24,
@@ -5552,7 +5672,7 @@
5552
5672
  ExpandAllIcon.displayName = "ExpandAllIcon";
5553
5673
  var ExpandAllIcon$1 = ExpandAllIcon;
5554
5674
 
5555
- var _excluded$3I = ["gradient"];
5675
+ var _excluded$3L = ["gradient"];
5556
5676
 
5557
5677
  /**
5558
5678
  * @component ExpenseAddIcon
@@ -5582,7 +5702,7 @@
5582
5702
  */
5583
5703
  var ExpenseAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5584
5704
  var gradient = _ref.gradient,
5585
- props = _objectWithoutProperties(_ref, _excluded$3I);
5705
+ props = _objectWithoutProperties(_ref, _excluded$3L);
5586
5706
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5587
5707
  xmlns: "http://www.w3.org/2000/svg",
5588
5708
  width: 24,
@@ -5602,7 +5722,7 @@
5602
5722
  ExpenseAddIcon.displayName = "ExpenseAddIcon";
5603
5723
  var ExpenseAddIcon$1 = ExpenseAddIcon;
5604
5724
 
5605
- var _excluded$3H = ["gradient"];
5725
+ var _excluded$3K = ["gradient"];
5606
5726
 
5607
5727
  /**
5608
5728
  * @component ExpensePlusIcon
@@ -5632,7 +5752,7 @@
5632
5752
  */
5633
5753
  var ExpensePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5634
5754
  var gradient = _ref.gradient,
5635
- props = _objectWithoutProperties(_ref, _excluded$3H);
5755
+ props = _objectWithoutProperties(_ref, _excluded$3K);
5636
5756
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5637
5757
  xmlns: "http://www.w3.org/2000/svg",
5638
5758
  width: 24,
@@ -5654,7 +5774,7 @@
5654
5774
  ExpensePlusIcon.displayName = "ExpensePlusIcon";
5655
5775
  var ExpensePlusIcon$1 = ExpensePlusIcon;
5656
5776
 
5657
- var _excluded$3G = ["gradient"];
5777
+ var _excluded$3J = ["gradient"];
5658
5778
 
5659
5779
  /**
5660
5780
  * @component EyeOffSmallIcon
@@ -5684,7 +5804,7 @@
5684
5804
  */
5685
5805
  var EyeOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5686
5806
  var gradient = _ref.gradient,
5687
- props = _objectWithoutProperties(_ref, _excluded$3G);
5807
+ props = _objectWithoutProperties(_ref, _excluded$3J);
5688
5808
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5689
5809
  xmlns: "http://www.w3.org/2000/svg",
5690
5810
  width: 12,
@@ -5704,7 +5824,7 @@
5704
5824
  EyeOffSmallIcon.displayName = "EyeOffSmallIcon";
5705
5825
  var EyeOffSmallIcon$1 = EyeOffSmallIcon;
5706
5826
 
5707
- var _excluded$3F = ["gradient"];
5827
+ var _excluded$3I = ["gradient"];
5708
5828
 
5709
5829
  /**
5710
5830
  * @component EyeOffIcon
@@ -5734,7 +5854,7 @@
5734
5854
  */
5735
5855
  var EyeOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5736
5856
  var gradient = _ref.gradient,
5737
- props = _objectWithoutProperties(_ref, _excluded$3F);
5857
+ props = _objectWithoutProperties(_ref, _excluded$3I);
5738
5858
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5739
5859
  xmlns: "http://www.w3.org/2000/svg",
5740
5860
  width: 24,
@@ -5754,7 +5874,7 @@
5754
5874
  EyeOffIcon.displayName = "EyeOffIcon";
5755
5875
  var EyeOffIcon$1 = EyeOffIcon;
5756
5876
 
5757
- var _excluded$3E = ["gradient"];
5877
+ var _excluded$3H = ["gradient"];
5758
5878
 
5759
5879
  /**
5760
5880
  * @component EyeSmallIcon
@@ -5784,7 +5904,7 @@
5784
5904
  */
5785
5905
  var EyeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5786
5906
  var gradient = _ref.gradient,
5787
- props = _objectWithoutProperties(_ref, _excluded$3E);
5907
+ props = _objectWithoutProperties(_ref, _excluded$3H);
5788
5908
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5789
5909
  xmlns: "http://www.w3.org/2000/svg",
5790
5910
  width: 12,
@@ -5804,7 +5924,7 @@
5804
5924
  EyeSmallIcon.displayName = "EyeSmallIcon";
5805
5925
  var EyeSmallIcon$1 = EyeSmallIcon;
5806
5926
 
5807
- var _excluded$3D = ["gradient"];
5927
+ var _excluded$3G = ["gradient"];
5808
5928
 
5809
5929
  /**
5810
5930
  * @component EyeIcon
@@ -5834,7 +5954,7 @@
5834
5954
  */
5835
5955
  var EyeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5836
5956
  var gradient = _ref.gradient,
5837
- props = _objectWithoutProperties(_ref, _excluded$3D);
5957
+ props = _objectWithoutProperties(_ref, _excluded$3G);
5838
5958
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5839
5959
  xmlns: "http://www.w3.org/2000/svg",
5840
5960
  width: 24,
@@ -5854,7 +5974,7 @@
5854
5974
  EyeIcon.displayName = "EyeIcon";
5855
5975
  var EyeIcon$1 = EyeIcon;
5856
5976
 
5857
- var _excluded$3C = ["gradient"];
5977
+ var _excluded$3F = ["gradient"];
5858
5978
 
5859
5979
  /**
5860
5980
  * @component FilterIcon
@@ -5884,7 +6004,7 @@
5884
6004
  */
5885
6005
  var FilterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5886
6006
  var gradient = _ref.gradient,
5887
- props = _objectWithoutProperties(_ref, _excluded$3C);
6007
+ props = _objectWithoutProperties(_ref, _excluded$3F);
5888
6008
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5889
6009
  xmlns: "http://www.w3.org/2000/svg",
5890
6010
  width: 24,
@@ -5904,7 +6024,7 @@
5904
6024
  FilterIcon.displayName = "FilterIcon";
5905
6025
  var FilterIcon$1 = FilterIcon;
5906
6026
 
5907
- var _excluded$3B = ["gradient"];
6027
+ var _excluded$3E = ["gradient"];
5908
6028
 
5909
6029
  /**
5910
6030
  * @component FolderMoveIcon
@@ -5934,7 +6054,7 @@
5934
6054
  */
5935
6055
  var FolderMoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5936
6056
  var gradient = _ref.gradient,
5937
- props = _objectWithoutProperties(_ref, _excluded$3B);
6057
+ props = _objectWithoutProperties(_ref, _excluded$3E);
5938
6058
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5939
6059
  xmlns: "http://www.w3.org/2000/svg",
5940
6060
  width: 24,
@@ -5954,7 +6074,7 @@
5954
6074
  FolderMoveIcon.displayName = "FolderMoveIcon";
5955
6075
  var FolderMoveIcon$1 = FolderMoveIcon;
5956
6076
 
5957
- var _excluded$3A = ["gradient"];
6077
+ var _excluded$3D = ["gradient"];
5958
6078
 
5959
6079
  /**
5960
6080
  * @component FolderOutlineIcon
@@ -5984,7 +6104,7 @@
5984
6104
  */
5985
6105
  var FolderOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5986
6106
  var gradient = _ref.gradient,
5987
- props = _objectWithoutProperties(_ref, _excluded$3A);
6107
+ props = _objectWithoutProperties(_ref, _excluded$3D);
5988
6108
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5989
6109
  xmlns: "http://www.w3.org/2000/svg",
5990
6110
  width: 24,
@@ -6004,7 +6124,112 @@
6004
6124
  FolderOutlineIcon.displayName = "FolderOutlineIcon";
6005
6125
  var FolderOutlineIcon$1 = FolderOutlineIcon;
6006
6126
 
6007
- var _excluded$3z = ["gradient"];
6127
+ var _excluded$3C = ["gradient"];
6128
+
6129
+ /**
6130
+ * @component GearIcon
6131
+ * @description
6132
+ * Outline gear/cog glyph for settings/configuration signifiers.
6133
+ *
6134
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
6135
+ *
6136
+ * @see https://design.activecollab.com/docs/foundations/icons
6137
+ */
6138
+ var GearIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6139
+ var gradient = _ref.gradient,
6140
+ props = _objectWithoutProperties(_ref, _excluded$3C);
6141
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6142
+ xmlns: "http://www.w3.org/2000/svg",
6143
+ width: 24,
6144
+ height: 24,
6145
+ viewBox: "0 0 24 24",
6146
+ "data-testid": "GearIcon",
6147
+ fill: "none",
6148
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
6149
+ strokeWidth: 2,
6150
+ strokeLinecap: "round",
6151
+ strokeLinejoin: "round",
6152
+ focusable: false,
6153
+ ref: ref
6154
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
6155
+ gradient: gradient
6156
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6157
+ d: "M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"
6158
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6159
+ d: "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"
6160
+ }));
6161
+ });
6162
+ GearIcon.displayName = "GearIcon";
6163
+ var GearIcon$1 = GearIcon;
6164
+
6165
+ var _excluded$3B = ["gradient"];
6166
+ var maskUid$1 = 0;
6167
+
6168
+ /**
6169
+ * @component GearFailedIcon
6170
+ * @description
6171
+ * Outline gear/cog glyph with a cutout in the lower-right corner holding an X
6172
+ * badge — used to signify a failed settings/configuration action. The cutout
6173
+ * separates the X from the gear outline.
6174
+ *
6175
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
6176
+ *
6177
+ * @see https://design.activecollab.com/docs/foundations/icons
6178
+ */
6179
+ var GearFailedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6180
+ var gradient = _ref.gradient,
6181
+ props = _objectWithoutProperties(_ref, _excluded$3B);
6182
+ var _useState = React.useState(function () {
6183
+ return "gear-failed-cut-".concat(++maskUid$1);
6184
+ }),
6185
+ _useState2 = _slicedToArray(_useState, 1),
6186
+ maskId = _useState2[0];
6187
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6188
+ xmlns: "http://www.w3.org/2000/svg",
6189
+ width: 24,
6190
+ height: 24,
6191
+ viewBox: "0 0 24 24",
6192
+ "data-testid": "GearFailedIcon",
6193
+ fill: "none",
6194
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
6195
+ strokeWidth: 2,
6196
+ strokeLinecap: "round",
6197
+ strokeLinejoin: "round",
6198
+ focusable: false,
6199
+ ref: ref
6200
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
6201
+ gradient: gradient
6202
+ }), /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("mask", {
6203
+ id: maskId
6204
+ }, /*#__PURE__*/React__default["default"].createElement("rect", {
6205
+ x: 0,
6206
+ y: 0,
6207
+ width: 24,
6208
+ height: 24,
6209
+ fill: "#fff",
6210
+ stroke: "none"
6211
+ }), /*#__PURE__*/React__default["default"].createElement("circle", {
6212
+ cx: 17.5,
6213
+ cy: 17.5,
6214
+ r: 5.5,
6215
+ fill: "#000",
6216
+ stroke: "none"
6217
+ }))), /*#__PURE__*/React__default["default"].createElement("g", {
6218
+ mask: "url(#".concat(maskId, ")")
6219
+ }, /*#__PURE__*/React__default["default"].createElement("path", {
6220
+ d: "M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"
6221
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6222
+ d: "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"
6223
+ })), /*#__PURE__*/React__default["default"].createElement("path", {
6224
+ d: "M15 15l5 5"
6225
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6226
+ d: "M20 15l-5 5"
6227
+ }));
6228
+ });
6229
+ GearFailedIcon.displayName = "GearFailedIcon";
6230
+ var GearFailedIcon$1 = GearFailedIcon;
6231
+
6232
+ var _excluded$3A = ["gradient"];
6008
6233
 
6009
6234
  /**
6010
6235
  * @component GiftIcon
@@ -6034,7 +6259,7 @@
6034
6259
  */
6035
6260
  var GiftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6036
6261
  var gradient = _ref.gradient,
6037
- props = _objectWithoutProperties(_ref, _excluded$3z);
6262
+ props = _objectWithoutProperties(_ref, _excluded$3A);
6038
6263
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6039
6264
  xmlns: "http://www.w3.org/2000/svg",
6040
6265
  width: 24,
@@ -6055,7 +6280,7 @@
6055
6280
  GiftIcon.displayName = "GiftIcon";
6056
6281
  var GiftIcon$1 = GiftIcon;
6057
6282
 
6058
- var _excluded$3y = ["gradient"];
6283
+ var _excluded$3z = ["gradient"];
6059
6284
 
6060
6285
  /**
6061
6286
  * @component GitBranchIcon
@@ -6068,7 +6293,7 @@
6068
6293
  */
6069
6294
  var GitBranchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6070
6295
  var gradient = _ref.gradient,
6071
- props = _objectWithoutProperties(_ref, _excluded$3y);
6296
+ props = _objectWithoutProperties(_ref, _excluded$3z);
6072
6297
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6073
6298
  xmlns: "http://www.w3.org/2000/svg",
6074
6299
  width: 24,
@@ -6099,7 +6324,7 @@
6099
6324
  GitBranchIcon.displayName = "GitBranchIcon";
6100
6325
  var GitBranchIcon$1 = GitBranchIcon;
6101
6326
 
6102
- var _excluded$3x = ["gradient"];
6327
+ var _excluded$3y = ["gradient"];
6103
6328
 
6104
6329
  /**
6105
6330
  * @component GitCommitIcon
@@ -6112,7 +6337,7 @@
6112
6337
  */
6113
6338
  var GitCommitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6114
6339
  var gradient = _ref.gradient,
6115
- props = _objectWithoutProperties(_ref, _excluded$3x);
6340
+ props = _objectWithoutProperties(_ref, _excluded$3y);
6116
6341
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6117
6342
  xmlns: "http://www.w3.org/2000/svg",
6118
6343
  width: 24,
@@ -6139,7 +6364,7 @@
6139
6364
  GitCommitIcon.displayName = "GitCommitIcon";
6140
6365
  var GitCommitIcon$1 = GitCommitIcon;
6141
6366
 
6142
- var _excluded$3w = ["gradient"];
6367
+ var _excluded$3x = ["gradient"];
6143
6368
 
6144
6369
  /**
6145
6370
  * @component GitHubIcon
@@ -6154,7 +6379,7 @@
6154
6379
  */
6155
6380
  var GitHubIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6156
6381
  var gradient = _ref.gradient,
6157
- props = _objectWithoutProperties(_ref, _excluded$3w);
6382
+ props = _objectWithoutProperties(_ref, _excluded$3x);
6158
6383
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6159
6384
  xmlns: "http://www.w3.org/2000/svg",
6160
6385
  width: 24,
@@ -6175,7 +6400,7 @@
6175
6400
  GitHubIcon.displayName = "GitHubIcon";
6176
6401
  var GitHubIcon$1 = GitHubIcon;
6177
6402
 
6178
- var _excluded$3v = ["gradient"];
6403
+ var _excluded$3w = ["gradient"];
6179
6404
 
6180
6405
  /**
6181
6406
  * @component GitIcon
@@ -6190,7 +6415,7 @@
6190
6415
  */
6191
6416
  var GitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6192
6417
  var gradient = _ref.gradient,
6193
- props = _objectWithoutProperties(_ref, _excluded$3v);
6418
+ props = _objectWithoutProperties(_ref, _excluded$3w);
6194
6419
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6195
6420
  xmlns: "http://www.w3.org/2000/svg",
6196
6421
  width: 24,
@@ -6211,7 +6436,7 @@
6211
6436
  GitIcon.displayName = "GitIcon";
6212
6437
  var GitIcon$1 = GitIcon;
6213
6438
 
6214
- var _excluded$3u = ["gradient"];
6439
+ var _excluded$3v = ["gradient"];
6215
6440
 
6216
6441
  /**
6217
6442
  * @component GitLabIcon
@@ -6226,7 +6451,7 @@
6226
6451
  */
6227
6452
  var GitLabIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6228
6453
  var gradient = _ref.gradient,
6229
- props = _objectWithoutProperties(_ref, _excluded$3u);
6454
+ props = _objectWithoutProperties(_ref, _excluded$3v);
6230
6455
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6231
6456
  xmlns: "http://www.w3.org/2000/svg",
6232
6457
  width: 24,
@@ -6247,6 +6472,52 @@
6247
6472
  GitLabIcon.displayName = "GitLabIcon";
6248
6473
  var GitLabIcon$1 = GitLabIcon;
6249
6474
 
6475
+ var _excluded$3u = ["gradient"];
6476
+
6477
+ /**
6478
+ * @component GitMergeIcon
6479
+ * @description
6480
+ * Outline git merge glyph for source-control signifiers. Matches
6481
+ * GitPullRequestIcon, but the incoming branch runs as a connector line into
6482
+ * the upper-left node instead of ending in an arrowhead, signifying a merge.
6483
+ *
6484
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
6485
+ *
6486
+ * @see https://design.activecollab.com/docs/foundations/icons
6487
+ */
6488
+ var GitMergeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6489
+ var gradient = _ref.gradient,
6490
+ props = _objectWithoutProperties(_ref, _excluded$3u);
6491
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6492
+ xmlns: "http://www.w3.org/2000/svg",
6493
+ width: 24,
6494
+ height: 24,
6495
+ viewBox: "0 0 24 24",
6496
+ "data-testid": "GitMergeIcon",
6497
+ fill: "none",
6498
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
6499
+ strokeWidth: 2,
6500
+ strokeLinecap: "round",
6501
+ strokeLinejoin: "round",
6502
+ focusable: false,
6503
+ ref: ref
6504
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
6505
+ gradient: gradient
6506
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6507
+ d: "M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6508
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6509
+ d: "M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6510
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6511
+ d: "M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6512
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6513
+ d: "M7 8v8"
6514
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
6515
+ d: "M9 6h4a4 4 0 0 1 4 4v6"
6516
+ }));
6517
+ });
6518
+ GitMergeIcon.displayName = "GitMergeIcon";
6519
+ var GitMergeIcon$1 = GitMergeIcon;
6520
+
6250
6521
  var _excluded$3t = ["gradient"];
6251
6522
 
6252
6523
  /**
@@ -6375,21 +6646,21 @@
6375
6646
  }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
6376
6647
  gradient: gradient
6377
6648
  }), /*#__PURE__*/React__default["default"].createElement("path", {
6378
- d: "M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6649
+ d: "M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6379
6650
  }), /*#__PURE__*/React__default["default"].createElement("path", {
6380
- d: "M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6651
+ d: "M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6381
6652
  }), /*#__PURE__*/React__default["default"].createElement("path", {
6382
- d: "M6 8v8"
6653
+ d: "M7 8v8"
6383
6654
  }), /*#__PURE__*/React__default["default"].createElement("path", {
6384
- d: "M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6655
+ d: "M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
6385
6656
  }), /*#__PURE__*/React__default["default"].createElement("path", {
6386
- d: "M18 13.5v0"
6657
+ d: "M17 13.5v0"
6387
6658
  }), /*#__PURE__*/React__default["default"].createElement("path", {
6388
- d: "M18 10.5v0"
6659
+ d: "M17 10.5v0"
6389
6660
  }), /*#__PURE__*/React__default["default"].createElement("path", {
6390
- d: "M16 4l4 4"
6661
+ d: "M15 4l4 4"
6391
6662
  }), /*#__PURE__*/React__default["default"].createElement("path", {
6392
- d: "M20 4l-4 4"
6663
+ d: "M19 4l-4 4"
6393
6664
  }));
6394
6665
  });
6395
6666
  GitPullRequestClosedIcon.displayName = "GitPullRequestClosedIcon";
@@ -26424,6 +26695,9 @@
26424
26695
  exports.CloseDocumentIcon = CloseDocumentIcon$1;
26425
26696
  exports.CloseIcon = CloseIcon$1;
26426
26697
  exports.CloseSmallIcon = CloseSmallIcon$1;
26698
+ exports.CloudDeployFailedIcon = CloudDeployFailedIcon$1;
26699
+ exports.CloudDeployIcon = CloudDeployIcon$1;
26700
+ exports.CloudIcon = CloudIcon$1;
26427
26701
  exports.CollapsIcon = CollapsIcon$1;
26428
26702
  exports.CollapseAllIcon = CollapseAllIcon$1;
26429
26703
  exports.CollapseExpandSingleIcon = CollapseExpandSingleIcon$1;
@@ -26500,12 +26774,15 @@
26500
26774
  exports.FolderMoveIcon = FolderMoveIcon$1;
26501
26775
  exports.FolderOutlineIcon = FolderOutlineIcon$1;
26502
26776
  exports.FromElement = FromElement;
26777
+ exports.GearFailedIcon = GearFailedIcon$1;
26778
+ exports.GearIcon = GearIcon$1;
26503
26779
  exports.GiftIcon = GiftIcon$1;
26504
26780
  exports.GitBranchIcon = GitBranchIcon$1;
26505
26781
  exports.GitCommitIcon = GitCommitIcon$1;
26506
26782
  exports.GitHubIcon = GitHubIcon$1;
26507
26783
  exports.GitIcon = GitIcon$1;
26508
26784
  exports.GitLabIcon = GitLabIcon$1;
26785
+ exports.GitMergeIcon = GitMergeIcon$1;
26509
26786
  exports.GitPullRequestClosedIcon = GitPullRequestClosedIcon$1;
26510
26787
  exports.GitPullRequestDraftIcon = GitPullRequestDraftIcon$1;
26511
26788
  exports.GitPullRequestIcon = GitPullRequestIcon$1;