@activecollab/components 2.0.447 → 2.0.449

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 (47) hide show
  1. package/dist/cjs/components/Icons/collection/ClipboardIcon.js +61 -0
  2. package/dist/cjs/components/Icons/collection/ClipboardIcon.js.map +1 -0
  3. package/dist/cjs/components/Icons/collection/CutIcon.js +61 -0
  4. package/dist/cjs/components/Icons/collection/CutIcon.js.map +1 -0
  5. package/dist/cjs/components/Icons/collection/PasteIcon.js +61 -0
  6. package/dist/cjs/components/Icons/collection/PasteIcon.js.map +1 -0
  7. package/dist/cjs/components/Icons/collection/ScissorsIcon.js +61 -0
  8. package/dist/cjs/components/Icons/collection/ScissorsIcon.js.map +1 -0
  9. package/dist/cjs/components/Icons/collection/index.js +28 -0
  10. package/dist/cjs/components/Icons/collection/index.js.map +1 -1
  11. package/dist/cjs/presentation/shared/index.js +15 -1
  12. package/dist/cjs/presentation/shared/index.js.map +1 -1
  13. package/dist/cjs/presentation/shared/portfolioDetails.js +36 -12
  14. package/dist/cjs/presentation/shared/portfolioDetails.js.map +1 -1
  15. package/dist/esm/components/Icons/collection/ClipboardIcon.d.ts +32 -0
  16. package/dist/esm/components/Icons/collection/ClipboardIcon.d.ts.map +1 -0
  17. package/dist/esm/components/Icons/collection/ClipboardIcon.js +54 -0
  18. package/dist/esm/components/Icons/collection/ClipboardIcon.js.map +1 -0
  19. package/dist/esm/components/Icons/collection/CutIcon.d.ts +32 -0
  20. package/dist/esm/components/Icons/collection/CutIcon.d.ts.map +1 -0
  21. package/dist/esm/components/Icons/collection/CutIcon.js +54 -0
  22. package/dist/esm/components/Icons/collection/CutIcon.js.map +1 -0
  23. package/dist/esm/components/Icons/collection/PasteIcon.d.ts +32 -0
  24. package/dist/esm/components/Icons/collection/PasteIcon.d.ts.map +1 -0
  25. package/dist/esm/components/Icons/collection/PasteIcon.js +54 -0
  26. package/dist/esm/components/Icons/collection/PasteIcon.js.map +1 -0
  27. package/dist/esm/components/Icons/collection/ScissorsIcon.d.ts +32 -0
  28. package/dist/esm/components/Icons/collection/ScissorsIcon.d.ts.map +1 -0
  29. package/dist/esm/components/Icons/collection/ScissorsIcon.js +54 -0
  30. package/dist/esm/components/Icons/collection/ScissorsIcon.js.map +1 -0
  31. package/dist/esm/components/Icons/collection/index.d.ts +4 -0
  32. package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
  33. package/dist/esm/components/Icons/collection/index.js +4 -0
  34. package/dist/esm/components/Icons/collection/index.js.map +1 -1
  35. package/dist/esm/presentation/shared/index.d.ts +2 -2
  36. package/dist/esm/presentation/shared/index.d.ts.map +1 -1
  37. package/dist/esm/presentation/shared/index.js +1 -1
  38. package/dist/esm/presentation/shared/index.js.map +1 -1
  39. package/dist/esm/presentation/shared/portfolioDetails.d.ts +36 -2
  40. package/dist/esm/presentation/shared/portfolioDetails.d.ts.map +1 -1
  41. package/dist/esm/presentation/shared/portfolioDetails.js +33 -11
  42. package/dist/esm/presentation/shared/portfolioDetails.js.map +1 -1
  43. package/dist/index.js +644 -440
  44. package/dist/index.js.map +1 -1
  45. package/dist/index.min.js +1 -1
  46. package/dist/index.min.js.map +1 -1
  47. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -208,7 +208,7 @@
208
208
  })(["display:inline-flex;svg{margin:0 4px;}"]);
209
209
  StyledButtonElement.displayName = "StyledButtonElement";
210
210
 
211
- var _excluded$5Y = ["children", "active", "variant", "size", "type", "inset", "className"];
211
+ var _excluded$60 = ["children", "active", "variant", "size", "type", "inset", "className"];
212
212
  /**
213
213
  * @component Button
214
214
  * @description
@@ -243,7 +243,7 @@
243
243
  _ref$inset = _ref.inset,
244
244
  inset = _ref$inset === void 0 ? "default" : _ref$inset,
245
245
  className = _ref.className,
246
- args = _objectWithoutProperties(_ref, _excluded$5Y);
246
+ args = _objectWithoutProperties(_ref, _excluded$60);
247
247
  return /*#__PURE__*/React__default["default"].createElement(StyledButton$2, _extends({
248
248
  className: classNames__default["default"]("c-btn", className, {
249
249
  "c-btn--contained": variant === "primary" || variant === "contained",
@@ -310,7 +310,7 @@
310
310
  })));
311
311
  };
312
312
 
313
- var _excluded$5X = ["gradient"];
313
+ var _excluded$5$ = ["gradient"];
314
314
 
315
315
  /**
316
316
  * @component AddCrossTinyIcon
@@ -340,7 +340,7 @@
340
340
  */
341
341
  var AddCrossTinyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
342
342
  var gradient = _ref.gradient,
343
- props = _objectWithoutProperties(_ref, _excluded$5X);
343
+ props = _objectWithoutProperties(_ref, _excluded$5$);
344
344
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
345
345
  xmlns: "http://www.w3.org/2000/svg",
346
346
  width: 24,
@@ -360,12 +360,12 @@
360
360
  AddCrossTinyIcon.displayName = "AddCrossTinyIcon";
361
361
  var AddCrossTinyIcon$1 = AddCrossTinyIcon;
362
362
 
363
- var _excluded$5W = ["className", "disabled"];
363
+ var _excluded$5_ = ["className", "disabled"];
364
364
  var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
365
365
  var className = _ref.className,
366
366
  _ref$disabled = _ref.disabled,
367
367
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
368
- rest = _objectWithoutProperties(_ref, _excluded$5W);
368
+ rest = _objectWithoutProperties(_ref, _excluded$5_);
369
369
  return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
370
370
  ref: ref,
371
371
  variant: "contained",
@@ -403,12 +403,12 @@
403
403
  });
404
404
  StyledButtonGroup$1.displayName = "StyledButtonGroup";
405
405
 
406
- var _excluded$5V = ["children", "className", "invalid"];
406
+ var _excluded$5Z = ["children", "className", "invalid"];
407
407
  var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
408
408
  var children = _ref.children,
409
409
  className = _ref.className,
410
410
  invalid = _ref.invalid,
411
- rest = _objectWithoutProperties(_ref, _excluded$5V);
411
+ rest = _objectWithoutProperties(_ref, _excluded$5Z);
412
412
  return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
413
413
  ref: ref,
414
414
  className: classNames__default["default"]("c-btn-group", className),
@@ -433,11 +433,11 @@
433
433
  })(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
434
434
  StyledListSeparator$1.displayName = "StyledListSeparator";
435
435
 
436
- var _excluded$5U = ["children", "className"];
436
+ var _excluded$5Y = ["children", "className"];
437
437
  var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
438
438
  var children = _ref.children,
439
439
  className = _ref.className,
440
- props = _objectWithoutProperties(_ref, _excluded$5U);
440
+ props = _objectWithoutProperties(_ref, _excluded$5Y);
441
441
  return /*#__PURE__*/React__default["default"].createElement(StyledListItem$1, _extends({
442
442
  className: classNames__default["default"]("c-list-item", className),
443
443
  ref: ref,
@@ -446,21 +446,21 @@
446
446
  });
447
447
  ListItem.displayName = "ListItem";
448
448
 
449
- var _excluded$5T = ["className"];
449
+ var _excluded$5X = ["className"];
450
450
  var ListSeparator = function ListSeparator(_ref) {
451
451
  var className = _ref.className,
452
- props = _objectWithoutProperties(_ref, _excluded$5T);
452
+ props = _objectWithoutProperties(_ref, _excluded$5X);
453
453
  return /*#__PURE__*/React__default["default"].createElement(StyledListSeparator$1, _extends({
454
454
  className: classNames__default["default"]("c-list-separator", className)
455
455
  }, props));
456
456
  };
457
457
  ListSeparator.displayName = "ListSeparator";
458
458
 
459
- var _excluded$5S = ["children", "className"];
459
+ var _excluded$5W = ["children", "className"];
460
460
  var _List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
461
461
  var children = _ref.children,
462
462
  className = _ref.className,
463
- props = _objectWithoutProperties(_ref, _excluded$5S);
463
+ props = _objectWithoutProperties(_ref, _excluded$5W);
464
464
  return /*#__PURE__*/React__default["default"].createElement(StyledList$3, _extends({
465
465
  className: className,
466
466
  ref: ref,
@@ -1059,7 +1059,7 @@
1059
1059
  return size === "big" && styled.css(["width:40px;"]);
1060
1060
  });
1061
1061
 
1062
- var _excluded$5R = ["children", "className", "variant", "size", "active"];
1062
+ var _excluded$5V = ["children", "className", "variant", "size", "active"];
1063
1063
 
1064
1064
  // eslint-disable-next-line @typescript-eslint/no-empty-interface
1065
1065
 
@@ -1089,7 +1089,7 @@
1089
1089
  variant = _ref.variant,
1090
1090
  size = _ref.size,
1091
1091
  active = _ref.active,
1092
- args = _objectWithoutProperties(_ref, _excluded$5R);
1092
+ args = _objectWithoutProperties(_ref, _excluded$5V);
1093
1093
  return /*#__PURE__*/React__default["default"].createElement(StyledIconButton$1, _extends({
1094
1094
  className: className,
1095
1095
  variant: variant,
@@ -1100,7 +1100,7 @@
1100
1100
  });
1101
1101
  IconButton.displayName = "IconButton";
1102
1102
 
1103
- var _excluded$5Q = ["gradient"];
1103
+ var _excluded$5U = ["gradient"];
1104
1104
 
1105
1105
  /**
1106
1106
  * @component RecurringIcon
@@ -1130,7 +1130,7 @@
1130
1130
  */
1131
1131
  var RecurringIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1132
1132
  var gradient = _ref.gradient,
1133
- props = _objectWithoutProperties(_ref, _excluded$5Q);
1133
+ props = _objectWithoutProperties(_ref, _excluded$5U);
1134
1134
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1135
1135
  xmlns: "http://www.w3.org/2000/svg",
1136
1136
  width: 18,
@@ -1151,7 +1151,7 @@
1151
1151
  RecurringIcon.displayName = "RecurringIcon";
1152
1152
  var RecurringIcon$1 = RecurringIcon;
1153
1153
 
1154
- var _excluded$5P = ["gradient"];
1154
+ var _excluded$5T = ["gradient"];
1155
1155
 
1156
1156
  /**
1157
1157
  * @component AccessLogIcon
@@ -1181,7 +1181,7 @@
1181
1181
  */
1182
1182
  var AccessLogIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1183
1183
  var gradient = _ref.gradient,
1184
- props = _objectWithoutProperties(_ref, _excluded$5P);
1184
+ props = _objectWithoutProperties(_ref, _excluded$5T);
1185
1185
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1186
1186
  xmlns: "http://www.w3.org/2000/svg",
1187
1187
  width: 24,
@@ -1209,7 +1209,7 @@
1209
1209
  AccessLogIcon.displayName = "AccessLogIcon";
1210
1210
  var AccessLogIcon$1 = AccessLogIcon;
1211
1211
 
1212
- var _excluded$5O = ["gradient"];
1212
+ var _excluded$5S = ["gradient"];
1213
1213
 
1214
1214
  /**
1215
1215
  * @component ActivityIcon
@@ -1239,7 +1239,7 @@
1239
1239
  */
1240
1240
  var ActivityIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1241
1241
  var gradient = _ref.gradient,
1242
- props = _objectWithoutProperties(_ref, _excluded$5O);
1242
+ props = _objectWithoutProperties(_ref, _excluded$5S);
1243
1243
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1244
1244
  xmlns: "http://www.w3.org/2000/svg",
1245
1245
  width: 24,
@@ -1263,7 +1263,7 @@
1263
1263
  ActivityIcon.displayName = "ActivityIcon";
1264
1264
  var ActivityIcon$1 = ActivityIcon;
1265
1265
 
1266
- var _excluded$5N = ["gradient"];
1266
+ var _excluded$5R = ["gradient"];
1267
1267
 
1268
1268
  /**
1269
1269
  * @component AddCrossIcon
@@ -1293,7 +1293,7 @@
1293
1293
  */
1294
1294
  var AddCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1295
1295
  var gradient = _ref.gradient,
1296
- props = _objectWithoutProperties(_ref, _excluded$5N);
1296
+ props = _objectWithoutProperties(_ref, _excluded$5R);
1297
1297
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1298
1298
  xmlns: "http://www.w3.org/2000/svg",
1299
1299
  width: 10,
@@ -1313,7 +1313,7 @@
1313
1313
  AddCrossIcon.displayName = "AddCrossIcon";
1314
1314
  var AddCrossIcon$1 = AddCrossIcon;
1315
1315
 
1316
- var _excluded$5M = ["gradient"];
1316
+ var _excluded$5Q = ["gradient"];
1317
1317
 
1318
1318
  /**
1319
1319
  * @component ArchiveIcon
@@ -1343,7 +1343,7 @@
1343
1343
  */
1344
1344
  var ArchiveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1345
1345
  var gradient = _ref.gradient,
1346
- props = _objectWithoutProperties(_ref, _excluded$5M);
1346
+ props = _objectWithoutProperties(_ref, _excluded$5Q);
1347
1347
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1348
1348
  xmlns: "http://www.w3.org/2000/svg",
1349
1349
  width: 24,
@@ -1364,7 +1364,7 @@
1364
1364
  ArchiveIcon.displayName = "ArchiveIcon";
1365
1365
  var ArchiveIcon$1 = ArchiveIcon;
1366
1366
 
1367
- var _excluded$5L = ["gradient"];
1367
+ var _excluded$5P = ["gradient"];
1368
1368
 
1369
1369
  /**
1370
1370
  * @component ArrowBackMobileIcon
@@ -1394,7 +1394,7 @@
1394
1394
  */
1395
1395
  var ArrowBackMobileIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1396
1396
  var gradient = _ref.gradient,
1397
- props = _objectWithoutProperties(_ref, _excluded$5L);
1397
+ props = _objectWithoutProperties(_ref, _excluded$5P);
1398
1398
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1399
1399
  xmlns: "http://www.w3.org/2000/svg",
1400
1400
  width: 24,
@@ -1415,7 +1415,7 @@
1415
1415
  ArrowBackMobileIcon.displayName = "ArrowBackMobileIcon";
1416
1416
  var ArrowBackMobileIcon$1 = ArrowBackMobileIcon;
1417
1417
 
1418
- var _excluded$5K = ["gradient"];
1418
+ var _excluded$5O = ["gradient"];
1419
1419
 
1420
1420
  /**
1421
1421
  * @component ArrowCollapseMultipleIcon
@@ -1445,7 +1445,7 @@
1445
1445
  */
1446
1446
  var ArrowCollapseMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1447
1447
  var gradient = _ref.gradient,
1448
- props = _objectWithoutProperties(_ref, _excluded$5K);
1448
+ props = _objectWithoutProperties(_ref, _excluded$5O);
1449
1449
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1450
1450
  xmlns: "http://www.w3.org/2000/svg",
1451
1451
  width: 24,
@@ -1465,7 +1465,7 @@
1465
1465
  ArrowCollapseMultipleIcon.displayName = "ArrowCollapseMultipleIcon";
1466
1466
  var ArrowCollapseMultipleIcon$1 = ArrowCollapseMultipleIcon;
1467
1467
 
1468
- var _excluded$5J = ["gradient"];
1468
+ var _excluded$5N = ["gradient"];
1469
1469
 
1470
1470
  /**
1471
1471
  * @component ArrowDownLongIcon
@@ -1495,7 +1495,7 @@
1495
1495
  */
1496
1496
  var ArrowDownLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1497
1497
  var gradient = _ref.gradient,
1498
- props = _objectWithoutProperties(_ref, _excluded$5J);
1498
+ props = _objectWithoutProperties(_ref, _excluded$5N);
1499
1499
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1500
1500
  xmlns: "http://www.w3.org/2000/svg",
1501
1501
  width: 24,
@@ -1515,7 +1515,7 @@
1515
1515
  ArrowDownLongIcon.displayName = "ArrowDownLongIcon";
1516
1516
  var ArrowDownLongIcon$1 = ArrowDownLongIcon;
1517
1517
 
1518
- var _excluded$5I = ["gradient"];
1518
+ var _excluded$5M = ["gradient"];
1519
1519
 
1520
1520
  /**
1521
1521
  * @component ArrowDownSmallIcon
@@ -1545,7 +1545,7 @@
1545
1545
  */
1546
1546
  var ArrowDownSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1547
1547
  var gradient = _ref.gradient,
1548
- props = _objectWithoutProperties(_ref, _excluded$5I);
1548
+ props = _objectWithoutProperties(_ref, _excluded$5M);
1549
1549
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1550
1550
  xmlns: "http://www.w3.org/2000/svg",
1551
1551
  width: 16,
@@ -1565,7 +1565,7 @@
1565
1565
  ArrowDownSmallIcon.displayName = "ArrowDownSmallIcon";
1566
1566
  var ArrowDownSmallIcon$1 = ArrowDownSmallIcon;
1567
1567
 
1568
- var _excluded$5H = ["gradient"];
1568
+ var _excluded$5L = ["gradient"];
1569
1569
 
1570
1570
  /**
1571
1571
  * @component ArrowDownIcon
@@ -1595,7 +1595,7 @@
1595
1595
  */
1596
1596
  var ArrowDownIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1597
1597
  var gradient = _ref.gradient,
1598
- props = _objectWithoutProperties(_ref, _excluded$5H);
1598
+ props = _objectWithoutProperties(_ref, _excluded$5L);
1599
1599
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1600
1600
  xmlns: "http://www.w3.org/2000/svg",
1601
1601
  width: 24,
@@ -1614,7 +1614,7 @@
1614
1614
  ArrowDownIcon.displayName = "ArrowDownIcon";
1615
1615
  var ArrowDownIcon$1 = ArrowDownIcon;
1616
1616
 
1617
- var _excluded$5G = ["gradient"];
1617
+ var _excluded$5K = ["gradient"];
1618
1618
 
1619
1619
  /**
1620
1620
  * @component ArrowExpandeMultipleIcon
@@ -1644,7 +1644,7 @@
1644
1644
  */
1645
1645
  var ArrowExpandeMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1646
1646
  var gradient = _ref.gradient,
1647
- props = _objectWithoutProperties(_ref, _excluded$5G);
1647
+ props = _objectWithoutProperties(_ref, _excluded$5K);
1648
1648
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1649
1649
  xmlns: "http://www.w3.org/2000/svg",
1650
1650
  width: 24,
@@ -1664,7 +1664,7 @@
1664
1664
  ArrowExpandeMultipleIcon.displayName = "ArrowExpandeMultipleIcon";
1665
1665
  var ArrowExpandeMultipleIcon$1 = ArrowExpandeMultipleIcon;
1666
1666
 
1667
- var _excluded$5F = ["gradient"];
1667
+ var _excluded$5J = ["gradient"];
1668
1668
 
1669
1669
  /**
1670
1670
  * @component ArrowLeftBoxIcon
@@ -1694,7 +1694,7 @@
1694
1694
  */
1695
1695
  var ArrowLeftBoxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1696
1696
  var gradient = _ref.gradient,
1697
- props = _objectWithoutProperties(_ref, _excluded$5F);
1697
+ props = _objectWithoutProperties(_ref, _excluded$5J);
1698
1698
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1699
1699
  xmlns: "http://www.w3.org/2000/svg",
1700
1700
  width: 24,
@@ -1714,7 +1714,7 @@
1714
1714
  ArrowLeftBoxIcon.displayName = "ArrowLeftBoxIcon";
1715
1715
  var ArrowLeftBoxIcon$1 = ArrowLeftBoxIcon;
1716
1716
 
1717
- var _excluded$5E = ["gradient"];
1717
+ var _excluded$5I = ["gradient"];
1718
1718
 
1719
1719
  /**
1720
1720
  * @component ArrowLeftIcon
@@ -1744,7 +1744,7 @@
1744
1744
  */
1745
1745
  var ArrowLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1746
1746
  var gradient = _ref.gradient,
1747
- props = _objectWithoutProperties(_ref, _excluded$5E);
1747
+ props = _objectWithoutProperties(_ref, _excluded$5I);
1748
1748
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1749
1749
  xmlns: "http://www.w3.org/2000/svg",
1750
1750
  width: 24,
@@ -1764,7 +1764,7 @@
1764
1764
  ArrowLeftIcon.displayName = "ArrowLeftIcon";
1765
1765
  var ArrowLeftIcon$1 = ArrowLeftIcon;
1766
1766
 
1767
- var _excluded$5D = ["gradient"];
1767
+ var _excluded$5H = ["gradient"];
1768
1768
 
1769
1769
  /**
1770
1770
  * @component ArrowRefreshIcon
@@ -1794,7 +1794,7 @@
1794
1794
  */
1795
1795
  var ArrowRefreshIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1796
1796
  var gradient = _ref.gradient,
1797
- props = _objectWithoutProperties(_ref, _excluded$5D);
1797
+ props = _objectWithoutProperties(_ref, _excluded$5H);
1798
1798
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1799
1799
  xmlns: "http://www.w3.org/2000/svg",
1800
1800
  width: 24,
@@ -1815,7 +1815,7 @@
1815
1815
  ArrowRefreshIcon.displayName = "ArrowRefreshIcon";
1816
1816
  var ArrowRefreshIcon$1 = ArrowRefreshIcon;
1817
1817
 
1818
- var _excluded$5C = ["gradient"];
1818
+ var _excluded$5G = ["gradient"];
1819
1819
 
1820
1820
  /**
1821
1821
  * @component ArrowRestoreIcon
@@ -1845,7 +1845,7 @@
1845
1845
  */
1846
1846
  var ArrowRestoreIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1847
1847
  var gradient = _ref.gradient,
1848
- props = _objectWithoutProperties(_ref, _excluded$5C);
1848
+ props = _objectWithoutProperties(_ref, _excluded$5G);
1849
1849
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1850
1850
  xmlns: "http://www.w3.org/2000/svg",
1851
1851
  width: 24,
@@ -1865,7 +1865,7 @@
1865
1865
  ArrowRestoreIcon.displayName = "ArrowRestoreIcon";
1866
1866
  var ArrowRestoreIcon$1 = ArrowRestoreIcon;
1867
1867
 
1868
- var _excluded$5B = ["gradient"];
1868
+ var _excluded$5F = ["gradient"];
1869
1869
 
1870
1870
  /**
1871
1871
  * @component ArrowRightIcon
@@ -1895,7 +1895,7 @@
1895
1895
  */
1896
1896
  var ArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1897
1897
  var gradient = _ref.gradient,
1898
- props = _objectWithoutProperties(_ref, _excluded$5B);
1898
+ props = _objectWithoutProperties(_ref, _excluded$5F);
1899
1899
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1900
1900
  xmlns: "http://www.w3.org/2000/svg",
1901
1901
  width: 24,
@@ -1915,7 +1915,7 @@
1915
1915
  ArrowRightIcon.displayName = "ArrowRightIcon";
1916
1916
  var ArrowRightIcon$1 = ArrowRightIcon;
1917
1917
 
1918
- var _excluded$5A = ["gradient"];
1918
+ var _excluded$5E = ["gradient"];
1919
1919
 
1920
1920
  /**
1921
1921
  * @component ArrowUpLongIcon
@@ -1945,7 +1945,7 @@
1945
1945
  */
1946
1946
  var ArrowUpLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1947
1947
  var gradient = _ref.gradient,
1948
- props = _objectWithoutProperties(_ref, _excluded$5A);
1948
+ props = _objectWithoutProperties(_ref, _excluded$5E);
1949
1949
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
1950
1950
  xmlns: "http://www.w3.org/2000/svg",
1951
1951
  width: 24,
@@ -1965,7 +1965,7 @@
1965
1965
  ArrowUpLongIcon.displayName = "ArrowUpLongIcon";
1966
1966
  var ArrowUpLongIcon$1 = ArrowUpLongIcon;
1967
1967
 
1968
- var _excluded$5z = ["gradient"];
1968
+ var _excluded$5D = ["gradient"];
1969
1969
 
1970
1970
  /**
1971
1971
  * @component ArrowUpIcon
@@ -1995,7 +1995,7 @@
1995
1995
  */
1996
1996
  var ArrowUpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
1997
1997
  var gradient = _ref.gradient,
1998
- props = _objectWithoutProperties(_ref, _excluded$5z);
1998
+ props = _objectWithoutProperties(_ref, _excluded$5D);
1999
1999
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2000
2000
  xmlns: "http://www.w3.org/2000/svg",
2001
2001
  width: 24,
@@ -2014,7 +2014,7 @@
2014
2014
  ArrowUpIcon.displayName = "ArrowUpIcon";
2015
2015
  var ArrowUpIcon$1 = ArrowUpIcon;
2016
2016
 
2017
- var _excluded$5y = ["gradient"];
2017
+ var _excluded$5C = ["gradient"];
2018
2018
 
2019
2019
  /**
2020
2020
  * @component AssignIcon
@@ -2044,7 +2044,7 @@
2044
2044
  */
2045
2045
  var AssignIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2046
2046
  var gradient = _ref.gradient,
2047
- props = _objectWithoutProperties(_ref, _excluded$5y);
2047
+ props = _objectWithoutProperties(_ref, _excluded$5C);
2048
2048
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2049
2049
  xmlns: "http://www.w3.org/2000/svg",
2050
2050
  width: 24,
@@ -2064,7 +2064,7 @@
2064
2064
  AssignIcon.displayName = "AssignIcon";
2065
2065
  var AssignIcon$1 = AssignIcon;
2066
2066
 
2067
- var _excluded$5x = ["gradient"];
2067
+ var _excluded$5B = ["gradient"];
2068
2068
 
2069
2069
  /**
2070
2070
  * @component AttachmentIcon
@@ -2094,7 +2094,7 @@
2094
2094
  */
2095
2095
  var AttachmentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2096
2096
  var gradient = _ref.gradient,
2097
- props = _objectWithoutProperties(_ref, _excluded$5x);
2097
+ props = _objectWithoutProperties(_ref, _excluded$5B);
2098
2098
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2099
2099
  xmlns: "http://www.w3.org/2000/svg",
2100
2100
  width: 24,
@@ -2114,7 +2114,7 @@
2114
2114
  AttachmentIcon.displayName = "AttachmentIcon";
2115
2115
  var AttachmentIcon$1 = AttachmentIcon;
2116
2116
 
2117
- var _excluded$5w = ["gradient"];
2117
+ var _excluded$5A = ["gradient"];
2118
2118
 
2119
2119
  /**
2120
2120
  * @component BellOffSmallIcon
@@ -2144,7 +2144,7 @@
2144
2144
  */
2145
2145
  var BellOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2146
2146
  var gradient = _ref.gradient,
2147
- props = _objectWithoutProperties(_ref, _excluded$5w);
2147
+ props = _objectWithoutProperties(_ref, _excluded$5A);
2148
2148
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2149
2149
  xmlns: "http://www.w3.org/2000/svg",
2150
2150
  width: 12,
@@ -2164,7 +2164,7 @@
2164
2164
  BellOffSmallIcon.displayName = "BellOffSmallIcon";
2165
2165
  var BellOffSmallIcon$1 = BellOffSmallIcon;
2166
2166
 
2167
- var _excluded$5v = ["gradient"];
2167
+ var _excluded$5z = ["gradient"];
2168
2168
 
2169
2169
  /**
2170
2170
  * @component BellOffIcon
@@ -2194,7 +2194,7 @@
2194
2194
  */
2195
2195
  var BellOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2196
2196
  var gradient = _ref.gradient,
2197
- props = _objectWithoutProperties(_ref, _excluded$5v);
2197
+ props = _objectWithoutProperties(_ref, _excluded$5z);
2198
2198
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2199
2199
  xmlns: "http://www.w3.org/2000/svg",
2200
2200
  width: 24,
@@ -2214,7 +2214,7 @@
2214
2214
  BellOffIcon.displayName = "BellOffIcon";
2215
2215
  var BellOffIcon$1 = BellOffIcon;
2216
2216
 
2217
- var _excluded$5u = ["gradient"];
2217
+ var _excluded$5y = ["gradient"];
2218
2218
 
2219
2219
  /**
2220
2220
  * @component BillingIcon
@@ -2244,7 +2244,7 @@
2244
2244
  */
2245
2245
  var BillingIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2246
2246
  var gradient = _ref.gradient,
2247
- props = _objectWithoutProperties(_ref, _excluded$5u);
2247
+ props = _objectWithoutProperties(_ref, _excluded$5y);
2248
2248
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2249
2249
  xmlns: "http://www.w3.org/2000/svg",
2250
2250
  width: 24,
@@ -2267,7 +2267,7 @@
2267
2267
  BillingIcon.displayName = "BillingIcon";
2268
2268
  var BillingIcon$1 = BillingIcon;
2269
2269
 
2270
- var _excluded$5t = ["gradient"];
2270
+ var _excluded$5x = ["gradient"];
2271
2271
 
2272
2272
  /**
2273
2273
  * @component BudgetAlertIcon
@@ -2297,7 +2297,7 @@
2297
2297
  */
2298
2298
  var BudgetAlertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2299
2299
  var gradient = _ref.gradient,
2300
- props = _objectWithoutProperties(_ref, _excluded$5t);
2300
+ props = _objectWithoutProperties(_ref, _excluded$5x);
2301
2301
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2302
2302
  xmlns: "http://www.w3.org/2000/svg",
2303
2303
  width: 24,
@@ -2317,7 +2317,7 @@
2317
2317
  BudgetAlertIcon.displayName = "BudgetAlertIcon";
2318
2318
  var BudgetAlertIcon$1 = BudgetAlertIcon;
2319
2319
 
2320
- var _excluded$5s = ["gradient"];
2320
+ var _excluded$5w = ["gradient"];
2321
2321
 
2322
2322
  /**
2323
2323
  * @component BulbIcon
@@ -2347,7 +2347,7 @@
2347
2347
  */
2348
2348
  var BulbIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2349
2349
  var gradient = _ref.gradient,
2350
- props = _objectWithoutProperties(_ref, _excluded$5s);
2350
+ props = _objectWithoutProperties(_ref, _excluded$5w);
2351
2351
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2352
2352
  xmlns: "http://www.w3.org/2000/svg",
2353
2353
  width: 16,
@@ -2366,7 +2366,7 @@
2366
2366
  BulbIcon.displayName = "BulbIcon";
2367
2367
  var BulbIcon$1 = BulbIcon;
2368
2368
 
2369
- var _excluded$5r = ["gradient"];
2369
+ var _excluded$5v = ["gradient"];
2370
2370
 
2371
2371
  /**
2372
2372
  * @component CalendarAddXIcon
@@ -2396,7 +2396,7 @@
2396
2396
  */
2397
2397
  var CalendarAddXIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2398
2398
  var gradient = _ref.gradient,
2399
- props = _objectWithoutProperties(_ref, _excluded$5r);
2399
+ props = _objectWithoutProperties(_ref, _excluded$5v);
2400
2400
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2401
2401
  xmlns: "http://www.w3.org/2000/svg",
2402
2402
  width: 24,
@@ -2416,7 +2416,7 @@
2416
2416
  CalendarAddXIcon.displayName = "CalendarAddXIcon";
2417
2417
  var CalendarAddXIcon$1 = CalendarAddXIcon;
2418
2418
 
2419
- var _excluded$5q = ["gradient"];
2419
+ var _excluded$5u = ["gradient"];
2420
2420
 
2421
2421
  /**
2422
2422
  * @component CalendarImportIcon
@@ -2446,7 +2446,7 @@
2446
2446
  */
2447
2447
  var CalendarImportIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2448
2448
  var gradient = _ref.gradient,
2449
- props = _objectWithoutProperties(_ref, _excluded$5q);
2449
+ props = _objectWithoutProperties(_ref, _excluded$5u);
2450
2450
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2451
2451
  xmlns: "http://www.w3.org/2000/svg",
2452
2452
  width: 18,
@@ -2469,7 +2469,7 @@
2469
2469
  CalendarImportIcon.displayName = "CalendarImportIcon";
2470
2470
  var CalendarImportIcon$1 = CalendarImportIcon;
2471
2471
 
2472
- var _excluded$5p = ["gradient"];
2472
+ var _excluded$5t = ["gradient"];
2473
2473
 
2474
2474
  /**
2475
2475
  * @component CalendarIcon
@@ -2499,7 +2499,7 @@
2499
2499
  */
2500
2500
  var CalendarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2501
2501
  var gradient = _ref.gradient,
2502
- props = _objectWithoutProperties(_ref, _excluded$5p);
2502
+ props = _objectWithoutProperties(_ref, _excluded$5t);
2503
2503
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2504
2504
  xmlns: "http://www.w3.org/2000/svg",
2505
2505
  width: 24,
@@ -2519,7 +2519,7 @@
2519
2519
  CalendarIcon.displayName = "CalendarIcon";
2520
2520
  var CalendarIcon$1 = CalendarIcon;
2521
2521
 
2522
- var _excluded$5o = ["gradient"];
2522
+ var _excluded$5s = ["gradient"];
2523
2523
 
2524
2524
  /**
2525
2525
  * @component CancelCrossIcon
@@ -2549,7 +2549,7 @@
2549
2549
  */
2550
2550
  var CancelCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2551
2551
  var gradient = _ref.gradient,
2552
- props = _objectWithoutProperties(_ref, _excluded$5o);
2552
+ props = _objectWithoutProperties(_ref, _excluded$5s);
2553
2553
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2554
2554
  xmlns: "http://www.w3.org/2000/svg",
2555
2555
  width: 24,
@@ -2569,7 +2569,7 @@
2569
2569
  CancelCrossIcon.displayName = "CancelCrossIcon";
2570
2570
  var CancelCrossIcon$1 = CancelCrossIcon;
2571
2571
 
2572
- var _excluded$5n = ["gradient"];
2572
+ var _excluded$5r = ["gradient"];
2573
2573
 
2574
2574
  /**
2575
2575
  * @component CaretLeftIcon
@@ -2599,7 +2599,7 @@
2599
2599
  */
2600
2600
  var CaretLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2601
2601
  var gradient = _ref.gradient,
2602
- props = _objectWithoutProperties(_ref, _excluded$5n);
2602
+ props = _objectWithoutProperties(_ref, _excluded$5r);
2603
2603
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2604
2604
  xmlns: "http://www.w3.org/2000/svg",
2605
2605
  width: 18,
@@ -2619,7 +2619,7 @@
2619
2619
  CaretLeftIcon.displayName = "CaretLeftIcon";
2620
2620
  var CaretLeftIcon$1 = CaretLeftIcon;
2621
2621
 
2622
- var _excluded$5m = ["gradient"];
2622
+ var _excluded$5q = ["gradient"];
2623
2623
 
2624
2624
  /**
2625
2625
  * @component CaretRightIcon
@@ -2649,7 +2649,7 @@
2649
2649
  */
2650
2650
  var CaretRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2651
2651
  var gradient = _ref.gradient,
2652
- props = _objectWithoutProperties(_ref, _excluded$5m);
2652
+ props = _objectWithoutProperties(_ref, _excluded$5q);
2653
2653
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2654
2654
  xmlns: "http://www.w3.org/2000/svg",
2655
2655
  width: 18,
@@ -2669,7 +2669,7 @@
2669
2669
  CaretRightIcon.displayName = "CaretRightIcon";
2670
2670
  var CaretRightIcon$1 = CaretRightIcon;
2671
2671
 
2672
- var _excluded$5l = ["gradient"];
2672
+ var _excluded$5p = ["gradient"];
2673
2673
 
2674
2674
  /**
2675
2675
  * @component ChatIcon
@@ -2699,7 +2699,7 @@
2699
2699
  */
2700
2700
  var ChatIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2701
2701
  var gradient = _ref.gradient,
2702
- props = _objectWithoutProperties(_ref, _excluded$5l);
2702
+ props = _objectWithoutProperties(_ref, _excluded$5p);
2703
2703
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2704
2704
  xmlns: "http://www.w3.org/2000/svg",
2705
2705
  width: 24,
@@ -2719,7 +2719,7 @@
2719
2719
  ChatIcon.displayName = "ChatIcon";
2720
2720
  var ChatIcon$1 = ChatIcon;
2721
2721
 
2722
- var _excluded$5k = ["gradient"];
2722
+ var _excluded$5o = ["gradient"];
2723
2723
 
2724
2724
  /**
2725
2725
  * @component CheckIcon
@@ -2749,7 +2749,7 @@
2749
2749
  */
2750
2750
  var CheckIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2751
2751
  var gradient = _ref.gradient,
2752
- props = _objectWithoutProperties(_ref, _excluded$5k);
2752
+ props = _objectWithoutProperties(_ref, _excluded$5o);
2753
2753
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2754
2754
  xmlns: "http://www.w3.org/2000/svg",
2755
2755
  width: 24,
@@ -2769,7 +2769,7 @@
2769
2769
  CheckIcon.displayName = "CheckIcon";
2770
2770
  var CheckIcon$1 = CheckIcon;
2771
2771
 
2772
- var _excluded$5j = ["gradient"];
2772
+ var _excluded$5n = ["gradient"];
2773
2773
 
2774
2774
  /**
2775
2775
  * @component CheckboxBlankTogglerIcon
@@ -2799,7 +2799,7 @@
2799
2799
  */
2800
2800
  var CheckboxBlankTogglerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2801
2801
  var gradient = _ref.gradient,
2802
- props = _objectWithoutProperties(_ref, _excluded$5j);
2802
+ props = _objectWithoutProperties(_ref, _excluded$5n);
2803
2803
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2804
2804
  xmlns: "http://www.w3.org/2000/svg",
2805
2805
  width: 24,
@@ -2819,7 +2819,7 @@
2819
2819
  CheckboxBlankTogglerIcon.displayName = "CheckboxBlankTogglerIcon";
2820
2820
  var CheckboxBlankTogglerIcon$1 = CheckboxBlankTogglerIcon;
2821
2821
 
2822
- var _excluded$5i = ["gradient"];
2822
+ var _excluded$5m = ["gradient"];
2823
2823
 
2824
2824
  /**
2825
2825
  * @component CheckboxCircleArrowIcon
@@ -2849,7 +2849,7 @@
2849
2849
  */
2850
2850
  var CheckboxCircleArrowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2851
2851
  var gradient = _ref.gradient,
2852
- props = _objectWithoutProperties(_ref, _excluded$5i);
2852
+ props = _objectWithoutProperties(_ref, _excluded$5m);
2853
2853
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2854
2854
  xmlns: "http://www.w3.org/2000/svg",
2855
2855
  width: 24,
@@ -2869,7 +2869,7 @@
2869
2869
  CheckboxCircleArrowIcon.displayName = "CheckboxCircleArrowIcon";
2870
2870
  var CheckboxCircleArrowIcon$1 = CheckboxCircleArrowIcon;
2871
2871
 
2872
- var _excluded$5h = ["gradient"];
2872
+ var _excluded$5l = ["gradient"];
2873
2873
 
2874
2874
  /**
2875
2875
  * @component CheckboxCircleBlankIcon
@@ -2899,7 +2899,7 @@
2899
2899
  */
2900
2900
  var CheckboxCircleBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2901
2901
  var gradient = _ref.gradient,
2902
- props = _objectWithoutProperties(_ref, _excluded$5h);
2902
+ props = _objectWithoutProperties(_ref, _excluded$5l);
2903
2903
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2904
2904
  xmlns: "http://www.w3.org/2000/svg",
2905
2905
  width: 15,
@@ -2920,7 +2920,7 @@
2920
2920
  CheckboxCircleBlankIcon.displayName = "CheckboxCircleBlankIcon";
2921
2921
  var CheckboxCircleBlankIcon$1 = CheckboxCircleBlankIcon;
2922
2922
 
2923
- var _excluded$5g = ["gradient"];
2923
+ var _excluded$5k = ["gradient"];
2924
2924
 
2925
2925
  /**
2926
2926
  * @component CheckboxDocumentsIcon
@@ -2950,7 +2950,7 @@
2950
2950
  */
2951
2951
  var CheckboxDocumentsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
2952
2952
  var gradient = _ref.gradient,
2953
- props = _objectWithoutProperties(_ref, _excluded$5g);
2953
+ props = _objectWithoutProperties(_ref, _excluded$5k);
2954
2954
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
2955
2955
  xmlns: "http://www.w3.org/2000/svg",
2956
2956
  width: 24,
@@ -2970,7 +2970,7 @@
2970
2970
  CheckboxDocumentsIcon.displayName = "CheckboxDocumentsIcon";
2971
2971
  var CheckboxDocumentsIcon$1 = CheckboxDocumentsIcon;
2972
2972
 
2973
- var _excluded$5f = ["gradient"];
2973
+ var _excluded$5j = ["gradient"];
2974
2974
 
2975
2975
  /**
2976
2976
  * @component CheckboxIcon
@@ -3000,7 +3000,7 @@
3000
3000
  */
3001
3001
  var CheckboxIcon$2 = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3002
3002
  var gradient = _ref.gradient,
3003
- props = _objectWithoutProperties(_ref, _excluded$5f);
3003
+ props = _objectWithoutProperties(_ref, _excluded$5j);
3004
3004
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3005
3005
  xmlns: "http://www.w3.org/2000/svg",
3006
3006
  width: 16,
@@ -3030,7 +3030,7 @@
3030
3030
  CheckboxIcon$2.displayName = "CheckboxIcon";
3031
3031
  var CheckboxIcon$3 = CheckboxIcon$2;
3032
3032
 
3033
- var _excluded$5e = ["gradient"];
3033
+ var _excluded$5i = ["gradient"];
3034
3034
 
3035
3035
  /**
3036
3036
  * @component ChecklistSmallIcon
@@ -3060,7 +3060,7 @@
3060
3060
  */
3061
3061
  var ChecklistSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3062
3062
  var gradient = _ref.gradient,
3063
- props = _objectWithoutProperties(_ref, _excluded$5e);
3063
+ props = _objectWithoutProperties(_ref, _excluded$5i);
3064
3064
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3065
3065
  xmlns: "http://www.w3.org/2000/svg",
3066
3066
  width: 12,
@@ -3080,7 +3080,7 @@
3080
3080
  ChecklistSmallIcon.displayName = "ChecklistSmallIcon";
3081
3081
  var ChecklistSmallIcon$1 = ChecklistSmallIcon;
3082
3082
 
3083
- var _excluded$5d = ["gradient"];
3083
+ var _excluded$5h = ["gradient"];
3084
3084
 
3085
3085
  /**
3086
3086
  * @component ChecklistIcon
@@ -3110,7 +3110,7 @@
3110
3110
  */
3111
3111
  var ChecklistIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3112
3112
  var gradient = _ref.gradient,
3113
- props = _objectWithoutProperties(_ref, _excluded$5d);
3113
+ props = _objectWithoutProperties(_ref, _excluded$5h);
3114
3114
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3115
3115
  xmlns: "http://www.w3.org/2000/svg",
3116
3116
  width: 24,
@@ -3130,7 +3130,7 @@
3130
3130
  ChecklistIcon.displayName = "ChecklistIcon";
3131
3131
  var ChecklistIcon$1 = ChecklistIcon;
3132
3132
 
3133
- var _excluded$5c = ["gradient"];
3133
+ var _excluded$5g = ["gradient"];
3134
3134
 
3135
3135
  /**
3136
3136
  * @component CircleDotIcon
@@ -3160,7 +3160,7 @@
3160
3160
  */
3161
3161
  var CircleDotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3162
3162
  var gradient = _ref.gradient,
3163
- props = _objectWithoutProperties(_ref, _excluded$5c);
3163
+ props = _objectWithoutProperties(_ref, _excluded$5g);
3164
3164
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3165
3165
  xmlns: "http://www.w3.org/2000/svg",
3166
3166
  width: 24,
@@ -3183,7 +3183,7 @@
3183
3183
  CircleDotIcon.displayName = "CircleDotIcon";
3184
3184
  var CircleDotIcon$1 = CircleDotIcon;
3185
3185
 
3186
- var _excluded$5b = ["gradient"];
3186
+ var _excluded$5f = ["gradient"];
3187
3187
 
3188
3188
  /**
3189
3189
  * @component CircleIcon
@@ -3213,7 +3213,7 @@
3213
3213
  */
3214
3214
  var CircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3215
3215
  var gradient = _ref.gradient,
3216
- props = _objectWithoutProperties(_ref, _excluded$5b);
3216
+ props = _objectWithoutProperties(_ref, _excluded$5f);
3217
3217
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3218
3218
  xmlns: "http://www.w3.org/2000/svg",
3219
3219
  width: 24,
@@ -3232,7 +3232,7 @@
3232
3232
  CircleIcon.displayName = "CircleIcon";
3233
3233
  var CircleIcon$1 = CircleIcon;
3234
3234
 
3235
- var _excluded$5a = ["gradient"];
3235
+ var _excluded$5e = ["gradient"];
3236
3236
 
3237
3237
  /**
3238
3238
  * @component CircleSlashIcon
@@ -3266,7 +3266,7 @@
3266
3266
  */
3267
3267
  var CircleSlashIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3268
3268
  var gradient = _ref.gradient,
3269
- props = _objectWithoutProperties(_ref, _excluded$5a);
3269
+ props = _objectWithoutProperties(_ref, _excluded$5e);
3270
3270
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3271
3271
  xmlns: "http://www.w3.org/2000/svg",
3272
3272
  width: 24,
@@ -3287,7 +3287,7 @@
3287
3287
  CircleSlashIcon.displayName = "CircleSlashIcon";
3288
3288
  var CircleSlashIcon$1 = CircleSlashIcon;
3289
3289
 
3290
- var _excluded$59 = ["gradient"];
3290
+ var _excluded$5d = ["gradient"];
3291
3291
 
3292
3292
  /**
3293
3293
  * @component CircleMultipleIcon
@@ -3317,7 +3317,7 @@
3317
3317
  */
3318
3318
  var CircleMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3319
3319
  var gradient = _ref.gradient,
3320
- props = _objectWithoutProperties(_ref, _excluded$59);
3320
+ props = _objectWithoutProperties(_ref, _excluded$5d);
3321
3321
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3322
3322
  xmlns: "http://www.w3.org/2000/svg",
3323
3323
  width: 24,
@@ -3337,7 +3337,57 @@
3337
3337
  CircleMultipleIcon.displayName = "CircleMultipleIcon";
3338
3338
  var CircleMultipleIcon$1 = CircleMultipleIcon;
3339
3339
 
3340
- var _excluded$58 = ["gradient"];
3340
+ var _excluded$5c = ["gradient"];
3341
+
3342
+ /**
3343
+ * @component ClipboardIcon
3344
+ * @description
3345
+ *
3346
+ * The ClipboardIcon component displays a clipboard to represent a clipboard, notes, or a task list.
3347
+ * The Icon component is
3348
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
3349
+ *
3350
+ * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
3351
+ * Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
3352
+ *
3353
+ * @example
3354
+ * return (
3355
+ * <ClipboardIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
3356
+ * )
3357
+ *
3358
+ * @example
3359
+ * return (
3360
+ * <ClipboardIcon className="mr-2" />
3361
+ * )
3362
+ *
3363
+ * @see
3364
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
3365
+ * @see
3366
+ * https://design.activecollab.com/docs/foundations/icons
3367
+ */
3368
+ var ClipboardIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3369
+ var gradient = _ref.gradient,
3370
+ props = _objectWithoutProperties(_ref, _excluded$5c);
3371
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3372
+ xmlns: "http://www.w3.org/2000/svg",
3373
+ width: 24,
3374
+ height: 24,
3375
+ viewBox: "0 0 24 24",
3376
+ "data-testid": "ClipboardIcon",
3377
+ fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
3378
+ focusable: false,
3379
+ ref: ref
3380
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
3381
+ gradient: gradient
3382
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
3383
+ fillRule: "evenodd",
3384
+ d: "M10.35 1.91L9.79 2.08L9.34 2.45L9.06 2.96L9.00 3.50L6.91 3.56L6.35 3.73L5.83 4.01L5.38 4.38L5.01 4.83L4.63 5.63L4.50 6.50L4.50 18.00L4.56 18.59L4.73 19.15L5.18 19.90L5.83 20.49L6.63 20.87L7.21 20.99L16.50 21.00L17.09 20.94L17.65 20.77L18.17 20.49L18.82 19.90L19.27 19.15L19.49 18.29L19.50 6.50L19.44 5.91L19.27 5.35L18.99 4.83L18.62 4.38L18.17 4.01L17.65 3.73L16.79 3.51L15.00 3.50L14.94 2.96L14.75 2.57L14.45 2.24L14.07 2.01L13.50 1.90L10.35 1.91ZM16.41 5.66L16.78 5.84L17.08 6.11L17.29 6.46L17.39 6.86L17.40 17.50L17.34 17.91L17.16 18.28L16.66 18.73L16.00 18.90L8.00 18.90L7.59 18.84L7.22 18.66L6.77 18.16L6.60 17.50L6.60 7.00L6.66 6.59L6.84 6.22L7.22 5.84L7.86 5.61L16.00 5.60L16.41 5.66ZM11.20 3.70L10.88 3.59L10.71 3.30L10.76 2.96L11.05 2.72L12.90 2.71L13.12 2.81L13.28 3.05L13.24 3.44L12.95 3.68L11.20 3.70Z"
3385
+ }));
3386
+ });
3387
+ ClipboardIcon.displayName = "ClipboardIcon";
3388
+ var ClipboardIcon$1 = ClipboardIcon;
3389
+
3390
+ var _excluded$5b = ["gradient"];
3341
3391
 
3342
3392
  /**
3343
3393
  * @component ClockAddIcon
@@ -3367,7 +3417,7 @@
3367
3417
  */
3368
3418
  var ClockAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3369
3419
  var gradient = _ref.gradient,
3370
- props = _objectWithoutProperties(_ref, _excluded$58);
3420
+ props = _objectWithoutProperties(_ref, _excluded$5b);
3371
3421
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3372
3422
  xmlns: "http://www.w3.org/2000/svg",
3373
3423
  width: 24,
@@ -3387,7 +3437,7 @@
3387
3437
  ClockAddIcon.displayName = "ClockAddIcon";
3388
3438
  var ClockAddIcon$1 = ClockAddIcon;
3389
3439
 
3390
- var _excluded$57 = ["gradient"];
3440
+ var _excluded$5a = ["gradient"];
3391
3441
 
3392
3442
  /**
3393
3443
  * @component ClockDollarIcon
@@ -3417,7 +3467,7 @@
3417
3467
  */
3418
3468
  var ClockDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3419
3469
  var gradient = _ref.gradient,
3420
- props = _objectWithoutProperties(_ref, _excluded$57);
3470
+ props = _objectWithoutProperties(_ref, _excluded$5a);
3421
3471
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3422
3472
  xmlns: "http://www.w3.org/2000/svg",
3423
3473
  width: 24,
@@ -3440,7 +3490,7 @@
3440
3490
  ClockDollarIcon.displayName = "ClockDollarIcon";
3441
3491
  var ClockDollarIcon$1 = ClockDollarIcon;
3442
3492
 
3443
- var _excluded$56 = ["gradient"];
3493
+ var _excluded$59 = ["gradient"];
3444
3494
 
3445
3495
  /**
3446
3496
  * @component ClockSmallIcon
@@ -3470,7 +3520,7 @@
3470
3520
  */
3471
3521
  var ClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3472
3522
  var gradient = _ref.gradient,
3473
- props = _objectWithoutProperties(_ref, _excluded$56);
3523
+ props = _objectWithoutProperties(_ref, _excluded$59);
3474
3524
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3475
3525
  xmlns: "http://www.w3.org/2000/svg",
3476
3526
  width: 12,
@@ -3490,7 +3540,7 @@
3490
3540
  ClockSmallIcon.displayName = "ClockSmallIcon";
3491
3541
  var ClockSmallIcon$1 = ClockSmallIcon;
3492
3542
 
3493
- var _excluded$55 = ["gradient"];
3543
+ var _excluded$58 = ["gradient"];
3494
3544
 
3495
3545
  /**
3496
3546
  * @component ClockStopwatchIndicatorIcon
@@ -3520,7 +3570,7 @@
3520
3570
  */
3521
3571
  var ClockStopwatchIndicatorIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3522
3572
  var gradient = _ref.gradient,
3523
- props = _objectWithoutProperties(_ref, _excluded$55);
3573
+ props = _objectWithoutProperties(_ref, _excluded$58);
3524
3574
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3525
3575
  xmlns: "http://www.w3.org/2000/svg",
3526
3576
  width: 24,
@@ -3541,7 +3591,7 @@
3541
3591
  ClockStopwatchIndicatorIcon.displayName = "ClockStopwatchIndicatorIcon";
3542
3592
  var ClockStopwatchIndicatorIcon$1 = ClockStopwatchIndicatorIcon;
3543
3593
 
3544
- var _excluded$54 = ["gradient"];
3594
+ var _excluded$57 = ["gradient"];
3545
3595
 
3546
3596
  /**
3547
3597
  * @component ClockStopwatchSmallIcon
@@ -3571,7 +3621,7 @@
3571
3621
  */
3572
3622
  var ClockStopwatchSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3573
3623
  var gradient = _ref.gradient,
3574
- props = _objectWithoutProperties(_ref, _excluded$54);
3624
+ props = _objectWithoutProperties(_ref, _excluded$57);
3575
3625
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3576
3626
  xmlns: "http://www.w3.org/2000/svg",
3577
3627
  width: 12,
@@ -3591,7 +3641,7 @@
3591
3641
  ClockStopwatchSmallIcon.displayName = "ClockStopwatchSmallIcon";
3592
3642
  var ClockStopwatchSmallIcon$1 = ClockStopwatchSmallIcon;
3593
3643
 
3594
- var _excluded$53 = ["gradient"];
3644
+ var _excluded$56 = ["gradient"];
3595
3645
 
3596
3646
  /**
3597
3647
  * @component ClockStopwatchIcon
@@ -3621,7 +3671,7 @@
3621
3671
  */
3622
3672
  var ClockStopwatchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3623
3673
  var gradient = _ref.gradient,
3624
- props = _objectWithoutProperties(_ref, _excluded$53);
3674
+ props = _objectWithoutProperties(_ref, _excluded$56);
3625
3675
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3626
3676
  xmlns: "http://www.w3.org/2000/svg",
3627
3677
  width: 24,
@@ -3641,7 +3691,7 @@
3641
3691
  ClockStopwatchIcon.displayName = "ClockStopwatchIcon";
3642
3692
  var ClockStopwatchIcon$1 = ClockStopwatchIcon;
3643
3693
 
3644
- var _excluded$52 = ["gradient"];
3694
+ var _excluded$55 = ["gradient"];
3645
3695
 
3646
3696
  /**
3647
3697
  * @component ClockIcon
@@ -3671,7 +3721,7 @@
3671
3721
  */
3672
3722
  var ClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3673
3723
  var gradient = _ref.gradient,
3674
- props = _objectWithoutProperties(_ref, _excluded$52);
3724
+ props = _objectWithoutProperties(_ref, _excluded$55);
3675
3725
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3676
3726
  xmlns: "http://www.w3.org/2000/svg",
3677
3727
  width: 24,
@@ -3691,7 +3741,7 @@
3691
3741
  ClockIcon.displayName = "ClockIcon";
3692
3742
  var ClockIcon$1 = ClockIcon;
3693
3743
 
3694
- var _excluded$51 = ["gradient"];
3744
+ var _excluded$54 = ["gradient"];
3695
3745
 
3696
3746
  /**
3697
3747
  * @component CloseCircleIcon
@@ -3721,7 +3771,7 @@
3721
3771
  */
3722
3772
  var CloseCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3723
3773
  var gradient = _ref.gradient,
3724
- props = _objectWithoutProperties(_ref, _excluded$51);
3774
+ props = _objectWithoutProperties(_ref, _excluded$54);
3725
3775
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3726
3776
  xmlns: "http://www.w3.org/2000/svg",
3727
3777
  width: 24,
@@ -3742,7 +3792,7 @@
3742
3792
  CloseCircleIcon.displayName = "CloseCircleIcon";
3743
3793
  var CloseCircleIcon$1 = CloseCircleIcon;
3744
3794
 
3745
- var _excluded$50 = ["gradient"];
3795
+ var _excluded$53 = ["gradient"];
3746
3796
 
3747
3797
  /**
3748
3798
  * @component CloseDocumentIcon
@@ -3772,7 +3822,7 @@
3772
3822
  */
3773
3823
  var CloseDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3774
3824
  var gradient = _ref.gradient,
3775
- props = _objectWithoutProperties(_ref, _excluded$50);
3825
+ props = _objectWithoutProperties(_ref, _excluded$53);
3776
3826
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3777
3827
  xmlns: "http://www.w3.org/2000/svg",
3778
3828
  width: 24,
@@ -3792,7 +3842,7 @@
3792
3842
  CloseDocumentIcon.displayName = "CloseDocumentIcon";
3793
3843
  var CloseDocumentIcon$1 = CloseDocumentIcon;
3794
3844
 
3795
- var _excluded$4$ = ["gradient"];
3845
+ var _excluded$52 = ["gradient"];
3796
3846
 
3797
3847
  /**
3798
3848
  * @component CloseSmallIcon
@@ -3822,7 +3872,7 @@
3822
3872
  */
3823
3873
  var CloseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3824
3874
  var gradient = _ref.gradient,
3825
- props = _objectWithoutProperties(_ref, _excluded$4$);
3875
+ props = _objectWithoutProperties(_ref, _excluded$52);
3826
3876
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3827
3877
  xmlns: "http://www.w3.org/2000/svg",
3828
3878
  width: 24,
@@ -3842,7 +3892,7 @@
3842
3892
  CloseSmallIcon.displayName = "CloseSmallIcon";
3843
3893
  var CloseSmallIcon$1 = CloseSmallIcon;
3844
3894
 
3845
- var _excluded$4_ = ["gradient"];
3895
+ var _excluded$51 = ["gradient"];
3846
3896
 
3847
3897
  /**
3848
3898
  * @component CloseIcon
@@ -3872,7 +3922,7 @@
3872
3922
  */
3873
3923
  var CloseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3874
3924
  var gradient = _ref.gradient,
3875
- props = _objectWithoutProperties(_ref, _excluded$4_);
3925
+ props = _objectWithoutProperties(_ref, _excluded$51);
3876
3926
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3877
3927
  xmlns: "http://www.w3.org/2000/svg",
3878
3928
  width: 24,
@@ -3893,7 +3943,7 @@
3893
3943
  CloseIcon.displayName = "CloseIcon";
3894
3944
  var CloseIcon$1 = CloseIcon;
3895
3945
 
3896
- var _excluded$4Z = ["gradient"];
3946
+ var _excluded$50 = ["gradient"];
3897
3947
 
3898
3948
  /**
3899
3949
  * @component CloudIcon
@@ -3906,7 +3956,7 @@
3906
3956
  */
3907
3957
  var CloudIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3908
3958
  var gradient = _ref.gradient,
3909
- props = _objectWithoutProperties(_ref, _excluded$4Z);
3959
+ props = _objectWithoutProperties(_ref, _excluded$50);
3910
3960
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3911
3961
  xmlns: "http://www.w3.org/2000/svg",
3912
3962
  width: 24,
@@ -3929,7 +3979,7 @@
3929
3979
  CloudIcon.displayName = "CloudIcon";
3930
3980
  var CloudIcon$1 = CloudIcon;
3931
3981
 
3932
- var _excluded$4Y = ["gradient"];
3982
+ var _excluded$4$ = ["gradient"];
3933
3983
 
3934
3984
  /**
3935
3985
  * @component CloudDeployIcon
@@ -3944,7 +3994,7 @@
3944
3994
  */
3945
3995
  var CloudDeployIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3946
3996
  var gradient = _ref.gradient,
3947
- props = _objectWithoutProperties(_ref, _excluded$4Y);
3997
+ props = _objectWithoutProperties(_ref, _excluded$4$);
3948
3998
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3949
3999
  xmlns: "http://www.w3.org/2000/svg",
3950
4000
  width: 24,
@@ -3971,7 +4021,7 @@
3971
4021
  CloudDeployIcon.displayName = "CloudDeployIcon";
3972
4022
  var CloudDeployIcon$1 = CloudDeployIcon;
3973
4023
 
3974
- var _excluded$4X = ["gradient"];
4024
+ var _excluded$4_ = ["gradient"];
3975
4025
 
3976
4026
  /**
3977
4027
  * @component CloudDeployFailedIcon
@@ -3986,7 +4036,7 @@
3986
4036
  */
3987
4037
  var CloudDeployFailedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
3988
4038
  var gradient = _ref.gradient,
3989
- props = _objectWithoutProperties(_ref, _excluded$4X);
4039
+ props = _objectWithoutProperties(_ref, _excluded$4_);
3990
4040
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
3991
4041
  xmlns: "http://www.w3.org/2000/svg",
3992
4042
  width: 24,
@@ -4013,7 +4063,7 @@
4013
4063
  CloudDeployFailedIcon.displayName = "CloudDeployFailedIcon";
4014
4064
  var CloudDeployFailedIcon$1 = CloudDeployFailedIcon;
4015
4065
 
4016
- var _excluded$4W = ["gradient"];
4066
+ var _excluded$4Z = ["gradient"];
4017
4067
 
4018
4068
  /**
4019
4069
  * @component CollapsIcon
@@ -4043,7 +4093,7 @@
4043
4093
  */
4044
4094
  var CollapsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4045
4095
  var gradient = _ref.gradient,
4046
- props = _objectWithoutProperties(_ref, _excluded$4W);
4096
+ props = _objectWithoutProperties(_ref, _excluded$4Z);
4047
4097
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4048
4098
  xmlns: "http://www.w3.org/2000/svg",
4049
4099
  width: 6,
@@ -4063,7 +4113,7 @@
4063
4113
  CollapsIcon.displayName = "CollapsIcon";
4064
4114
  var CollapsIcon$1 = CollapsIcon;
4065
4115
 
4066
- var _excluded$4V = ["gradient"];
4116
+ var _excluded$4Y = ["gradient"];
4067
4117
 
4068
4118
  /**
4069
4119
  * @component CollapseAllIcon
@@ -4093,7 +4143,7 @@
4093
4143
  */
4094
4144
  var CollapseAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4095
4145
  var gradient = _ref.gradient,
4096
- props = _objectWithoutProperties(_ref, _excluded$4V);
4146
+ props = _objectWithoutProperties(_ref, _excluded$4Y);
4097
4147
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4098
4148
  xmlns: "http://www.w3.org/2000/svg",
4099
4149
  width: 24,
@@ -4113,7 +4163,7 @@
4113
4163
  CollapseAllIcon.displayName = "CollapseAllIcon";
4114
4164
  var CollapseAllIcon$1 = CollapseAllIcon;
4115
4165
 
4116
- var _excluded$4U = ["gradient"];
4166
+ var _excluded$4X = ["gradient"];
4117
4167
 
4118
4168
  /**
4119
4169
  * @component CollapseExpandSingleIcon
@@ -4143,7 +4193,7 @@
4143
4193
  */
4144
4194
  var CollapseExpandSingleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4145
4195
  var gradient = _ref.gradient,
4146
- props = _objectWithoutProperties(_ref, _excluded$4U);
4196
+ props = _objectWithoutProperties(_ref, _excluded$4X);
4147
4197
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4148
4198
  xmlns: "http://www.w3.org/2000/svg",
4149
4199
  width: 24,
@@ -4163,7 +4213,7 @@
4163
4213
  CollapseExpandSingleIcon.displayName = "CollapseExpandSingleIcon";
4164
4214
  var CollapseExpandSingleIcon$1 = CollapseExpandSingleIcon;
4165
4215
 
4166
- var _excluded$4T = ["gradient"];
4216
+ var _excluded$4W = ["gradient"];
4167
4217
 
4168
4218
  /**
4169
4219
  * @component CompanyAddIcon
@@ -4193,7 +4243,7 @@
4193
4243
  */
4194
4244
  var CompanyAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4195
4245
  var gradient = _ref.gradient,
4196
- props = _objectWithoutProperties(_ref, _excluded$4T);
4246
+ props = _objectWithoutProperties(_ref, _excluded$4W);
4197
4247
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4198
4248
  xmlns: "http://www.w3.org/2000/svg",
4199
4249
  width: 18,
@@ -4214,7 +4264,7 @@
4214
4264
  CompanyAddIcon.displayName = "CompanyAddIcon";
4215
4265
  var CompanyAddIcon$1 = CompanyAddIcon;
4216
4266
 
4217
- var _excluded$4S = ["gradient"];
4267
+ var _excluded$4V = ["gradient"];
4218
4268
 
4219
4269
  /**
4220
4270
  * @component CompanyIcon
@@ -4244,7 +4294,7 @@
4244
4294
  */
4245
4295
  var CompanyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4246
4296
  var gradient = _ref.gradient,
4247
- props = _objectWithoutProperties(_ref, _excluded$4S);
4297
+ props = _objectWithoutProperties(_ref, _excluded$4V);
4248
4298
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4249
4299
  xmlns: "http://www.w3.org/2000/svg",
4250
4300
  width: 24,
@@ -4265,7 +4315,7 @@
4265
4315
  CompanyIcon.displayName = "CompanyIcon";
4266
4316
  var CompanyIcon$1 = CompanyIcon;
4267
4317
 
4268
- var _excluded$4R = ["gradient"];
4318
+ var _excluded$4U = ["gradient"];
4269
4319
 
4270
4320
  /**
4271
4321
  * @component ComputerIcon
@@ -4295,7 +4345,7 @@
4295
4345
  */
4296
4346
  var ComputerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4297
4347
  var gradient = _ref.gradient,
4298
- props = _objectWithoutProperties(_ref, _excluded$4R);
4348
+ props = _objectWithoutProperties(_ref, _excluded$4U);
4299
4349
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4300
4350
  xmlns: "http://www.w3.org/2000/svg",
4301
4351
  width: 24,
@@ -4315,7 +4365,7 @@
4315
4365
  ComputerIcon.displayName = "ComputerIcon";
4316
4366
  var ComputerIcon$1 = ComputerIcon;
4317
4367
 
4318
- var _excluded$4Q = ["gradient"];
4368
+ var _excluded$4T = ["gradient"];
4319
4369
 
4320
4370
  /**
4321
4371
  * @component ConnectionIcon
@@ -4345,7 +4395,7 @@
4345
4395
  */
4346
4396
  var ConnectionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4347
4397
  var gradient = _ref.gradient,
4348
- props = _objectWithoutProperties(_ref, _excluded$4Q);
4398
+ props = _objectWithoutProperties(_ref, _excluded$4T);
4349
4399
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4350
4400
  xmlns: "http://www.w3.org/2000/svg",
4351
4401
  width: 24,
@@ -4372,7 +4422,7 @@
4372
4422
  ConnectionIcon.displayName = "ConnectionIcon";
4373
4423
  var ConnectionIcon$1 = ConnectionIcon;
4374
4424
 
4375
- var _excluded$4P = ["gradient"];
4425
+ var _excluded$4S = ["gradient"];
4376
4426
 
4377
4427
  /**
4378
4428
  * @component CopyIcon
@@ -4402,7 +4452,7 @@
4402
4452
  */
4403
4453
  var CopyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4404
4454
  var gradient = _ref.gradient,
4405
- props = _objectWithoutProperties(_ref, _excluded$4P);
4455
+ props = _objectWithoutProperties(_ref, _excluded$4S);
4406
4456
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4407
4457
  xmlns: "http://www.w3.org/2000/svg",
4408
4458
  width: 24,
@@ -4422,7 +4472,7 @@
4422
4472
  CopyIcon.displayName = "CopyIcon";
4423
4473
  var CopyIcon$1 = CopyIcon;
4424
4474
 
4425
- var _excluded$4O = ["gradient"];
4475
+ var _excluded$4R = ["gradient"];
4426
4476
 
4427
4477
  /**
4428
4478
  * @component CrownBlankIcon
@@ -4452,7 +4502,7 @@
4452
4502
  */
4453
4503
  var CrownBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4454
4504
  var gradient = _ref.gradient,
4455
- props = _objectWithoutProperties(_ref, _excluded$4O);
4505
+ props = _objectWithoutProperties(_ref, _excluded$4R);
4456
4506
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4457
4507
  xmlns: "http://www.w3.org/2000/svg",
4458
4508
  width: 24,
@@ -4472,7 +4522,7 @@
4472
4522
  CrownBlankIcon.displayName = "CrownBlankIcon";
4473
4523
  var CrownBlankIcon$1 = CrownBlankIcon;
4474
4524
 
4475
- var _excluded$4N = ["gradient"];
4525
+ var _excluded$4Q = ["gradient"];
4476
4526
 
4477
4527
  /**
4478
4528
  * @component CrownSelectedIcon
@@ -4502,7 +4552,7 @@
4502
4552
  */
4503
4553
  var CrownSelectedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4504
4554
  var gradient = _ref.gradient,
4505
- props = _objectWithoutProperties(_ref, _excluded$4N);
4555
+ props = _objectWithoutProperties(_ref, _excluded$4Q);
4506
4556
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4507
4557
  xmlns: "http://www.w3.org/2000/svg",
4508
4558
  width: 24,
@@ -4522,7 +4572,57 @@
4522
4572
  CrownSelectedIcon.displayName = "CrownSelectedIcon";
4523
4573
  var CrownSelectedIcon$1 = CrownSelectedIcon;
4524
4574
 
4525
- var _excluded$4M = ["gradient"];
4575
+ var _excluded$4P = ["gradient"];
4576
+
4577
+ /**
4578
+ * @component CutIcon
4579
+ * @description
4580
+ *
4581
+ * The CutIcon component displays a pair of scissors to represent a cut action (for example cut to clipboard).
4582
+ * The Icon component is
4583
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
4584
+ *
4585
+ * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
4586
+ * Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
4587
+ *
4588
+ * @example
4589
+ * return (
4590
+ * <CutIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
4591
+ * )
4592
+ *
4593
+ * @example
4594
+ * return (
4595
+ * <CutIcon className="mr-2" />
4596
+ * )
4597
+ *
4598
+ * @see
4599
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
4600
+ * @see
4601
+ * https://design.activecollab.com/docs/foundations/icons
4602
+ */
4603
+ var CutIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4604
+ var gradient = _ref.gradient,
4605
+ props = _objectWithoutProperties(_ref, _excluded$4P);
4606
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4607
+ xmlns: "http://www.w3.org/2000/svg",
4608
+ width: 24,
4609
+ height: 24,
4610
+ viewBox: "0 0 24 24",
4611
+ "data-testid": "CutIcon",
4612
+ fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
4613
+ focusable: false,
4614
+ ref: ref
4615
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
4616
+ gradient: gradient
4617
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
4618
+ fillRule: "evenodd",
4619
+ d: "M13.15 11.00L13.14 10.84L18.15 3.40L18.25 2.92L18.06 2.46L17.73 2.22L17.40 2.15L17.00 2.25L16.75 2.46L12.00 9.48L7.25 2.46L7.00 2.25L6.68 2.15L6.35 2.19L6.06 2.35L5.77 2.84L5.85 3.40L10.86 10.84L10.85 11.09L8.00 14.74L7.00 14.55L6.17 14.67L5.19 15.20L4.63 15.82L4.20 16.84L4.16 17.68L4.37 18.49L4.98 19.42L5.91 20.03L7.00 20.25L8.09 20.03L9.02 19.42L9.63 18.49L9.84 17.68L9.73 16.57L9.34 15.78L12.00 12.38L14.66 15.78L14.27 16.57L14.16 17.68L14.37 18.49L14.98 19.42L15.91 20.03L17.00 20.25L18.09 20.03L19.02 19.42L19.51 18.74L19.84 17.68L19.73 16.57L19.37 15.82L18.58 15.03L17.83 14.67L17.00 14.55L16.00 14.74L13.15 11.00ZM8.40 17.40L8.29 17.94L7.99 18.39L7.54 18.69L7.00 18.80L6.46 18.69L6.01 18.39L5.71 17.94L5.60 17.40L5.71 16.86L6.01 16.41L6.46 16.11L7.00 16.00L7.54 16.11L7.99 16.41L8.29 16.86L8.40 17.40ZM18.40 17.40L18.29 17.94L17.99 18.39L17.54 18.69L17.00 18.80L16.46 18.69L16.01 18.39L15.71 17.94L15.60 17.40L15.71 16.86L16.01 16.41L16.46 16.11L17.00 16.00L17.54 16.11L17.99 16.41L18.29 16.86L18.40 17.40Z"
4620
+ }));
4621
+ });
4622
+ CutIcon.displayName = "CutIcon";
4623
+ var CutIcon$1 = CutIcon;
4624
+
4625
+ var _excluded$4O = ["gradient"];
4526
4626
 
4527
4627
  /**
4528
4628
  * @component DependencySmallIcon
@@ -4552,7 +4652,7 @@
4552
4652
  */
4553
4653
  var DependencySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4554
4654
  var gradient = _ref.gradient,
4555
- props = _objectWithoutProperties(_ref, _excluded$4M);
4655
+ props = _objectWithoutProperties(_ref, _excluded$4O);
4556
4656
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4557
4657
  xmlns: "http://www.w3.org/2000/svg",
4558
4658
  width: 12,
@@ -4572,7 +4672,7 @@
4572
4672
  DependencySmallIcon.displayName = "DependencySmallIcon";
4573
4673
  var DependencySmallIcon$1 = DependencySmallIcon;
4574
4674
 
4575
- var _excluded$4L = ["gradient"];
4675
+ var _excluded$4N = ["gradient"];
4576
4676
 
4577
4677
  /**
4578
4678
  * @component DependencyIcon
@@ -4602,7 +4702,7 @@
4602
4702
  */
4603
4703
  var DependencyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4604
4704
  var gradient = _ref.gradient,
4605
- props = _objectWithoutProperties(_ref, _excluded$4L);
4705
+ props = _objectWithoutProperties(_ref, _excluded$4N);
4606
4706
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4607
4707
  xmlns: "http://www.w3.org/2000/svg",
4608
4708
  width: 24,
@@ -4622,7 +4722,7 @@
4622
4722
  DependencyIcon.displayName = "DependencyIcon";
4623
4723
  var DependencyIcon$1 = DependencyIcon;
4624
4724
 
4625
- var _excluded$4K = ["gradient"];
4725
+ var _excluded$4M = ["gradient"];
4626
4726
 
4627
4727
  /**
4628
4728
  * @component DescriptionSmallIcon
@@ -4652,7 +4752,7 @@
4652
4752
  */
4653
4753
  var DescriptionSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4654
4754
  var gradient = _ref.gradient,
4655
- props = _objectWithoutProperties(_ref, _excluded$4K);
4755
+ props = _objectWithoutProperties(_ref, _excluded$4M);
4656
4756
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4657
4757
  xmlns: "http://www.w3.org/2000/svg",
4658
4758
  width: 18,
@@ -4673,7 +4773,7 @@
4673
4773
  DescriptionSmallIcon.displayName = "DescriptionSmallIcon";
4674
4774
  var DescriptionSmallIcon$1 = DescriptionSmallIcon;
4675
4775
 
4676
- var _excluded$4J = ["gradient"];
4776
+ var _excluded$4L = ["gradient"];
4677
4777
 
4678
4778
  /**
4679
4779
  * @component DescriptionIcon
@@ -4703,7 +4803,7 @@
4703
4803
  */
4704
4804
  var DescriptionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4705
4805
  var gradient = _ref.gradient,
4706
- props = _objectWithoutProperties(_ref, _excluded$4J);
4806
+ props = _objectWithoutProperties(_ref, _excluded$4L);
4707
4807
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4708
4808
  xmlns: "http://www.w3.org/2000/svg",
4709
4809
  width: 24,
@@ -4723,7 +4823,7 @@
4723
4823
  DescriptionIcon.displayName = "DescriptionIcon";
4724
4824
  var DescriptionIcon$1 = DescriptionIcon;
4725
4825
 
4726
- var _excluded$4I = ["gradient"];
4826
+ var _excluded$4K = ["gradient"];
4727
4827
 
4728
4828
  /**
4729
4829
  * @component DiscussionAddIcon
@@ -4753,7 +4853,7 @@
4753
4853
  */
4754
4854
  var DiscussionAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4755
4855
  var gradient = _ref.gradient,
4756
- props = _objectWithoutProperties(_ref, _excluded$4I);
4856
+ props = _objectWithoutProperties(_ref, _excluded$4K);
4757
4857
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4758
4858
  xmlns: "http://www.w3.org/2000/svg",
4759
4859
  width: 24,
@@ -4773,7 +4873,7 @@
4773
4873
  DiscussionAddIcon.displayName = "DiscussionAddIcon";
4774
4874
  var DiscussionAddIcon$1 = DiscussionAddIcon;
4775
4875
 
4776
- var _excluded$4H = ["gradient"];
4876
+ var _excluded$4J = ["gradient"];
4777
4877
 
4778
4878
  /**
4779
4879
  * @component DiscussionIcon
@@ -4803,7 +4903,7 @@
4803
4903
  */
4804
4904
  var DiscussionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4805
4905
  var gradient = _ref.gradient,
4806
- props = _objectWithoutProperties(_ref, _excluded$4H);
4906
+ props = _objectWithoutProperties(_ref, _excluded$4J);
4807
4907
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4808
4908
  xmlns: "http://www.w3.org/2000/svg",
4809
4909
  width: 24,
@@ -4824,7 +4924,7 @@
4824
4924
  DiscussionIcon.displayName = "DiscussionIcon";
4825
4925
  var DiscussionIcon$1 = DiscussionIcon;
4826
4926
 
4827
- var _excluded$4G = ["gradient"];
4927
+ var _excluded$4I = ["gradient"];
4828
4928
 
4829
4929
  /**
4830
4930
  * @component DollarCheckmarkSmallIcon
@@ -4854,7 +4954,7 @@
4854
4954
  */
4855
4955
  var DollarCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4856
4956
  var gradient = _ref.gradient,
4857
- props = _objectWithoutProperties(_ref, _excluded$4G);
4957
+ props = _objectWithoutProperties(_ref, _excluded$4I);
4858
4958
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4859
4959
  xmlns: "http://www.w3.org/2000/svg",
4860
4960
  width: 12,
@@ -4874,7 +4974,7 @@
4874
4974
  DollarCheckmarkSmallIcon.displayName = "DollarCheckmarkSmallIcon";
4875
4975
  var DollarCheckmarkSmallIcon$1 = DollarCheckmarkSmallIcon;
4876
4976
 
4877
- var _excluded$4F = ["gradient"];
4977
+ var _excluded$4H = ["gradient"];
4878
4978
 
4879
4979
  /**
4880
4980
  * @component DollarCheckmarkIcon
@@ -4904,7 +5004,7 @@
4904
5004
  */
4905
5005
  var DollarCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4906
5006
  var gradient = _ref.gradient,
4907
- props = _objectWithoutProperties(_ref, _excluded$4F);
5007
+ props = _objectWithoutProperties(_ref, _excluded$4H);
4908
5008
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4909
5009
  xmlns: "http://www.w3.org/2000/svg",
4910
5010
  width: 24,
@@ -4924,7 +5024,7 @@
4924
5024
  DollarCheckmarkIcon.displayName = "DollarCheckmarkIcon";
4925
5025
  var DollarCheckmarkIcon$1 = DollarCheckmarkIcon;
4926
5026
 
4927
- var _excluded$4E = ["gradient"];
5027
+ var _excluded$4G = ["gradient"];
4928
5028
 
4929
5029
  /**
4930
5030
  * @component DollarClockSmallIcon
@@ -4954,7 +5054,7 @@
4954
5054
  */
4955
5055
  var DollarClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
4956
5056
  var gradient = _ref.gradient,
4957
- props = _objectWithoutProperties(_ref, _excluded$4E);
5057
+ props = _objectWithoutProperties(_ref, _excluded$4G);
4958
5058
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
4959
5059
  xmlns: "http://www.w3.org/2000/svg",
4960
5060
  width: 12,
@@ -4974,7 +5074,7 @@
4974
5074
  DollarClockSmallIcon.displayName = "DollarClockSmallIcon";
4975
5075
  var DollarClockSmallIcon$1 = DollarClockSmallIcon;
4976
5076
 
4977
- var _excluded$4D = ["gradient"];
5077
+ var _excluded$4F = ["gradient"];
4978
5078
 
4979
5079
  /**
4980
5080
  * @component DollarClockIcon
@@ -5004,7 +5104,7 @@
5004
5104
  */
5005
5105
  var DollarClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5006
5106
  var gradient = _ref.gradient,
5007
- props = _objectWithoutProperties(_ref, _excluded$4D);
5107
+ props = _objectWithoutProperties(_ref, _excluded$4F);
5008
5108
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5009
5109
  xmlns: "http://www.w3.org/2000/svg",
5010
5110
  width: 24,
@@ -5024,7 +5124,7 @@
5024
5124
  DollarClockIcon.displayName = "DollarClockIcon";
5025
5125
  var DollarClockIcon$1 = DollarClockIcon;
5026
5126
 
5027
- var _excluded$4C = ["gradient"];
5127
+ var _excluded$4E = ["gradient"];
5028
5128
 
5029
5129
  /**
5030
5130
  * @component DollarDocumentPlusIcon
@@ -5054,7 +5154,7 @@
5054
5154
  */
5055
5155
  var DollarDocumentPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5056
5156
  var gradient = _ref.gradient,
5057
- props = _objectWithoutProperties(_ref, _excluded$4C);
5157
+ props = _objectWithoutProperties(_ref, _excluded$4E);
5058
5158
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5059
5159
  xmlns: "http://www.w3.org/2000/svg",
5060
5160
  width: 24,
@@ -5074,7 +5174,7 @@
5074
5174
  DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
5075
5175
  var DollarDocumentPlusIcon$1 = DollarDocumentPlusIcon;
5076
5176
 
5077
- var _excluded$4B = ["gradient"];
5177
+ var _excluded$4D = ["gradient"];
5078
5178
 
5079
5179
  /**
5080
5180
  * @component DollarDocumentIcon
@@ -5104,7 +5204,7 @@
5104
5204
  */
5105
5205
  var DollarDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5106
5206
  var gradient = _ref.gradient,
5107
- props = _objectWithoutProperties(_ref, _excluded$4B);
5207
+ props = _objectWithoutProperties(_ref, _excluded$4D);
5108
5208
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5109
5209
  xmlns: "http://www.w3.org/2000/svg",
5110
5210
  width: 24,
@@ -5125,7 +5225,7 @@
5125
5225
  DollarDocumentIcon.displayName = "DollarDocumentIcon";
5126
5226
  var DollarDocumentIcon$1 = DollarDocumentIcon;
5127
5227
 
5128
- var _excluded$4A = ["gradient"];
5228
+ var _excluded$4C = ["gradient"];
5129
5229
 
5130
5230
  /**
5131
5231
  * @component DollarOffSmallIcon
@@ -5155,7 +5255,7 @@
5155
5255
  */
5156
5256
  var DollarOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5157
5257
  var gradient = _ref.gradient,
5158
- props = _objectWithoutProperties(_ref, _excluded$4A);
5258
+ props = _objectWithoutProperties(_ref, _excluded$4C);
5159
5259
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5160
5260
  xmlns: "http://www.w3.org/2000/svg",
5161
5261
  width: 12,
@@ -5175,7 +5275,7 @@
5175
5275
  DollarOffSmallIcon.displayName = "DollarOffSmallIcon";
5176
5276
  var DollarOffSmallIcon$1 = DollarOffSmallIcon;
5177
5277
 
5178
- var _excluded$4z = ["gradient"];
5278
+ var _excluded$4B = ["gradient"];
5179
5279
 
5180
5280
  /**
5181
5281
  * @component DollarOffIcon
@@ -5205,7 +5305,7 @@
5205
5305
  */
5206
5306
  var DollarOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5207
5307
  var gradient = _ref.gradient,
5208
- props = _objectWithoutProperties(_ref, _excluded$4z);
5308
+ props = _objectWithoutProperties(_ref, _excluded$4B);
5209
5309
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5210
5310
  xmlns: "http://www.w3.org/2000/svg",
5211
5311
  width: 24,
@@ -5225,7 +5325,7 @@
5225
5325
  DollarOffIcon.displayName = "DollarOffIcon";
5226
5326
  var DollarOffIcon$1 = DollarOffIcon;
5227
5327
 
5228
- var _excluded$4y = ["gradient"];
5328
+ var _excluded$4A = ["gradient"];
5229
5329
 
5230
5330
  /**
5231
5331
  * @component DollarSmallIcon
@@ -5255,7 +5355,7 @@
5255
5355
  */
5256
5356
  var DollarSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5257
5357
  var gradient = _ref.gradient,
5258
- props = _objectWithoutProperties(_ref, _excluded$4y);
5358
+ props = _objectWithoutProperties(_ref, _excluded$4A);
5259
5359
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5260
5360
  xmlns: "http://www.w3.org/2000/svg",
5261
5361
  width: 12,
@@ -5275,7 +5375,7 @@
5275
5375
  DollarSmallIcon.displayName = "DollarSmallIcon";
5276
5376
  var DollarSmallIcon$1 = DollarSmallIcon;
5277
5377
 
5278
- var _excluded$4x = ["gradient"];
5378
+ var _excluded$4z = ["gradient"];
5279
5379
 
5280
5380
  /**
5281
5381
  * @component DollarIcon
@@ -5305,7 +5405,7 @@
5305
5405
  */
5306
5406
  var DollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5307
5407
  var gradient = _ref.gradient,
5308
- props = _objectWithoutProperties(_ref, _excluded$4x);
5408
+ props = _objectWithoutProperties(_ref, _excluded$4z);
5309
5409
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5310
5410
  xmlns: "http://www.w3.org/2000/svg",
5311
5411
  width: 24,
@@ -5325,7 +5425,7 @@
5325
5425
  DollarIcon.displayName = "DollarIcon";
5326
5426
  var DollarIcon$1 = DollarIcon;
5327
5427
 
5328
- var _excluded$4w = ["gradient"];
5428
+ var _excluded$4y = ["gradient"];
5329
5429
 
5330
5430
  /**
5331
5431
  * @component DownloadIcon
@@ -5355,7 +5455,7 @@
5355
5455
  */
5356
5456
  var DownloadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5357
5457
  var gradient = _ref.gradient,
5358
- props = _objectWithoutProperties(_ref, _excluded$4w);
5458
+ props = _objectWithoutProperties(_ref, _excluded$4y);
5359
5459
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5360
5460
  xmlns: "http://www.w3.org/2000/svg",
5361
5461
  width: 24,
@@ -5375,7 +5475,7 @@
5375
5475
  DownloadIcon.displayName = "DownloadIcon";
5376
5476
  var DownloadIcon$1 = DownloadIcon;
5377
5477
 
5378
- var _excluded$4v = ["gradient"];
5478
+ var _excluded$4x = ["gradient"];
5379
5479
 
5380
5480
  /**
5381
5481
  * @component DrawIcon
@@ -5405,7 +5505,7 @@
5405
5505
  */
5406
5506
  var DrawIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5407
5507
  var gradient = _ref.gradient,
5408
- props = _objectWithoutProperties(_ref, _excluded$4v);
5508
+ props = _objectWithoutProperties(_ref, _excluded$4x);
5409
5509
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5410
5510
  xmlns: "http://www.w3.org/2000/svg",
5411
5511
  width: 24,
@@ -5426,7 +5526,7 @@
5426
5526
  DrawIcon.displayName = "DrawIcon";
5427
5527
  var DrawIcon$1 = DrawIcon;
5428
5528
 
5429
- var _excluded$4u = ["gradient"];
5529
+ var _excluded$4w = ["gradient"];
5430
5530
 
5431
5531
  /**
5432
5532
  * @component DriveIcon
@@ -5456,7 +5556,7 @@
5456
5556
  */
5457
5557
  var DriveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5458
5558
  var gradient = _ref.gradient,
5459
- props = _objectWithoutProperties(_ref, _excluded$4u);
5559
+ props = _objectWithoutProperties(_ref, _excluded$4w);
5460
5560
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5461
5561
  xmlns: "http://www.w3.org/2000/svg",
5462
5562
  width: 24,
@@ -5476,7 +5576,7 @@
5476
5576
  DriveIcon.displayName = "DriveIcon";
5477
5577
  var DriveIcon$1 = DriveIcon;
5478
5578
 
5479
- var _excluded$4t = ["gradient"];
5579
+ var _excluded$4v = ["gradient"];
5480
5580
 
5481
5581
  /**
5482
5582
  * @component DropboxIcon
@@ -5506,7 +5606,7 @@
5506
5606
  */
5507
5607
  var DropboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5508
5608
  var gradient = _ref.gradient,
5509
- props = _objectWithoutProperties(_ref, _excluded$4t);
5609
+ props = _objectWithoutProperties(_ref, _excluded$4v);
5510
5610
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5511
5611
  xmlns: "http://www.w3.org/2000/svg",
5512
5612
  width: 24,
@@ -5526,7 +5626,7 @@
5526
5626
  DropboxIcon.displayName = "DropboxIcon";
5527
5627
  var DropboxIcon$1 = DropboxIcon;
5528
5628
 
5529
- var _excluded$4s = ["gradient"];
5629
+ var _excluded$4u = ["gradient"];
5530
5630
 
5531
5631
  /**
5532
5632
  * @component DuplicateIcon
@@ -5556,7 +5656,7 @@
5556
5656
  */
5557
5657
  var DuplicateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5558
5658
  var gradient = _ref.gradient,
5559
- props = _objectWithoutProperties(_ref, _excluded$4s);
5659
+ props = _objectWithoutProperties(_ref, _excluded$4u);
5560
5660
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5561
5661
  xmlns: "http://www.w3.org/2000/svg",
5562
5662
  width: 24,
@@ -5576,7 +5676,7 @@
5576
5676
  DuplicateIcon.displayName = "DuplicateIcon";
5577
5677
  var DuplicateIcon$1 = DuplicateIcon;
5578
5678
 
5579
- var _excluded$4r = ["gradient"];
5679
+ var _excluded$4t = ["gradient"];
5580
5680
 
5581
5681
  /**
5582
5682
  * @component EditMultipleIcon
@@ -5606,7 +5706,7 @@
5606
5706
  */
5607
5707
  var EditMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5608
5708
  var gradient = _ref.gradient,
5609
- props = _objectWithoutProperties(_ref, _excluded$4r);
5709
+ props = _objectWithoutProperties(_ref, _excluded$4t);
5610
5710
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5611
5711
  xmlns: "http://www.w3.org/2000/svg",
5612
5712
  width: 24,
@@ -5626,7 +5726,7 @@
5626
5726
  EditMultipleIcon.displayName = "EditMultipleIcon";
5627
5727
  var EditMultipleIcon$1 = EditMultipleIcon;
5628
5728
 
5629
- var _excluded$4q = ["gradient"];
5729
+ var _excluded$4s = ["gradient"];
5630
5730
 
5631
5731
  /**
5632
5732
  * @component EditIcon
@@ -5656,7 +5756,7 @@
5656
5756
  */
5657
5757
  var EditIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5658
5758
  var gradient = _ref.gradient,
5659
- props = _objectWithoutProperties(_ref, _excluded$4q);
5759
+ props = _objectWithoutProperties(_ref, _excluded$4s);
5660
5760
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5661
5761
  xmlns: "http://www.w3.org/2000/svg",
5662
5762
  width: 24,
@@ -5676,7 +5776,7 @@
5676
5776
  EditIcon.displayName = "EditIcon";
5677
5777
  var EditIcon$1 = EditIcon;
5678
5778
 
5679
- var _excluded$4p = ["gradient"];
5779
+ var _excluded$4r = ["gradient"];
5680
5780
 
5681
5781
  /**
5682
5782
  * @component EmojiIcon
@@ -5706,7 +5806,7 @@
5706
5806
  */
5707
5807
  var EmojiIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5708
5808
  var gradient = _ref.gradient,
5709
- props = _objectWithoutProperties(_ref, _excluded$4p);
5809
+ props = _objectWithoutProperties(_ref, _excluded$4r);
5710
5810
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5711
5811
  xmlns: "http://www.w3.org/2000/svg",
5712
5812
  width: 24,
@@ -5726,7 +5826,7 @@
5726
5826
  EmojiIcon.displayName = "EmojiIcon";
5727
5827
  var EmojiIcon$1 = EmojiIcon;
5728
5828
 
5729
- var _excluded$4o = ["gradient"];
5829
+ var _excluded$4q = ["gradient"];
5730
5830
 
5731
5831
  /**
5732
5832
  * @component EstimatePlusIcon
@@ -5756,7 +5856,7 @@
5756
5856
  */
5757
5857
  var EstimatePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5758
5858
  var gradient = _ref.gradient,
5759
- props = _objectWithoutProperties(_ref, _excluded$4o);
5859
+ props = _objectWithoutProperties(_ref, _excluded$4q);
5760
5860
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5761
5861
  xmlns: "http://www.w3.org/2000/svg",
5762
5862
  width: 24,
@@ -5777,7 +5877,7 @@
5777
5877
  EstimatePlusIcon.displayName = "EstimatePlusIcon";
5778
5878
  var EstimatePlusIcon$1 = EstimatePlusIcon;
5779
5879
 
5780
- var _excluded$4n = ["gradient"];
5880
+ var _excluded$4p = ["gradient"];
5781
5881
 
5782
5882
  /**
5783
5883
  * @component EstimatesIcon
@@ -5807,7 +5907,7 @@
5807
5907
  */
5808
5908
  var EstimatesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5809
5909
  var gradient = _ref.gradient,
5810
- props = _objectWithoutProperties(_ref, _excluded$4n);
5910
+ props = _objectWithoutProperties(_ref, _excluded$4p);
5811
5911
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5812
5912
  xmlns: "http://www.w3.org/2000/svg",
5813
5913
  width: 24,
@@ -5831,7 +5931,7 @@
5831
5931
  EstimatesIcon.displayName = "EstimatesIcon";
5832
5932
  var EstimatesIcon$1 = EstimatesIcon;
5833
5933
 
5834
- var _excluded$4m = ["gradient"];
5934
+ var _excluded$4o = ["gradient"];
5835
5935
 
5836
5936
  /**
5837
5937
  * @component ExpandAllIcon
@@ -5861,7 +5961,7 @@
5861
5961
  */
5862
5962
  var ExpandAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5863
5963
  var gradient = _ref.gradient,
5864
- props = _objectWithoutProperties(_ref, _excluded$4m);
5964
+ props = _objectWithoutProperties(_ref, _excluded$4o);
5865
5965
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5866
5966
  xmlns: "http://www.w3.org/2000/svg",
5867
5967
  width: 24,
@@ -5881,7 +5981,7 @@
5881
5981
  ExpandAllIcon.displayName = "ExpandAllIcon";
5882
5982
  var ExpandAllIcon$1 = ExpandAllIcon;
5883
5983
 
5884
- var _excluded$4l = ["gradient"];
5984
+ var _excluded$4n = ["gradient"];
5885
5985
 
5886
5986
  /**
5887
5987
  * @component ExpenseAddIcon
@@ -5911,7 +6011,7 @@
5911
6011
  */
5912
6012
  var ExpenseAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5913
6013
  var gradient = _ref.gradient,
5914
- props = _objectWithoutProperties(_ref, _excluded$4l);
6014
+ props = _objectWithoutProperties(_ref, _excluded$4n);
5915
6015
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5916
6016
  xmlns: "http://www.w3.org/2000/svg",
5917
6017
  width: 24,
@@ -5931,7 +6031,7 @@
5931
6031
  ExpenseAddIcon.displayName = "ExpenseAddIcon";
5932
6032
  var ExpenseAddIcon$1 = ExpenseAddIcon;
5933
6033
 
5934
- var _excluded$4k = ["gradient"];
6034
+ var _excluded$4m = ["gradient"];
5935
6035
 
5936
6036
  /**
5937
6037
  * @component ExpensePlusIcon
@@ -5961,7 +6061,7 @@
5961
6061
  */
5962
6062
  var ExpensePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
5963
6063
  var gradient = _ref.gradient,
5964
- props = _objectWithoutProperties(_ref, _excluded$4k);
6064
+ props = _objectWithoutProperties(_ref, _excluded$4m);
5965
6065
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
5966
6066
  xmlns: "http://www.w3.org/2000/svg",
5967
6067
  width: 24,
@@ -5983,7 +6083,7 @@
5983
6083
  ExpensePlusIcon.displayName = "ExpensePlusIcon";
5984
6084
  var ExpensePlusIcon$1 = ExpensePlusIcon;
5985
6085
 
5986
- var _excluded$4j = ["gradient"];
6086
+ var _excluded$4l = ["gradient"];
5987
6087
 
5988
6088
  /**
5989
6089
  * @component EyeOffSmallIcon
@@ -6013,7 +6113,7 @@
6013
6113
  */
6014
6114
  var EyeOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6015
6115
  var gradient = _ref.gradient,
6016
- props = _objectWithoutProperties(_ref, _excluded$4j);
6116
+ props = _objectWithoutProperties(_ref, _excluded$4l);
6017
6117
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6018
6118
  xmlns: "http://www.w3.org/2000/svg",
6019
6119
  width: 12,
@@ -6033,7 +6133,7 @@
6033
6133
  EyeOffSmallIcon.displayName = "EyeOffSmallIcon";
6034
6134
  var EyeOffSmallIcon$1 = EyeOffSmallIcon;
6035
6135
 
6036
- var _excluded$4i = ["gradient"];
6136
+ var _excluded$4k = ["gradient"];
6037
6137
 
6038
6138
  /**
6039
6139
  * @component EyeOffIcon
@@ -6063,7 +6163,7 @@
6063
6163
  */
6064
6164
  var EyeOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6065
6165
  var gradient = _ref.gradient,
6066
- props = _objectWithoutProperties(_ref, _excluded$4i);
6166
+ props = _objectWithoutProperties(_ref, _excluded$4k);
6067
6167
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6068
6168
  xmlns: "http://www.w3.org/2000/svg",
6069
6169
  width: 24,
@@ -6083,7 +6183,7 @@
6083
6183
  EyeOffIcon.displayName = "EyeOffIcon";
6084
6184
  var EyeOffIcon$1 = EyeOffIcon;
6085
6185
 
6086
- var _excluded$4h = ["gradient"];
6186
+ var _excluded$4j = ["gradient"];
6087
6187
 
6088
6188
  /**
6089
6189
  * @component EyeSmallIcon
@@ -6113,7 +6213,7 @@
6113
6213
  */
6114
6214
  var EyeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6115
6215
  var gradient = _ref.gradient,
6116
- props = _objectWithoutProperties(_ref, _excluded$4h);
6216
+ props = _objectWithoutProperties(_ref, _excluded$4j);
6117
6217
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6118
6218
  xmlns: "http://www.w3.org/2000/svg",
6119
6219
  width: 12,
@@ -6133,7 +6233,7 @@
6133
6233
  EyeSmallIcon.displayName = "EyeSmallIcon";
6134
6234
  var EyeSmallIcon$1 = EyeSmallIcon;
6135
6235
 
6136
- var _excluded$4g = ["gradient"];
6236
+ var _excluded$4i = ["gradient"];
6137
6237
 
6138
6238
  /**
6139
6239
  * @component EyeIcon
@@ -6163,7 +6263,7 @@
6163
6263
  */
6164
6264
  var EyeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6165
6265
  var gradient = _ref.gradient,
6166
- props = _objectWithoutProperties(_ref, _excluded$4g);
6266
+ props = _objectWithoutProperties(_ref, _excluded$4i);
6167
6267
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6168
6268
  xmlns: "http://www.w3.org/2000/svg",
6169
6269
  width: 24,
@@ -6183,7 +6283,7 @@
6183
6283
  EyeIcon.displayName = "EyeIcon";
6184
6284
  var EyeIcon$1 = EyeIcon;
6185
6285
 
6186
- var _excluded$4f = ["gradient"];
6286
+ var _excluded$4h = ["gradient"];
6187
6287
 
6188
6288
  /**
6189
6289
  * @component FilterIcon
@@ -6213,7 +6313,7 @@
6213
6313
  */
6214
6314
  var FilterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6215
6315
  var gradient = _ref.gradient,
6216
- props = _objectWithoutProperties(_ref, _excluded$4f);
6316
+ props = _objectWithoutProperties(_ref, _excluded$4h);
6217
6317
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6218
6318
  xmlns: "http://www.w3.org/2000/svg",
6219
6319
  width: 24,
@@ -6233,7 +6333,7 @@
6233
6333
  FilterIcon.displayName = "FilterIcon";
6234
6334
  var FilterIcon$1 = FilterIcon;
6235
6335
 
6236
- var _excluded$4e = ["gradient"];
6336
+ var _excluded$4g = ["gradient"];
6237
6337
 
6238
6338
  /**
6239
6339
  * @component FolderMoveIcon
@@ -6263,7 +6363,7 @@
6263
6363
  */
6264
6364
  var FolderMoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6265
6365
  var gradient = _ref.gradient,
6266
- props = _objectWithoutProperties(_ref, _excluded$4e);
6366
+ props = _objectWithoutProperties(_ref, _excluded$4g);
6267
6367
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6268
6368
  xmlns: "http://www.w3.org/2000/svg",
6269
6369
  width: 24,
@@ -6283,7 +6383,7 @@
6283
6383
  FolderMoveIcon.displayName = "FolderMoveIcon";
6284
6384
  var FolderMoveIcon$1 = FolderMoveIcon;
6285
6385
 
6286
- var _excluded$4d = ["gradient"];
6386
+ var _excluded$4f = ["gradient"];
6287
6387
 
6288
6388
  /**
6289
6389
  * @component FolderOutlineIcon
@@ -6313,7 +6413,7 @@
6313
6413
  */
6314
6414
  var FolderOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6315
6415
  var gradient = _ref.gradient,
6316
- props = _objectWithoutProperties(_ref, _excluded$4d);
6416
+ props = _objectWithoutProperties(_ref, _excluded$4f);
6317
6417
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6318
6418
  xmlns: "http://www.w3.org/2000/svg",
6319
6419
  width: 24,
@@ -6333,7 +6433,7 @@
6333
6433
  FolderOutlineIcon.displayName = "FolderOutlineIcon";
6334
6434
  var FolderOutlineIcon$1 = FolderOutlineIcon;
6335
6435
 
6336
- var _excluded$4c = ["gradient"];
6436
+ var _excluded$4e = ["gradient"];
6337
6437
 
6338
6438
  /**
6339
6439
  * @component FolderPlusIcon
@@ -6363,7 +6463,7 @@
6363
6463
  */
6364
6464
  var FolderPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6365
6465
  var gradient = _ref.gradient,
6366
- props = _objectWithoutProperties(_ref, _excluded$4c);
6466
+ props = _objectWithoutProperties(_ref, _excluded$4e);
6367
6467
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6368
6468
  xmlns: "http://www.w3.org/2000/svg",
6369
6469
  width: 24,
@@ -6384,7 +6484,7 @@
6384
6484
  FolderPlusIcon.displayName = "FolderPlusIcon";
6385
6485
  var FolderPlusIcon$1 = FolderPlusIcon;
6386
6486
 
6387
- var _excluded$4b = ["gradient"];
6487
+ var _excluded$4d = ["gradient"];
6388
6488
 
6389
6489
  /**
6390
6490
  * @component GearIcon
@@ -6397,7 +6497,7 @@
6397
6497
  */
6398
6498
  var GearIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6399
6499
  var gradient = _ref.gradient,
6400
- props = _objectWithoutProperties(_ref, _excluded$4b);
6500
+ props = _objectWithoutProperties(_ref, _excluded$4d);
6401
6501
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6402
6502
  xmlns: "http://www.w3.org/2000/svg",
6403
6503
  width: 24,
@@ -6422,7 +6522,7 @@
6422
6522
  GearIcon.displayName = "GearIcon";
6423
6523
  var GearIcon$1 = GearIcon;
6424
6524
 
6425
- var _excluded$4a = ["gradient"];
6525
+ var _excluded$4c = ["gradient"];
6426
6526
  var maskUid$1 = 0;
6427
6527
 
6428
6528
  /**
@@ -6438,7 +6538,7 @@
6438
6538
  */
6439
6539
  var GearFailedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6440
6540
  var gradient = _ref.gradient,
6441
- props = _objectWithoutProperties(_ref, _excluded$4a);
6541
+ props = _objectWithoutProperties(_ref, _excluded$4c);
6442
6542
  var _useState = React.useState(function () {
6443
6543
  return "gear-failed-cut-".concat(++maskUid$1);
6444
6544
  }),
@@ -6489,7 +6589,7 @@
6489
6589
  GearFailedIcon.displayName = "GearFailedIcon";
6490
6590
  var GearFailedIcon$1 = GearFailedIcon;
6491
6591
 
6492
- var _excluded$49 = ["gradient"];
6592
+ var _excluded$4b = ["gradient"];
6493
6593
 
6494
6594
  /**
6495
6595
  * @component GiftIcon
@@ -6519,7 +6619,7 @@
6519
6619
  */
6520
6620
  var GiftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6521
6621
  var gradient = _ref.gradient,
6522
- props = _objectWithoutProperties(_ref, _excluded$49);
6622
+ props = _objectWithoutProperties(_ref, _excluded$4b);
6523
6623
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6524
6624
  xmlns: "http://www.w3.org/2000/svg",
6525
6625
  width: 24,
@@ -6540,7 +6640,7 @@
6540
6640
  GiftIcon.displayName = "GiftIcon";
6541
6641
  var GiftIcon$1 = GiftIcon;
6542
6642
 
6543
- var _excluded$48 = ["gradient"];
6643
+ var _excluded$4a = ["gradient"];
6544
6644
 
6545
6645
  /**
6546
6646
  * @component GitBranchIcon
@@ -6553,7 +6653,7 @@
6553
6653
  */
6554
6654
  var GitBranchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6555
6655
  var gradient = _ref.gradient,
6556
- props = _objectWithoutProperties(_ref, _excluded$48);
6656
+ props = _objectWithoutProperties(_ref, _excluded$4a);
6557
6657
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6558
6658
  xmlns: "http://www.w3.org/2000/svg",
6559
6659
  width: 24,
@@ -6584,7 +6684,7 @@
6584
6684
  GitBranchIcon.displayName = "GitBranchIcon";
6585
6685
  var GitBranchIcon$1 = GitBranchIcon;
6586
6686
 
6587
- var _excluded$47 = ["gradient"];
6687
+ var _excluded$49 = ["gradient"];
6588
6688
 
6589
6689
  /**
6590
6690
  * @component GitCommitIcon
@@ -6597,7 +6697,7 @@
6597
6697
  */
6598
6698
  var GitCommitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6599
6699
  var gradient = _ref.gradient,
6600
- props = _objectWithoutProperties(_ref, _excluded$47);
6700
+ props = _objectWithoutProperties(_ref, _excluded$49);
6601
6701
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6602
6702
  xmlns: "http://www.w3.org/2000/svg",
6603
6703
  width: 24,
@@ -6624,7 +6724,7 @@
6624
6724
  GitCommitIcon.displayName = "GitCommitIcon";
6625
6725
  var GitCommitIcon$1 = GitCommitIcon;
6626
6726
 
6627
- var _excluded$46 = ["gradient"];
6727
+ var _excluded$48 = ["gradient"];
6628
6728
 
6629
6729
  /**
6630
6730
  * @component GitHubIcon
@@ -6639,7 +6739,7 @@
6639
6739
  */
6640
6740
  var GitHubIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6641
6741
  var gradient = _ref.gradient,
6642
- props = _objectWithoutProperties(_ref, _excluded$46);
6742
+ props = _objectWithoutProperties(_ref, _excluded$48);
6643
6743
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6644
6744
  xmlns: "http://www.w3.org/2000/svg",
6645
6745
  width: 24,
@@ -6660,7 +6760,7 @@
6660
6760
  GitHubIcon.displayName = "GitHubIcon";
6661
6761
  var GitHubIcon$1 = GitHubIcon;
6662
6762
 
6663
- var _excluded$45 = ["gradient"];
6763
+ var _excluded$47 = ["gradient"];
6664
6764
 
6665
6765
  /**
6666
6766
  * @component GitIcon
@@ -6675,7 +6775,7 @@
6675
6775
  */
6676
6776
  var GitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6677
6777
  var gradient = _ref.gradient,
6678
- props = _objectWithoutProperties(_ref, _excluded$45);
6778
+ props = _objectWithoutProperties(_ref, _excluded$47);
6679
6779
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6680
6780
  xmlns: "http://www.w3.org/2000/svg",
6681
6781
  width: 24,
@@ -6696,7 +6796,7 @@
6696
6796
  GitIcon.displayName = "GitIcon";
6697
6797
  var GitIcon$1 = GitIcon;
6698
6798
 
6699
- var _excluded$44 = ["gradient"];
6799
+ var _excluded$46 = ["gradient"];
6700
6800
 
6701
6801
  /**
6702
6802
  * @component GitLabIcon
@@ -6711,7 +6811,7 @@
6711
6811
  */
6712
6812
  var GitLabIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6713
6813
  var gradient = _ref.gradient,
6714
- props = _objectWithoutProperties(_ref, _excluded$44);
6814
+ props = _objectWithoutProperties(_ref, _excluded$46);
6715
6815
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6716
6816
  xmlns: "http://www.w3.org/2000/svg",
6717
6817
  width: 24,
@@ -6732,7 +6832,7 @@
6732
6832
  GitLabIcon.displayName = "GitLabIcon";
6733
6833
  var GitLabIcon$1 = GitLabIcon;
6734
6834
 
6735
- var _excluded$43 = ["gradient"];
6835
+ var _excluded$45 = ["gradient"];
6736
6836
 
6737
6837
  /**
6738
6838
  * @component GitMergeIcon
@@ -6747,7 +6847,7 @@
6747
6847
  */
6748
6848
  var GitMergeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6749
6849
  var gradient = _ref.gradient,
6750
- props = _objectWithoutProperties(_ref, _excluded$43);
6850
+ props = _objectWithoutProperties(_ref, _excluded$45);
6751
6851
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6752
6852
  xmlns: "http://www.w3.org/2000/svg",
6753
6853
  width: 24,
@@ -6778,7 +6878,7 @@
6778
6878
  GitMergeIcon.displayName = "GitMergeIcon";
6779
6879
  var GitMergeIcon$1 = GitMergeIcon;
6780
6880
 
6781
- var _excluded$42 = ["gradient"];
6881
+ var _excluded$44 = ["gradient"];
6782
6882
 
6783
6883
  /**
6784
6884
  * @component GitPullRequestIcon
@@ -6791,7 +6891,7 @@
6791
6891
  */
6792
6892
  var GitPullRequestIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6793
6893
  var gradient = _ref.gradient,
6794
- props = _objectWithoutProperties(_ref, _excluded$42);
6894
+ props = _objectWithoutProperties(_ref, _excluded$44);
6795
6895
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6796
6896
  xmlns: "http://www.w3.org/2000/svg",
6797
6897
  width: 24,
@@ -6824,7 +6924,7 @@
6824
6924
  GitPullRequestIcon.displayName = "GitPullRequestIcon";
6825
6925
  var GitPullRequestIcon$1 = GitPullRequestIcon;
6826
6926
 
6827
- var _excluded$41 = ["gradient"];
6927
+ var _excluded$43 = ["gradient"];
6828
6928
 
6829
6929
  /**
6830
6930
  * @component GitPullRequestDraftIcon
@@ -6839,7 +6939,7 @@
6839
6939
  */
6840
6940
  var GitPullRequestDraftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6841
6941
  var gradient = _ref.gradient,
6842
- props = _objectWithoutProperties(_ref, _excluded$41);
6942
+ props = _objectWithoutProperties(_ref, _excluded$43);
6843
6943
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6844
6944
  xmlns: "http://www.w3.org/2000/svg",
6845
6945
  width: 24,
@@ -6873,7 +6973,7 @@
6873
6973
  GitPullRequestDraftIcon.displayName = "GitPullRequestDraftIcon";
6874
6974
  var GitPullRequestDraftIcon$1 = GitPullRequestDraftIcon;
6875
6975
 
6876
- var _excluded$40 = ["gradient"];
6976
+ var _excluded$42 = ["gradient"];
6877
6977
 
6878
6978
  /**
6879
6979
  * @component GitPullRequestClosedIcon
@@ -6889,7 +6989,7 @@
6889
6989
  */
6890
6990
  var GitPullRequestClosedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6891
6991
  var gradient = _ref.gradient,
6892
- props = _objectWithoutProperties(_ref, _excluded$40);
6992
+ props = _objectWithoutProperties(_ref, _excluded$42);
6893
6993
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6894
6994
  xmlns: "http://www.w3.org/2000/svg",
6895
6995
  width: 24,
@@ -6926,7 +7026,7 @@
6926
7026
  GitPullRequestClosedIcon.displayName = "GitPullRequestClosedIcon";
6927
7027
  var GitPullRequestClosedIcon$1 = GitPullRequestClosedIcon;
6928
7028
 
6929
- var _excluded$3$ = ["gradient"];
7029
+ var _excluded$41 = ["gradient"];
6930
7030
 
6931
7031
  /**
6932
7032
  * @component GitRepositoryIcon
@@ -6940,7 +7040,7 @@
6940
7040
  */
6941
7041
  var GitRepositoryIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6942
7042
  var gradient = _ref.gradient,
6943
- props = _objectWithoutProperties(_ref, _excluded$3$);
7043
+ props = _objectWithoutProperties(_ref, _excluded$41);
6944
7044
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
6945
7045
  xmlns: "http://www.w3.org/2000/svg",
6946
7046
  width: 24,
@@ -6969,7 +7069,7 @@
6969
7069
  GitRepositoryIcon.displayName = "GitRepositoryIcon";
6970
7070
  var GitRepositoryIcon$1 = GitRepositoryIcon;
6971
7071
 
6972
- var _excluded$3_ = ["gradient"];
7072
+ var _excluded$40 = ["gradient"];
6973
7073
  var maskUid = 0;
6974
7074
 
6975
7075
  /**
@@ -6985,7 +7085,7 @@
6985
7085
  */
6986
7086
  var GitRepositoryConnectIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
6987
7087
  var gradient = _ref.gradient,
6988
- props = _objectWithoutProperties(_ref, _excluded$3_);
7088
+ props = _objectWithoutProperties(_ref, _excluded$40);
6989
7089
  var _useState = React.useState(function () {
6990
7090
  return "git-repository-connect-cut-".concat(++maskUid);
6991
7091
  }),
@@ -7046,7 +7146,7 @@
7046
7146
  GitRepositoryConnectIcon.displayName = "GitRepositoryConnectIcon";
7047
7147
  var GitRepositoryConnectIcon$1 = GitRepositoryConnectIcon;
7048
7148
 
7049
- var _excluded$3Z = ["gradient"];
7149
+ var _excluded$3$ = ["gradient"];
7050
7150
 
7051
7151
  /**
7052
7152
  * @component GroupByIcon
@@ -7076,7 +7176,7 @@
7076
7176
  */
7077
7177
  var GroupByIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7078
7178
  var gradient = _ref.gradient,
7079
- props = _objectWithoutProperties(_ref, _excluded$3Z);
7179
+ props = _objectWithoutProperties(_ref, _excluded$3$);
7080
7180
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7081
7181
  xmlns: "http://www.w3.org/2000/svg",
7082
7182
  width: 24,
@@ -7095,7 +7195,7 @@
7095
7195
  GroupByIcon.displayName = "GroupByIcon";
7096
7196
  var GroupByIcon$1 = GroupByIcon;
7097
7197
 
7098
- var _excluded$3Y = ["gradient"];
7198
+ var _excluded$3_ = ["gradient"];
7099
7199
 
7100
7200
  /**
7101
7201
  * @component HashtagIcon
@@ -7125,7 +7225,7 @@
7125
7225
  */
7126
7226
  var HashtagIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7127
7227
  var gradient = _ref.gradient,
7128
- props = _objectWithoutProperties(_ref, _excluded$3Y);
7228
+ props = _objectWithoutProperties(_ref, _excluded$3_);
7129
7229
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7130
7230
  xmlns: "http://www.w3.org/2000/svg",
7131
7231
  width: 24,
@@ -7146,7 +7246,7 @@
7146
7246
  HashtagIcon.displayName = "HashtagIcon";
7147
7247
  var HashtagIcon$1 = HashtagIcon;
7148
7248
 
7149
- var _excluded$3X = ["gradient"];
7249
+ var _excluded$3Z = ["gradient"];
7150
7250
 
7151
7251
  /**
7152
7252
  * @component HashIcon
@@ -7176,7 +7276,7 @@
7176
7276
  */
7177
7277
  var HashIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7178
7278
  var gradient = _ref.gradient,
7179
- props = _objectWithoutProperties(_ref, _excluded$3X);
7279
+ props = _objectWithoutProperties(_ref, _excluded$3Z);
7180
7280
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7181
7281
  xmlns: "http://www.w3.org/2000/svg",
7182
7282
  width: 24,
@@ -7195,7 +7295,7 @@
7195
7295
  HashIcon.displayName = "HashIcon";
7196
7296
  var HashIcon$1 = HashIcon;
7197
7297
 
7198
- var _excluded$3W = ["gradient"];
7298
+ var _excluded$3Y = ["gradient"];
7199
7299
 
7200
7300
  /**
7201
7301
  * @component CommandLineIcon
@@ -7225,7 +7325,7 @@
7225
7325
  */
7226
7326
  var CommandLineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7227
7327
  var gradient = _ref.gradient,
7228
- props = _objectWithoutProperties(_ref, _excluded$3W);
7328
+ props = _objectWithoutProperties(_ref, _excluded$3Y);
7229
7329
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7230
7330
  xmlns: "http://www.w3.org/2000/svg",
7231
7331
  width: 24,
@@ -7244,7 +7344,7 @@
7244
7344
  CommandLineIcon.displayName = "CommandLineIcon";
7245
7345
  var CommandLineIcon$1 = CommandLineIcon;
7246
7346
 
7247
- var _excluded$3V = ["gradient"];
7347
+ var _excluded$3X = ["gradient"];
7248
7348
 
7249
7349
  /**
7250
7350
  * @component HelpIcon
@@ -7274,7 +7374,7 @@
7274
7374
  */
7275
7375
  var HelpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7276
7376
  var gradient = _ref.gradient,
7277
- props = _objectWithoutProperties(_ref, _excluded$3V);
7377
+ props = _objectWithoutProperties(_ref, _excluded$3X);
7278
7378
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7279
7379
  xmlns: "http://www.w3.org/2000/svg",
7280
7380
  width: 24,
@@ -7294,7 +7394,7 @@
7294
7394
  HelpIcon.displayName = "HelpIcon";
7295
7395
  var HelpIcon$1 = HelpIcon;
7296
7396
 
7297
- var _excluded$3U = ["gradient"];
7397
+ var _excluded$3W = ["gradient"];
7298
7398
 
7299
7399
  /**
7300
7400
  * @component HistoryOfChangesIcon
@@ -7324,7 +7424,7 @@
7324
7424
  */
7325
7425
  var HistoryOfChangesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7326
7426
  var gradient = _ref.gradient,
7327
- props = _objectWithoutProperties(_ref, _excluded$3U);
7427
+ props = _objectWithoutProperties(_ref, _excluded$3W);
7328
7428
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7329
7429
  xmlns: "http://www.w3.org/2000/svg",
7330
7430
  width: 24,
@@ -7345,7 +7445,7 @@
7345
7445
  HistoryOfChangesIcon.displayName = "HistoryOfChangesIcon";
7346
7446
  var HistoryOfChangesIcon$1 = HistoryOfChangesIcon;
7347
7447
 
7348
- var _excluded$3T = ["gradient"];
7448
+ var _excluded$3V = ["gradient"];
7349
7449
 
7350
7450
  /**
7351
7451
  * @component ImageIcon
@@ -7375,7 +7475,7 @@
7375
7475
  */
7376
7476
  var ImageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7377
7477
  var gradient = _ref.gradient,
7378
- props = _objectWithoutProperties(_ref, _excluded$3T);
7478
+ props = _objectWithoutProperties(_ref, _excluded$3V);
7379
7479
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7380
7480
  xmlns: "http://www.w3.org/2000/svg",
7381
7481
  width: 24,
@@ -7396,7 +7496,7 @@
7396
7496
  ImageIcon.displayName = "ImageIcon";
7397
7497
  var ImageIcon$1 = ImageIcon;
7398
7498
 
7399
- var _excluded$3S = ["gradient"];
7499
+ var _excluded$3U = ["gradient"];
7400
7500
 
7401
7501
  /**
7402
7502
  * @component InfoSmallIcon
@@ -7426,7 +7526,7 @@
7426
7526
  */
7427
7527
  var InfoSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7428
7528
  var gradient = _ref.gradient,
7429
- props = _objectWithoutProperties(_ref, _excluded$3S);
7529
+ props = _objectWithoutProperties(_ref, _excluded$3U);
7430
7530
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7431
7531
  xmlns: "http://www.w3.org/2000/svg",
7432
7532
  width: 15,
@@ -7446,7 +7546,7 @@
7446
7546
  InfoSmallIcon.displayName = "InfoSmallIcon";
7447
7547
  var InfoSmallIcon$1 = InfoSmallIcon;
7448
7548
 
7449
- var _excluded$3R = ["gradient"];
7549
+ var _excluded$3T = ["gradient"];
7450
7550
 
7451
7551
  /**
7452
7552
  * @component InfoIcon
@@ -7476,7 +7576,7 @@
7476
7576
  */
7477
7577
  var InfoIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7478
7578
  var gradient = _ref.gradient,
7479
- props = _objectWithoutProperties(_ref, _excluded$3R);
7579
+ props = _objectWithoutProperties(_ref, _excluded$3T);
7480
7580
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7481
7581
  xmlns: "http://www.w3.org/2000/svg",
7482
7582
  width: 24,
@@ -7496,7 +7596,7 @@
7496
7596
  InfoIcon.displayName = "InfoIcon";
7497
7597
  var InfoIcon$1 = InfoIcon;
7498
7598
 
7499
- var _excluded$3Q = ["gradient"];
7599
+ var _excluded$3S = ["gradient"];
7500
7600
 
7501
7601
  /**
7502
7602
  * @component InsertLinkIcon
@@ -7526,7 +7626,7 @@
7526
7626
  */
7527
7627
  var InsertLinkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7528
7628
  var gradient = _ref.gradient,
7529
- props = _objectWithoutProperties(_ref, _excluded$3Q);
7629
+ props = _objectWithoutProperties(_ref, _excluded$3S);
7530
7630
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7531
7631
  xmlns: "http://www.w3.org/2000/svg",
7532
7632
  width: 24,
@@ -7546,7 +7646,7 @@
7546
7646
  InsertLinkIcon.displayName = "InsertLinkIcon";
7547
7647
  var InsertLinkIcon$1 = InsertLinkIcon;
7548
7648
 
7549
- var _excluded$3P = ["gradient"];
7649
+ var _excluded$3R = ["gradient"];
7550
7650
 
7551
7651
  /**
7552
7652
  * @component IntegrationsIcon
@@ -7576,7 +7676,7 @@
7576
7676
  */
7577
7677
  var IntegrationsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7578
7678
  var gradient = _ref.gradient,
7579
- props = _objectWithoutProperties(_ref, _excluded$3P);
7679
+ props = _objectWithoutProperties(_ref, _excluded$3R);
7580
7680
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7581
7681
  xmlns: "http://www.w3.org/2000/svg",
7582
7682
  width: 24,
@@ -7600,7 +7700,7 @@
7600
7700
  IntegrationsIcon.displayName = "IntegrationsIcon";
7601
7701
  var IntegrationsIcon$1 = IntegrationsIcon;
7602
7702
 
7603
- var _excluded$3O = ["gradient"];
7703
+ var _excluded$3Q = ["gradient"];
7604
7704
 
7605
7705
  /**
7606
7706
  * @component InvoicesIcon
@@ -7630,7 +7730,7 @@
7630
7730
  */
7631
7731
  var InvoicesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7632
7732
  var gradient = _ref.gradient,
7633
- props = _objectWithoutProperties(_ref, _excluded$3O);
7733
+ props = _objectWithoutProperties(_ref, _excluded$3Q);
7634
7734
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7635
7735
  xmlns: "http://www.w3.org/2000/svg",
7636
7736
  width: 24,
@@ -7654,7 +7754,7 @@
7654
7754
  InvoicesIcon.displayName = "InvoicesIcon";
7655
7755
  var InvoicesIcon$1 = InvoicesIcon;
7656
7756
 
7657
- var _excluded$3N = ["gradient"];
7757
+ var _excluded$3P = ["gradient"];
7658
7758
 
7659
7759
  /**
7660
7760
  * @component KeyIcon
@@ -7684,7 +7784,7 @@
7684
7784
  */
7685
7785
  var KeyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7686
7786
  var gradient = _ref.gradient,
7687
- props = _objectWithoutProperties(_ref, _excluded$3N);
7787
+ props = _objectWithoutProperties(_ref, _excluded$3P);
7688
7788
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7689
7789
  xmlns: "http://www.w3.org/2000/svg",
7690
7790
  width: 24,
@@ -7703,7 +7803,7 @@
7703
7803
  KeyIcon.displayName = "KeyIcon";
7704
7804
  var KeyIcon$1 = KeyIcon;
7705
7805
 
7706
- var _excluded$3M = ["gradient"];
7806
+ var _excluded$3O = ["gradient"];
7707
7807
 
7708
7808
  /**
7709
7809
  * @component LabelsIcon
@@ -7733,7 +7833,7 @@
7733
7833
  */
7734
7834
  var LabelsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7735
7835
  var gradient = _ref.gradient,
7736
- props = _objectWithoutProperties(_ref, _excluded$3M);
7836
+ props = _objectWithoutProperties(_ref, _excluded$3O);
7737
7837
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7738
7838
  xmlns: "http://www.w3.org/2000/svg",
7739
7839
  width: 24,
@@ -7753,7 +7853,7 @@
7753
7853
  LabelsIcon.displayName = "LabelsIcon";
7754
7854
  var LabelsIcon$1 = LabelsIcon;
7755
7855
 
7756
- var _excluded$3L = ["gradient"];
7856
+ var _excluded$3N = ["gradient"];
7757
7857
 
7758
7858
  /**
7759
7859
  * @component LayersIcon
@@ -7783,7 +7883,7 @@
7783
7883
  */
7784
7884
  var LayersIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7785
7885
  var gradient = _ref.gradient,
7786
- props = _objectWithoutProperties(_ref, _excluded$3L);
7886
+ props = _objectWithoutProperties(_ref, _excluded$3N);
7787
7887
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7788
7888
  xmlns: "http://www.w3.org/2000/svg",
7789
7889
  width: 24,
@@ -7807,7 +7907,7 @@
7807
7907
  LayersIcon.displayName = "LayersIcon";
7808
7908
  var LayersIcon$1 = LayersIcon;
7809
7909
 
7810
- var _excluded$3K = ["gradient"];
7910
+ var _excluded$3M = ["gradient"];
7811
7911
 
7812
7912
  /**
7813
7913
  * @component LayerBackIcon
@@ -7837,7 +7937,7 @@
7837
7937
  */
7838
7938
  var LayerBackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7839
7939
  var gradient = _ref.gradient,
7840
- props = _objectWithoutProperties(_ref, _excluded$3K);
7940
+ props = _objectWithoutProperties(_ref, _excluded$3M);
7841
7941
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7842
7942
  xmlns: "http://www.w3.org/2000/svg",
7843
7943
  width: 24,
@@ -7858,7 +7958,7 @@
7858
7958
  LayerBackIcon.displayName = "LayerBackIcon";
7859
7959
  var LayerBackIcon$1 = LayerBackIcon;
7860
7960
 
7861
- var _excluded$3J = ["gradient"];
7961
+ var _excluded$3L = ["gradient"];
7862
7962
 
7863
7963
  /**
7864
7964
  * @component LayerBackwardIcon
@@ -7888,7 +7988,7 @@
7888
7988
  */
7889
7989
  var LayerBackwardIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7890
7990
  var gradient = _ref.gradient,
7891
- props = _objectWithoutProperties(_ref, _excluded$3J);
7991
+ props = _objectWithoutProperties(_ref, _excluded$3L);
7892
7992
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7893
7993
  xmlns: "http://www.w3.org/2000/svg",
7894
7994
  width: 24,
@@ -7926,7 +8026,7 @@
7926
8026
  LayerBackwardIcon.displayName = "LayerBackwardIcon";
7927
8027
  var LayerBackwardIcon$1 = LayerBackwardIcon;
7928
8028
 
7929
- var _excluded$3I = ["gradient"];
8029
+ var _excluded$3K = ["gradient"];
7930
8030
 
7931
8031
  /**
7932
8032
  * @component LayerForwardIcon
@@ -7956,7 +8056,7 @@
7956
8056
  */
7957
8057
  var LayerForwardIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
7958
8058
  var gradient = _ref.gradient,
7959
- props = _objectWithoutProperties(_ref, _excluded$3I);
8059
+ props = _objectWithoutProperties(_ref, _excluded$3K);
7960
8060
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7961
8061
  xmlns: "http://www.w3.org/2000/svg",
7962
8062
  width: 24,
@@ -7994,7 +8094,7 @@
7994
8094
  LayerForwardIcon.displayName = "LayerForwardIcon";
7995
8095
  var LayerForwardIcon$1 = LayerForwardIcon;
7996
8096
 
7997
- var _excluded$3H = ["gradient"];
8097
+ var _excluded$3J = ["gradient"];
7998
8098
 
7999
8099
  /**
8000
8100
  * @component LayerFrontIcon
@@ -8024,7 +8124,7 @@
8024
8124
  */
8025
8125
  var LayerFrontIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8026
8126
  var gradient = _ref.gradient,
8027
- props = _objectWithoutProperties(_ref, _excluded$3H);
8127
+ props = _objectWithoutProperties(_ref, _excluded$3J);
8028
8128
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8029
8129
  xmlns: "http://www.w3.org/2000/svg",
8030
8130
  width: 24,
@@ -8045,7 +8145,7 @@
8045
8145
  LayerFrontIcon.displayName = "LayerFrontIcon";
8046
8146
  var LayerFrontIcon$1 = LayerFrontIcon;
8047
8147
 
8048
- var _excluded$3G = ["gradient"];
8148
+ var _excluded$3I = ["gradient"];
8049
8149
 
8050
8150
  /**
8051
8151
  * @component LetterArrowRightIcon
@@ -8075,7 +8175,7 @@
8075
8175
  */
8076
8176
  var LetterArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8077
8177
  var gradient = _ref.gradient,
8078
- props = _objectWithoutProperties(_ref, _excluded$3G);
8178
+ props = _objectWithoutProperties(_ref, _excluded$3I);
8079
8179
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8080
8180
  xmlns: "http://www.w3.org/2000/svg",
8081
8181
  width: 24,
@@ -8096,7 +8196,7 @@
8096
8196
  LetterArrowRightIcon.displayName = "LetterArrowRightIcon";
8097
8197
  var LetterArrowRightIcon$1 = LetterArrowRightIcon;
8098
8198
 
8099
- var _excluded$3F = ["gradient"];
8199
+ var _excluded$3H = ["gradient"];
8100
8200
 
8101
8201
  /**
8102
8202
  * @component LetterFastIcon
@@ -8126,7 +8226,7 @@
8126
8226
  */
8127
8227
  var LetterFastIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8128
8228
  var gradient = _ref.gradient,
8129
- props = _objectWithoutProperties(_ref, _excluded$3F);
8229
+ props = _objectWithoutProperties(_ref, _excluded$3H);
8130
8230
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8131
8231
  xmlns: "http://www.w3.org/2000/svg",
8132
8232
  width: 24,
@@ -8146,7 +8246,7 @@
8146
8246
  LetterFastIcon.displayName = "LetterFastIcon";
8147
8247
  var LetterFastIcon$1 = LetterFastIcon;
8148
8248
 
8149
- var _excluded$3E = ["gradient"];
8249
+ var _excluded$3G = ["gradient"];
8150
8250
 
8151
8251
  /**
8152
8252
  * @component LetterIcon
@@ -8176,7 +8276,7 @@
8176
8276
  */
8177
8277
  var LetterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8178
8278
  var gradient = _ref.gradient,
8179
- props = _objectWithoutProperties(_ref, _excluded$3E);
8279
+ props = _objectWithoutProperties(_ref, _excluded$3G);
8180
8280
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8181
8281
  xmlns: "http://www.w3.org/2000/svg",
8182
8282
  width: 24,
@@ -8197,7 +8297,7 @@
8197
8297
  LetterIcon.displayName = "LetterIcon";
8198
8298
  var LetterIcon$1 = LetterIcon;
8199
8299
 
8200
- var _excluded$3D = ["gradient"];
8300
+ var _excluded$3F = ["gradient"];
8201
8301
 
8202
8302
  /**
8203
8303
  * @component LockSmallIcon
@@ -8227,7 +8327,7 @@
8227
8327
  */
8228
8328
  var LockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8229
8329
  var gradient = _ref.gradient,
8230
- props = _objectWithoutProperties(_ref, _excluded$3D);
8330
+ props = _objectWithoutProperties(_ref, _excluded$3F);
8231
8331
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8232
8332
  xmlns: "http://www.w3.org/2000/svg",
8233
8333
  width: 12,
@@ -8247,7 +8347,7 @@
8247
8347
  LockSmallIcon.displayName = "LockSmallIcon";
8248
8348
  var LockSmallIcon$1 = LockSmallIcon;
8249
8349
 
8250
- var _excluded$3C = ["gradient"];
8350
+ var _excluded$3E = ["gradient"];
8251
8351
 
8252
8352
  /**
8253
8353
  * @component LockIcon
@@ -8277,7 +8377,7 @@
8277
8377
  */
8278
8378
  var LockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8279
8379
  var gradient = _ref.gradient,
8280
- props = _objectWithoutProperties(_ref, _excluded$3C);
8380
+ props = _objectWithoutProperties(_ref, _excluded$3E);
8281
8381
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8282
8382
  xmlns: "http://www.w3.org/2000/svg",
8283
8383
  width: 24,
@@ -8297,7 +8397,7 @@
8297
8397
  LockIcon.displayName = "LockIcon";
8298
8398
  var LockIcon$1 = LockIcon;
8299
8399
 
8300
- var _excluded$3B = ["gradient"];
8400
+ var _excluded$3D = ["gradient"];
8301
8401
 
8302
8402
  /**
8303
8403
  * @component MarkerIcon
@@ -8327,7 +8427,7 @@
8327
8427
  */
8328
8428
  var MarkerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8329
8429
  var gradient = _ref.gradient,
8330
- props = _objectWithoutProperties(_ref, _excluded$3B);
8430
+ props = _objectWithoutProperties(_ref, _excluded$3D);
8331
8431
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8332
8432
  xmlns: "http://www.w3.org/2000/svg",
8333
8433
  width: 24,
@@ -8347,7 +8447,7 @@
8347
8447
  MarkerIcon.displayName = "MarkerIcon";
8348
8448
  var MarkerIcon$1 = MarkerIcon;
8349
8449
 
8350
- var _excluded$3A = ["gradient"];
8450
+ var _excluded$3C = ["gradient"];
8351
8451
 
8352
8452
  /**
8353
8453
  * @component MessageAddIcon
@@ -8377,7 +8477,7 @@
8377
8477
  */
8378
8478
  var MessageAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8379
8479
  var gradient = _ref.gradient,
8380
- props = _objectWithoutProperties(_ref, _excluded$3A);
8480
+ props = _objectWithoutProperties(_ref, _excluded$3C);
8381
8481
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8382
8482
  xmlns: "http://www.w3.org/2000/svg",
8383
8483
  width: 24,
@@ -8396,7 +8496,7 @@
8396
8496
  MessageAddIcon.displayName = "MessageAddIcon";
8397
8497
  var MessageAddIcon$1 = MessageAddIcon;
8398
8498
 
8399
- var _excluded$3z = ["gradient"];
8499
+ var _excluded$3B = ["gradient"];
8400
8500
 
8401
8501
  /**
8402
8502
  * @component MessageEmptyIcon
@@ -8426,7 +8526,7 @@
8426
8526
  */
8427
8527
  var MessageEmptyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8428
8528
  var gradient = _ref.gradient,
8429
- props = _objectWithoutProperties(_ref, _excluded$3z);
8529
+ props = _objectWithoutProperties(_ref, _excluded$3B);
8430
8530
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8431
8531
  xmlns: "http://www.w3.org/2000/svg",
8432
8532
  width: 24,
@@ -8446,7 +8546,7 @@
8446
8546
  MessageEmptyIcon.displayName = "MessageEmptyIcon";
8447
8547
  var MessageEmptyIcon$1 = MessageEmptyIcon;
8448
8548
 
8449
- var _excluded$3y = ["gradient"];
8549
+ var _excluded$3A = ["gradient"];
8450
8550
 
8451
8551
  /**
8452
8552
  * @component MessageSmallIcon
@@ -8476,7 +8576,7 @@
8476
8576
  */
8477
8577
  var MessageSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8478
8578
  var gradient = _ref.gradient,
8479
- props = _objectWithoutProperties(_ref, _excluded$3y);
8579
+ props = _objectWithoutProperties(_ref, _excluded$3A);
8480
8580
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8481
8581
  xmlns: "http://www.w3.org/2000/svg",
8482
8582
  width: 12,
@@ -8496,7 +8596,7 @@
8496
8596
  MessageSmallIcon.displayName = "MessageSmallIcon";
8497
8597
  var MessageSmallIcon$1 = MessageSmallIcon;
8498
8598
 
8499
- var _excluded$3x = ["gradient"];
8599
+ var _excluded$3z = ["gradient"];
8500
8600
 
8501
8601
  /**
8502
8602
  * @component MessageSolidIcon
@@ -8526,7 +8626,7 @@
8526
8626
  */
8527
8627
  var MessageSolidIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8528
8628
  var gradient = _ref.gradient,
8529
- props = _objectWithoutProperties(_ref, _excluded$3x);
8629
+ props = _objectWithoutProperties(_ref, _excluded$3z);
8530
8630
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8531
8631
  xmlns: "http://www.w3.org/2000/svg",
8532
8632
  width: 24,
@@ -8546,7 +8646,7 @@
8546
8646
  MessageSolidIcon.displayName = "MessageSolidIcon";
8547
8647
  var MessageSolidIcon$1 = MessageSolidIcon;
8548
8648
 
8549
- var _excluded$3w = ["gradient"];
8649
+ var _excluded$3y = ["gradient"];
8550
8650
 
8551
8651
  /**
8552
8652
  * @component MessageStarIcon
@@ -8576,7 +8676,7 @@
8576
8676
  */
8577
8677
  var MessageStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8578
8678
  var gradient = _ref.gradient,
8579
- props = _objectWithoutProperties(_ref, _excluded$3w);
8679
+ props = _objectWithoutProperties(_ref, _excluded$3y);
8580
8680
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8581
8681
  xmlns: "http://www.w3.org/2000/svg",
8582
8682
  width: 24,
@@ -8599,7 +8699,7 @@
8599
8699
  MessageStarIcon.displayName = "MessageStarIcon";
8600
8700
  var MessageStarIcon$1 = MessageStarIcon;
8601
8701
 
8602
- var _excluded$3v = ["gradient"];
8702
+ var _excluded$3x = ["gradient"];
8603
8703
 
8604
8704
  /**
8605
8705
  * @component MessageIcon
@@ -8629,7 +8729,7 @@
8629
8729
  */
8630
8730
  var MessageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8631
8731
  var gradient = _ref.gradient,
8632
- props = _objectWithoutProperties(_ref, _excluded$3v);
8732
+ props = _objectWithoutProperties(_ref, _excluded$3x);
8633
8733
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8634
8734
  xmlns: "http://www.w3.org/2000/svg",
8635
8735
  width: 24,
@@ -8649,7 +8749,7 @@
8649
8749
  MessageIcon.displayName = "MessageIcon";
8650
8750
  var MessageIcon$1 = MessageIcon;
8651
8751
 
8652
- var _excluded$3u = ["gradient"];
8752
+ var _excluded$3w = ["gradient"];
8653
8753
 
8654
8754
  /**
8655
8755
  * @component MinusIcon
@@ -8679,7 +8779,7 @@
8679
8779
  */
8680
8780
  var MinusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8681
8781
  var gradient = _ref.gradient,
8682
- props = _objectWithoutProperties(_ref, _excluded$3u);
8782
+ props = _objectWithoutProperties(_ref, _excluded$3w);
8683
8783
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8684
8784
  xmlns: "http://www.w3.org/2000/svg",
8685
8785
  width: 24,
@@ -8703,7 +8803,7 @@
8703
8803
  MinusIcon.displayName = "MinusIcon";
8704
8804
  var MinusIcon$1 = MinusIcon;
8705
8805
 
8706
- var _excluded$3t = ["gradient"];
8806
+ var _excluded$3v = ["gradient"];
8707
8807
 
8708
8808
  /**
8709
8809
  * @component MobileMenuIcon
@@ -8733,7 +8833,7 @@
8733
8833
  */
8734
8834
  var MobileMenuIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8735
8835
  var gradient = _ref.gradient,
8736
- props = _objectWithoutProperties(_ref, _excluded$3t);
8836
+ props = _objectWithoutProperties(_ref, _excluded$3v);
8737
8837
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8738
8838
  xmlns: "http://www.w3.org/2000/svg",
8739
8839
  width: 24,
@@ -8754,7 +8854,7 @@
8754
8854
  MobileMenuIcon.displayName = "MobileMenuIcon";
8755
8855
  var MobileMenuIcon$1 = MobileMenuIcon;
8756
8856
 
8757
- var _excluded$3s = ["gradient"];
8857
+ var _excluded$3u = ["gradient"];
8758
8858
 
8759
8859
  /**
8760
8860
  * @component MoneyStackIcon
@@ -8784,7 +8884,7 @@
8784
8884
  */
8785
8885
  var MoneyStackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8786
8886
  var gradient = _ref.gradient,
8787
- props = _objectWithoutProperties(_ref, _excluded$3s);
8887
+ props = _objectWithoutProperties(_ref, _excluded$3u);
8788
8888
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8789
8889
  xmlns: "http://www.w3.org/2000/svg",
8790
8890
  width: 24,
@@ -8811,7 +8911,7 @@
8811
8911
  MoneyStackIcon.displayName = "MoneyStackIcon";
8812
8912
  var MoneyStackIcon$1 = MoneyStackIcon;
8813
8913
 
8814
- var _excluded$3r = ["gradient"];
8914
+ var _excluded$3t = ["gradient"];
8815
8915
 
8816
8916
  /**
8817
8917
  * @component MoonIcon
@@ -8841,7 +8941,7 @@
8841
8941
  */
8842
8942
  var MoonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8843
8943
  var gradient = _ref.gradient,
8844
- props = _objectWithoutProperties(_ref, _excluded$3r);
8944
+ props = _objectWithoutProperties(_ref, _excluded$3t);
8845
8945
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8846
8946
  xmlns: "http://www.w3.org/2000/svg",
8847
8947
  width: 20,
@@ -8862,7 +8962,7 @@
8862
8962
  MoonIcon.displayName = "MoonIcon";
8863
8963
  var MoonIcon$1 = MoonIcon;
8864
8964
 
8865
- var _excluded$3q = ["gradient"];
8965
+ var _excluded$3s = ["gradient"];
8866
8966
 
8867
8967
  /**
8868
8968
  * @component MoveTriggerIcon
@@ -8892,7 +8992,7 @@
8892
8992
  */
8893
8993
  var MoveTriggerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8894
8994
  var gradient = _ref.gradient,
8895
- props = _objectWithoutProperties(_ref, _excluded$3q);
8995
+ props = _objectWithoutProperties(_ref, _excluded$3s);
8896
8996
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8897
8997
  xmlns: "http://www.w3.org/2000/svg",
8898
8998
  width: 10,
@@ -8912,7 +9012,7 @@
8912
9012
  MoveTriggerIcon.displayName = "MoveTriggerIcon";
8913
9013
  var MoveTriggerIcon$1 = MoveTriggerIcon;
8914
9014
 
8915
- var _excluded$3p = ["gradient"];
9015
+ var _excluded$3r = ["gradient"];
8916
9016
 
8917
9017
  /**
8918
9018
  * @component MoveIcon
@@ -8942,7 +9042,7 @@
8942
9042
  */
8943
9043
  var MoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8944
9044
  var gradient = _ref.gradient,
8945
- props = _objectWithoutProperties(_ref, _excluded$3p);
9045
+ props = _objectWithoutProperties(_ref, _excluded$3r);
8946
9046
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8947
9047
  xmlns: "http://www.w3.org/2000/svg",
8948
9048
  width: 24,
@@ -8963,7 +9063,7 @@
8963
9063
  MoveIcon.displayName = "MoveIcon";
8964
9064
  var MoveIcon$1 = MoveIcon;
8965
9065
 
8966
- var _excluded$3o = ["gradient"];
9066
+ var _excluded$3q = ["gradient"];
8967
9067
 
8968
9068
  /**
8969
9069
  * @component MyWorkIcon
@@ -8993,7 +9093,7 @@
8993
9093
  */
8994
9094
  var MyWorkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
8995
9095
  var gradient = _ref.gradient,
8996
- props = _objectWithoutProperties(_ref, _excluded$3o);
9096
+ props = _objectWithoutProperties(_ref, _excluded$3q);
8997
9097
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
8998
9098
  xmlns: "http://www.w3.org/2000/svg",
8999
9099
  width: 24,
@@ -9017,7 +9117,7 @@
9017
9117
  MyWorkIcon.displayName = "MyWorkIcon";
9018
9118
  var MyWorkIcon$1 = MyWorkIcon;
9019
9119
 
9020
- var _excluded$3n = ["gradient"];
9120
+ var _excluded$3p = ["gradient"];
9021
9121
 
9022
9122
  /**
9023
9123
  * @component NoteAddIcon
@@ -9047,7 +9147,7 @@
9047
9147
  */
9048
9148
  var NoteAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9049
9149
  var gradient = _ref.gradient,
9050
- props = _objectWithoutProperties(_ref, _excluded$3n);
9150
+ props = _objectWithoutProperties(_ref, _excluded$3p);
9051
9151
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9052
9152
  xmlns: "http://www.w3.org/2000/svg",
9053
9153
  width: 24,
@@ -9067,7 +9167,7 @@
9067
9167
  NoteAddIcon.displayName = "NoteAddIcon";
9068
9168
  var NoteAddIcon$1 = NoteAddIcon;
9069
9169
 
9070
- var _excluded$3m = ["gradient"];
9170
+ var _excluded$3o = ["gradient"];
9071
9171
 
9072
9172
  /**
9073
9173
  * @component NoteIcon
@@ -9097,7 +9197,7 @@
9097
9197
  */
9098
9198
  var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9099
9199
  var gradient = _ref.gradient,
9100
- props = _objectWithoutProperties(_ref, _excluded$3m);
9200
+ props = _objectWithoutProperties(_ref, _excluded$3o);
9101
9201
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9102
9202
  xmlns: "http://www.w3.org/2000/svg",
9103
9203
  width: 24,
@@ -9117,7 +9217,7 @@
9117
9217
  NoteIcon.displayName = "NoteIcon";
9118
9218
  var NoteIcon$1 = NoteIcon;
9119
9219
 
9120
- var _excluded$3l = ["gradient"];
9220
+ var _excluded$3n = ["gradient"];
9121
9221
 
9122
9222
  /**
9123
9223
  * @component NotebookIcon
@@ -9147,7 +9247,7 @@
9147
9247
  */
9148
9248
  var NotebookIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9149
9249
  var gradient = _ref.gradient,
9150
- props = _objectWithoutProperties(_ref, _excluded$3l);
9250
+ props = _objectWithoutProperties(_ref, _excluded$3n);
9151
9251
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9152
9252
  xmlns: "http://www.w3.org/2000/svg",
9153
9253
  width: 24,
@@ -9167,7 +9267,7 @@
9167
9267
  NotebookIcon.displayName = "NotebookIcon";
9168
9268
  var NotebookIcon$1 = NotebookIcon;
9169
9269
 
9170
- var _excluded$3k = ["gradient"];
9270
+ var _excluded$3m = ["gradient"];
9171
9271
 
9172
9272
  /**
9173
9273
  * @component NotificationBellIcon
@@ -9197,7 +9297,7 @@
9197
9297
  */
9198
9298
  var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9199
9299
  var gradient = _ref.gradient,
9200
- props = _objectWithoutProperties(_ref, _excluded$3k);
9300
+ props = _objectWithoutProperties(_ref, _excluded$3m);
9201
9301
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9202
9302
  xmlns: "http://www.w3.org/2000/svg",
9203
9303
  width: 24,
@@ -9216,7 +9316,7 @@
9216
9316
  NotificationBellIcon.displayName = "NotificationBellIcon";
9217
9317
  var NotificationBellIcon$1 = NotificationBellIcon;
9218
9318
 
9219
- var _excluded$3j = ["gradient"];
9319
+ var _excluded$3l = ["gradient"];
9220
9320
 
9221
9321
  /**
9222
9322
  * @component OpenExpandedIcon
@@ -9246,7 +9346,7 @@
9246
9346
  */
9247
9347
  var OpenExpandedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9248
9348
  var gradient = _ref.gradient,
9249
- props = _objectWithoutProperties(_ref, _excluded$3j);
9349
+ props = _objectWithoutProperties(_ref, _excluded$3l);
9250
9350
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9251
9351
  xmlns: "http://www.w3.org/2000/svg",
9252
9352
  width: 24,
@@ -9266,7 +9366,7 @@
9266
9366
  OpenExpandedIcon.displayName = "OpenExpandedIcon";
9267
9367
  var OpenExpandedIcon$1 = OpenExpandedIcon;
9268
9368
 
9269
- var _excluded$3i = ["gradient"];
9369
+ var _excluded$3k = ["gradient"];
9270
9370
 
9271
9371
  /**
9272
9372
  * @component OpenSheetIcon
@@ -9296,7 +9396,7 @@
9296
9396
  */
9297
9397
  var OpenSheetIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9298
9398
  var gradient = _ref.gradient,
9299
- props = _objectWithoutProperties(_ref, _excluded$3i);
9399
+ props = _objectWithoutProperties(_ref, _excluded$3k);
9300
9400
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9301
9401
  xmlns: "http://www.w3.org/2000/svg",
9302
9402
  width: 24,
@@ -9321,7 +9421,7 @@
9321
9421
  OpenSheetIcon.displayName = "OpenSheetIcon";
9322
9422
  var OpenSheetIcon$1 = OpenSheetIcon;
9323
9423
 
9324
- var _excluded$3h = ["gradient"];
9424
+ var _excluded$3j = ["gradient"];
9325
9425
 
9326
9426
  /**
9327
9427
  * @component OrderFirstIcon
@@ -9351,7 +9451,7 @@
9351
9451
  */
9352
9452
  var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9353
9453
  var gradient = _ref.gradient,
9354
- props = _objectWithoutProperties(_ref, _excluded$3h);
9454
+ props = _objectWithoutProperties(_ref, _excluded$3j);
9355
9455
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9356
9456
  xmlns: "http://www.w3.org/2000/svg",
9357
9457
  width: 24,
@@ -9371,7 +9471,7 @@
9371
9471
  OrderFirstIcon.displayName = "OrderFirstIcon";
9372
9472
  var OrderFirstIcon$1 = OrderFirstIcon;
9373
9473
 
9374
- var _excluded$3g = ["gradient"];
9474
+ var _excluded$3i = ["gradient"];
9375
9475
 
9376
9476
  /**
9377
9477
  * @component PaidSmallIcon
@@ -9401,7 +9501,7 @@
9401
9501
  */
9402
9502
  var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9403
9503
  var gradient = _ref.gradient,
9404
- props = _objectWithoutProperties(_ref, _excluded$3g);
9504
+ props = _objectWithoutProperties(_ref, _excluded$3i);
9405
9505
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9406
9506
  xmlns: "http://www.w3.org/2000/svg",
9407
9507
  width: 12,
@@ -9421,7 +9521,57 @@
9421
9521
  PaidSmallIcon.displayName = "PaidSmallIcon";
9422
9522
  var PaidSmallIcon$1 = PaidSmallIcon;
9423
9523
 
9424
- var _excluded$3f = ["gradient"];
9524
+ var _excluded$3h = ["gradient"];
9525
+
9526
+ /**
9527
+ * @component PasteIcon
9528
+ * @description
9529
+ *
9530
+ * The PasteIcon component displays a clipboard to represent a paste action (for example paste from clipboard).
9531
+ * The Icon component is
9532
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
9533
+ *
9534
+ * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
9535
+ * Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
9536
+ *
9537
+ * @example
9538
+ * return (
9539
+ * <PasteIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
9540
+ * )
9541
+ *
9542
+ * @example
9543
+ * return (
9544
+ * <PasteIcon className="mr-2" />
9545
+ * )
9546
+ *
9547
+ * @see
9548
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
9549
+ * @see
9550
+ * https://design.activecollab.com/docs/foundations/icons
9551
+ */
9552
+ var PasteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9553
+ var gradient = _ref.gradient,
9554
+ props = _objectWithoutProperties(_ref, _excluded$3h);
9555
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9556
+ xmlns: "http://www.w3.org/2000/svg",
9557
+ width: 24,
9558
+ height: 24,
9559
+ viewBox: "0 0 24 24",
9560
+ "data-testid": "PasteIcon",
9561
+ fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
9562
+ focusable: false,
9563
+ ref: ref
9564
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
9565
+ gradient: gradient
9566
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
9567
+ fillRule: "evenodd",
9568
+ d: "M10.35 1.91L9.79 2.08L9.34 2.45L9.06 2.96L9.00 3.50L6.91 3.56L6.35 3.73L5.83 4.01L5.38 4.38L5.01 4.83L4.63 5.63L4.50 6.50L4.50 18.00L4.56 18.59L4.73 19.15L5.18 19.90L5.83 20.49L6.63 20.87L7.21 20.99L16.50 21.00L17.09 20.94L17.65 20.77L18.17 20.49L18.82 19.90L19.27 19.15L19.49 18.29L19.50 6.50L19.44 5.91L19.27 5.35L18.99 4.83L18.62 4.38L18.17 4.01L17.65 3.73L16.79 3.51L15.00 3.50L14.94 2.96L14.75 2.57L14.45 2.24L14.07 2.01L13.50 1.90L10.35 1.91ZM16.41 5.66L16.78 5.84L17.08 6.11L17.29 6.46L17.39 6.86L17.40 17.50L17.34 17.91L17.16 18.28L16.66 18.73L16.00 18.90L8.00 18.90L7.59 18.84L7.22 18.66L6.77 18.16L6.60 17.50L6.60 7.00L6.66 6.59L6.84 6.22L7.22 5.84L7.86 5.61L16.00 5.60L16.41 5.66ZM11.20 3.70L10.88 3.59L10.71 3.30L10.76 2.96L11.05 2.72L12.90 2.71L13.12 2.81L13.28 3.05L13.24 3.44L12.95 3.68L11.20 3.70Z"
9569
+ }));
9570
+ });
9571
+ PasteIcon.displayName = "PasteIcon";
9572
+ var PasteIcon$1 = PasteIcon;
9573
+
9574
+ var _excluded$3g = ["gradient"];
9425
9575
 
9426
9576
  /**
9427
9577
  * @component PauseCircleOutlineIcon
@@ -9451,7 +9601,7 @@
9451
9601
  */
9452
9602
  var PauseCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9453
9603
  var gradient = _ref.gradient,
9454
- props = _objectWithoutProperties(_ref, _excluded$3f);
9604
+ props = _objectWithoutProperties(_ref, _excluded$3g);
9455
9605
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9456
9606
  xmlns: "http://www.w3.org/2000/svg",
9457
9607
  width: 24,
@@ -9471,7 +9621,7 @@
9471
9621
  PauseCircleOutlineIcon.displayName = "PauseCircleOutlineIcon";
9472
9622
  var PauseCircleOutlineIcon$1 = PauseCircleOutlineIcon;
9473
9623
 
9474
- var _excluded$3e = ["gradient"];
9624
+ var _excluded$3f = ["gradient"];
9475
9625
 
9476
9626
  /**
9477
9627
  * @component PauseIcon
@@ -9501,7 +9651,7 @@
9501
9651
  */
9502
9652
  var PauseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9503
9653
  var gradient = _ref.gradient,
9504
- props = _objectWithoutProperties(_ref, _excluded$3e);
9654
+ props = _objectWithoutProperties(_ref, _excluded$3f);
9505
9655
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9506
9656
  xmlns: "http://www.w3.org/2000/svg",
9507
9657
  width: 24,
@@ -9521,7 +9671,7 @@
9521
9671
  PauseIcon.displayName = "PauseIcon";
9522
9672
  var PauseIcon$1 = PauseIcon;
9523
9673
 
9524
- var _excluded$3d = ["gradient"];
9674
+ var _excluded$3e = ["gradient"];
9525
9675
 
9526
9676
  /**
9527
9677
  * @component PauseSmallIcon
@@ -9551,7 +9701,7 @@
9551
9701
  */
9552
9702
  var PauseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9553
9703
  var gradient = _ref.gradient,
9554
- props = _objectWithoutProperties(_ref, _excluded$3d);
9704
+ props = _objectWithoutProperties(_ref, _excluded$3e);
9555
9705
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9556
9706
  xmlns: "http://www.w3.org/2000/svg",
9557
9707
  width: 24,
@@ -9571,7 +9721,7 @@
9571
9721
  PauseSmallIcon.displayName = "PauseSmallIcon";
9572
9722
  var PauseSmallIcon$1 = PauseSmallIcon;
9573
9723
 
9574
- var _excluded$3c = ["gradient"];
9724
+ var _excluded$3d = ["gradient"];
9575
9725
 
9576
9726
  /**
9577
9727
  * @component PencilSmallIcon
@@ -9601,7 +9751,7 @@
9601
9751
  */
9602
9752
  var PencilSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9603
9753
  var gradient = _ref.gradient,
9604
- props = _objectWithoutProperties(_ref, _excluded$3c);
9754
+ props = _objectWithoutProperties(_ref, _excluded$3d);
9605
9755
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9606
9756
  xmlns: "http://www.w3.org/2000/svg",
9607
9757
  width: 12,
@@ -9620,7 +9770,7 @@
9620
9770
  PencilSmallIcon.displayName = "PencilSmallIcon";
9621
9771
  var PencilSmallIcon$1 = PencilSmallIcon;
9622
9772
 
9623
- var _excluded$3b = ["gradient"];
9773
+ var _excluded$3c = ["gradient"];
9624
9774
 
9625
9775
  /**
9626
9776
  * @component PencilIcon
@@ -9650,7 +9800,7 @@
9650
9800
  */
9651
9801
  var PencilIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9652
9802
  var gradient = _ref.gradient,
9653
- props = _objectWithoutProperties(_ref, _excluded$3b);
9803
+ props = _objectWithoutProperties(_ref, _excluded$3c);
9654
9804
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9655
9805
  xmlns: "http://www.w3.org/2000/svg",
9656
9806
  width: 24,
@@ -9669,7 +9819,7 @@
9669
9819
  PencilIcon.displayName = "PencilIcon";
9670
9820
  var PencilIcon$1 = PencilIcon;
9671
9821
 
9672
- var _excluded$3a = ["gradient"];
9822
+ var _excluded$3b = ["gradient"];
9673
9823
 
9674
9824
  /**
9675
9825
  * @component PendingPaymentSmallIcon
@@ -9699,7 +9849,7 @@
9699
9849
  */
9700
9850
  var PendingPaymentSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9701
9851
  var gradient = _ref.gradient,
9702
- props = _objectWithoutProperties(_ref, _excluded$3a);
9852
+ props = _objectWithoutProperties(_ref, _excluded$3b);
9703
9853
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9704
9854
  xmlns: "http://www.w3.org/2000/svg",
9705
9855
  width: 12,
@@ -9719,7 +9869,7 @@
9719
9869
  PendingPaymentSmallIcon.displayName = "PendingPaymentSmallIcon";
9720
9870
  var PendingPaymentSmallIcon$1 = PendingPaymentSmallIcon;
9721
9871
 
9722
- var _excluded$39 = ["gradient"];
9872
+ var _excluded$3a = ["gradient"];
9723
9873
 
9724
9874
  /**
9725
9875
  * @component PeopleIcon
@@ -9749,7 +9899,7 @@
9749
9899
  */
9750
9900
  var PeopleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9751
9901
  var gradient = _ref.gradient,
9752
- props = _objectWithoutProperties(_ref, _excluded$39);
9902
+ props = _objectWithoutProperties(_ref, _excluded$3a);
9753
9903
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9754
9904
  xmlns: "http://www.w3.org/2000/svg",
9755
9905
  width: 24,
@@ -9773,7 +9923,7 @@
9773
9923
  PeopleIcon.displayName = "PeopleIcon";
9774
9924
  var PeopleIcon$1 = PeopleIcon;
9775
9925
 
9776
- var _excluded$38 = ["gradient"];
9926
+ var _excluded$39 = ["gradient"];
9777
9927
 
9778
9928
  /**
9779
9929
  * @component PersonArrowOutCircleIcon
@@ -9803,7 +9953,7 @@
9803
9953
  */
9804
9954
  var PersonArrowOutCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9805
9955
  var gradient = _ref.gradient,
9806
- props = _objectWithoutProperties(_ref, _excluded$38);
9956
+ props = _objectWithoutProperties(_ref, _excluded$39);
9807
9957
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9808
9958
  xmlns: "http://www.w3.org/2000/svg",
9809
9959
  width: 24,
@@ -9824,7 +9974,7 @@
9824
9974
  PersonArrowOutCircleIcon.displayName = "PersonArrowOutCircleIcon";
9825
9975
  var PersonArrowOutCircleIcon$1 = PersonArrowOutCircleIcon;
9826
9976
 
9827
- var _excluded$37 = ["gradient"];
9977
+ var _excluded$38 = ["gradient"];
9828
9978
 
9829
9979
  /**
9830
9980
  * @component PersonCircleOffIcon
@@ -9854,7 +10004,7 @@
9854
10004
  */
9855
10005
  var PersonCircleOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9856
10006
  var gradient = _ref.gradient,
9857
- props = _objectWithoutProperties(_ref, _excluded$37);
10007
+ props = _objectWithoutProperties(_ref, _excluded$38);
9858
10008
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9859
10009
  xmlns: "http://www.w3.org/2000/svg",
9860
10010
  width: 24,
@@ -9874,7 +10024,7 @@
9874
10024
  PersonCircleOffIcon.displayName = "PersonCircleOffIcon";
9875
10025
  var PersonCircleOffIcon$1 = PersonCircleOffIcon;
9876
10026
 
9877
- var _excluded$36 = ["gradient"];
10027
+ var _excluded$37 = ["gradient"];
9878
10028
 
9879
10029
  /**
9880
10030
  * @component PersonCircleIcon
@@ -9904,7 +10054,7 @@
9904
10054
  */
9905
10055
  var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9906
10056
  var gradient = _ref.gradient,
9907
- props = _objectWithoutProperties(_ref, _excluded$36);
10057
+ props = _objectWithoutProperties(_ref, _excluded$37);
9908
10058
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9909
10059
  xmlns: "http://www.w3.org/2000/svg",
9910
10060
  width: 24,
@@ -9924,7 +10074,7 @@
9924
10074
  PersonCircleIcon.displayName = "PersonCircleIcon";
9925
10075
  var PersonCircleIcon$1 = PersonCircleIcon;
9926
10076
 
9927
- var _excluded$35 = ["gradient"];
10077
+ var _excluded$36 = ["gradient"];
9928
10078
 
9929
10079
  /**
9930
10080
  * @component PersonListIcon
@@ -9954,7 +10104,7 @@
9954
10104
  */
9955
10105
  var PersonListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
9956
10106
  var gradient = _ref.gradient,
9957
- props = _objectWithoutProperties(_ref, _excluded$35);
10107
+ props = _objectWithoutProperties(_ref, _excluded$36);
9958
10108
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
9959
10109
  xmlns: "http://www.w3.org/2000/svg",
9960
10110
  width: 24,
@@ -9975,7 +10125,7 @@
9975
10125
  PersonListIcon.displayName = "PersonListIcon";
9976
10126
  var PersonListIcon$1 = PersonListIcon;
9977
10127
 
9978
- var _excluded$34 = ["gradient"];
10128
+ var _excluded$35 = ["gradient"];
9979
10129
 
9980
10130
  /**
9981
10131
  * @component PersonPlusIcon
@@ -10005,7 +10155,7 @@
10005
10155
  */
10006
10156
  var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10007
10157
  var gradient = _ref.gradient,
10008
- props = _objectWithoutProperties(_ref, _excluded$34);
10158
+ props = _objectWithoutProperties(_ref, _excluded$35);
10009
10159
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10010
10160
  xmlns: "http://www.w3.org/2000/svg",
10011
10161
  width: 24,
@@ -10025,7 +10175,7 @@
10025
10175
  PersonPlusIcon.displayName = "PersonPlusIcon";
10026
10176
  var PersonPlusIcon$1 = PersonPlusIcon;
10027
10177
 
10028
- var _excluded$33 = ["gradient"];
10178
+ var _excluded$34 = ["gradient"];
10029
10179
 
10030
10180
  /**
10031
10181
  * @component PersonIcon
@@ -10055,7 +10205,7 @@
10055
10205
  */
10056
10206
  var PersonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10057
10207
  var gradient = _ref.gradient,
10058
- props = _objectWithoutProperties(_ref, _excluded$33);
10208
+ props = _objectWithoutProperties(_ref, _excluded$34);
10059
10209
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10060
10210
  xmlns: "http://www.w3.org/2000/svg",
10061
10211
  width: 24,
@@ -10075,7 +10225,7 @@
10075
10225
  PersonIcon.displayName = "PersonIcon";
10076
10226
  var PersonIcon$1 = PersonIcon;
10077
10227
 
10078
- var _excluded$32 = ["gradient"];
10228
+ var _excluded$33 = ["gradient"];
10079
10229
 
10080
10230
  /**
10081
10231
  * @component PinSmallIcon
@@ -10105,7 +10255,7 @@
10105
10255
  */
10106
10256
  var PinSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10107
10257
  var gradient = _ref.gradient,
10108
- props = _objectWithoutProperties(_ref, _excluded$32);
10258
+ props = _objectWithoutProperties(_ref, _excluded$33);
10109
10259
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10110
10260
  xmlns: "http://www.w3.org/2000/svg",
10111
10261
  width: 12,
@@ -10126,7 +10276,7 @@
10126
10276
  PinSmallIcon.displayName = "PinSmallIcon";
10127
10277
  var PinSmallIcon$1 = PinSmallIcon;
10128
10278
 
10129
- var _excluded$31 = ["gradient"];
10279
+ var _excluded$32 = ["gradient"];
10130
10280
 
10131
10281
  /**
10132
10282
  * @component PinIcon
@@ -10156,7 +10306,7 @@
10156
10306
  */
10157
10307
  var PinIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10158
10308
  var gradient = _ref.gradient,
10159
- props = _objectWithoutProperties(_ref, _excluded$31);
10309
+ props = _objectWithoutProperties(_ref, _excluded$32);
10160
10310
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10161
10311
  xmlns: "http://www.w3.org/2000/svg",
10162
10312
  width: 24,
@@ -10176,7 +10326,7 @@
10176
10326
  PinIcon.displayName = "PinIcon";
10177
10327
  var PinIcon$1 = PinIcon;
10178
10328
 
10179
- var _excluded$30 = ["gradient"];
10329
+ var _excluded$31 = ["gradient"];
10180
10330
 
10181
10331
  /**
10182
10332
  * @component PlayCircleOutlineIcon
@@ -10206,7 +10356,7 @@
10206
10356
  */
10207
10357
  var PlayCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10208
10358
  var gradient = _ref.gradient,
10209
- props = _objectWithoutProperties(_ref, _excluded$30);
10359
+ props = _objectWithoutProperties(_ref, _excluded$31);
10210
10360
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10211
10361
  xmlns: "http://www.w3.org/2000/svg",
10212
10362
  width: 24,
@@ -10226,7 +10376,7 @@
10226
10376
  PlayCircleOutlineIcon.displayName = "PlayCircleOutlineIcon";
10227
10377
  var PlayCircleOutlineIcon$1 = PlayCircleOutlineIcon;
10228
10378
 
10229
- var _excluded$2$ = ["gradient"];
10379
+ var _excluded$30 = ["gradient"];
10230
10380
 
10231
10381
  /**
10232
10382
  * @component PlayIcon
@@ -10256,7 +10406,7 @@
10256
10406
  */
10257
10407
  var PlayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10258
10408
  var gradient = _ref.gradient,
10259
- props = _objectWithoutProperties(_ref, _excluded$2$);
10409
+ props = _objectWithoutProperties(_ref, _excluded$30);
10260
10410
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10261
10411
  xmlns: "http://www.w3.org/2000/svg",
10262
10412
  width: 24,
@@ -10276,7 +10426,7 @@
10276
10426
  PlayIcon.displayName = "PlayIcon";
10277
10427
  var PlayIcon$1 = PlayIcon;
10278
10428
 
10279
- var _excluded$2_ = ["gradient"];
10429
+ var _excluded$2$ = ["gradient"];
10280
10430
 
10281
10431
  /**
10282
10432
  * @component PlaySmallIcon
@@ -10306,7 +10456,7 @@
10306
10456
  */
10307
10457
  var PlaySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10308
10458
  var gradient = _ref.gradient,
10309
- props = _objectWithoutProperties(_ref, _excluded$2_);
10459
+ props = _objectWithoutProperties(_ref, _excluded$2$);
10310
10460
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10311
10461
  xmlns: "http://www.w3.org/2000/svg",
10312
10462
  width: 24,
@@ -10326,7 +10476,7 @@
10326
10476
  PlaySmallIcon.displayName = "PlaySmallIcon";
10327
10477
  var PlaySmallIcon$1 = PlaySmallIcon;
10328
10478
 
10329
- var _excluded$2Z = ["gradient"];
10479
+ var _excluded$2_ = ["gradient"];
10330
10480
 
10331
10481
  /**
10332
10482
  * @component PortfolioIcon
@@ -10356,7 +10506,7 @@
10356
10506
  */
10357
10507
  var PortfolioIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10358
10508
  var gradient = _ref.gradient,
10359
- props = _objectWithoutProperties(_ref, _excluded$2Z);
10509
+ props = _objectWithoutProperties(_ref, _excluded$2_);
10360
10510
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10361
10511
  xmlns: "http://www.w3.org/2000/svg",
10362
10512
  width: 24,
@@ -10376,7 +10526,7 @@
10376
10526
  PortfolioIcon.displayName = "PortfolioIcon";
10377
10527
  var PortfolioIcon$1 = PortfolioIcon;
10378
10528
 
10379
- var _excluded$2Y = ["gradient"];
10529
+ var _excluded$2Z = ["gradient"];
10380
10530
 
10381
10531
  /**
10382
10532
  * @component PortfolioPlusIcon
@@ -10406,7 +10556,7 @@
10406
10556
  */
10407
10557
  var PortfolioPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10408
10558
  var gradient = _ref.gradient,
10409
- props = _objectWithoutProperties(_ref, _excluded$2Y);
10559
+ props = _objectWithoutProperties(_ref, _excluded$2Z);
10410
10560
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10411
10561
  xmlns: "http://www.w3.org/2000/svg",
10412
10562
  width: 24,
@@ -10427,7 +10577,7 @@
10427
10577
  PortfolioPlusIcon.displayName = "PortfolioPlusIcon";
10428
10578
  var PortfolioPlusIcon$1 = PortfolioPlusIcon;
10429
10579
 
10430
- var _excluded$2X = ["gradient"];
10580
+ var _excluded$2Y = ["gradient"];
10431
10581
 
10432
10582
  /**
10433
10583
  * @component PriorityLowIcon
@@ -10457,7 +10607,7 @@
10457
10607
  */
10458
10608
  var PriorityLowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10459
10609
  var gradient = _ref.gradient,
10460
- props = _objectWithoutProperties(_ref, _excluded$2X);
10610
+ props = _objectWithoutProperties(_ref, _excluded$2Y);
10461
10611
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10462
10612
  xmlns: "http://www.w3.org/2000/svg",
10463
10613
  width: 24,
@@ -10478,7 +10628,7 @@
10478
10628
  PriorityLowIcon.displayName = "PriorityLowIcon";
10479
10629
  var PriorityLowIcon$1 = PriorityLowIcon;
10480
10630
 
10481
- var _excluded$2W = ["gradient"];
10631
+ var _excluded$2X = ["gradient"];
10482
10632
 
10483
10633
  /**
10484
10634
  * @component ProjectIcon
@@ -10512,7 +10662,7 @@
10512
10662
  */
10513
10663
  var ProjectIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10514
10664
  var gradient = _ref.gradient,
10515
- props = _objectWithoutProperties(_ref, _excluded$2W);
10665
+ props = _objectWithoutProperties(_ref, _excluded$2X);
10516
10666
  var fillValue = gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)";
10517
10667
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10518
10668
  xmlns: "http://www.w3.org/2000/svg",
@@ -10565,7 +10715,7 @@
10565
10715
  ProjectIcon.displayName = "ProjectIcon";
10566
10716
  var ProjectIcon$1 = ProjectIcon;
10567
10717
 
10568
- var _excluded$2V = ["gradient"];
10718
+ var _excluded$2W = ["gradient"];
10569
10719
 
10570
10720
  /**
10571
10721
  * @component ProjectAddIcon
@@ -10595,7 +10745,7 @@
10595
10745
  */
10596
10746
  var ProjectAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10597
10747
  var gradient = _ref.gradient,
10598
- props = _objectWithoutProperties(_ref, _excluded$2V);
10748
+ props = _objectWithoutProperties(_ref, _excluded$2W);
10599
10749
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10600
10750
  xmlns: "http://www.w3.org/2000/svg",
10601
10751
  width: 24,
@@ -10615,7 +10765,7 @@
10615
10765
  ProjectAddIcon.displayName = "ProjectAddIcon";
10616
10766
  var ProjectAddIcon$1 = ProjectAddIcon;
10617
10767
 
10618
- var _excluded$2U = ["gradient"];
10768
+ var _excluded$2V = ["gradient"];
10619
10769
 
10620
10770
  /**
10621
10771
  * @component ProjectSearchIcon
@@ -10645,7 +10795,7 @@
10645
10795
  */
10646
10796
  var ProjectSearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10647
10797
  var gradient = _ref.gradient,
10648
- props = _objectWithoutProperties(_ref, _excluded$2U);
10798
+ props = _objectWithoutProperties(_ref, _excluded$2V);
10649
10799
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10650
10800
  xmlns: "http://www.w3.org/2000/svg",
10651
10801
  width: 24,
@@ -10666,7 +10816,7 @@
10666
10816
  ProjectSearchIcon.displayName = "ProjectSearchIcon";
10667
10817
  var ProjectSearchIcon$1 = ProjectSearchIcon;
10668
10818
 
10669
- var _excluded$2T = ["gradient"];
10819
+ var _excluded$2U = ["gradient"];
10670
10820
 
10671
10821
  /**
10672
10822
  * @component ProjectStarIcon
@@ -10696,7 +10846,7 @@
10696
10846
  */
10697
10847
  var ProjectStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10698
10848
  var gradient = _ref.gradient,
10699
- props = _objectWithoutProperties(_ref, _excluded$2T);
10849
+ props = _objectWithoutProperties(_ref, _excluded$2U);
10700
10850
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10701
10851
  xmlns: "http://www.w3.org/2000/svg",
10702
10852
  width: 24,
@@ -10719,7 +10869,7 @@
10719
10869
  ProjectStarIcon.displayName = "ProjectStarIcon";
10720
10870
  var ProjectStarIcon$1 = ProjectStarIcon;
10721
10871
 
10722
- var _excluded$2S = ["gradient"];
10872
+ var _excluded$2T = ["gradient"];
10723
10873
 
10724
10874
  /**
10725
10875
  * @component ProjectTemplateAddIcon
@@ -10749,7 +10899,7 @@
10749
10899
  */
10750
10900
  var ProjectTemplateAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10751
10901
  var gradient = _ref.gradient,
10752
- props = _objectWithoutProperties(_ref, _excluded$2S);
10902
+ props = _objectWithoutProperties(_ref, _excluded$2T);
10753
10903
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10754
10904
  xmlns: "http://www.w3.org/2000/svg",
10755
10905
  width: 24,
@@ -10769,7 +10919,7 @@
10769
10919
  ProjectTemplateAddIcon.displayName = "ProjectTemplateAddIcon";
10770
10920
  var ProjectTemplateAddIcon$1 = ProjectTemplateAddIcon;
10771
10921
 
10772
- var _excluded$2R = ["gradient"];
10922
+ var _excluded$2S = ["gradient"];
10773
10923
 
10774
10924
  /**
10775
10925
  * @component ProjectTemplateConvertIcon
@@ -10799,7 +10949,7 @@
10799
10949
  */
10800
10950
  var ProjectTemplateConvertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10801
10951
  var gradient = _ref.gradient,
10802
- props = _objectWithoutProperties(_ref, _excluded$2R);
10952
+ props = _objectWithoutProperties(_ref, _excluded$2S);
10803
10953
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10804
10954
  xmlns: "http://www.w3.org/2000/svg",
10805
10955
  width: 24,
@@ -10819,7 +10969,7 @@
10819
10969
  ProjectTemplateConvertIcon.displayName = "ProjectTemplateConvertIcon";
10820
10970
  var ProjectTemplateConvertIcon$1 = ProjectTemplateConvertIcon;
10821
10971
 
10822
- var _excluded$2Q = ["gradient"];
10972
+ var _excluded$2R = ["gradient"];
10823
10973
 
10824
10974
  /**
10825
10975
  * @component ProjectTemplateIcon
@@ -10849,7 +10999,7 @@
10849
10999
  */
10850
11000
  var ProjectTemplateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10851
11001
  var gradient = _ref.gradient,
10852
- props = _objectWithoutProperties(_ref, _excluded$2Q);
11002
+ props = _objectWithoutProperties(_ref, _excluded$2R);
10853
11003
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10854
11004
  xmlns: "http://www.w3.org/2000/svg",
10855
11005
  width: 24,
@@ -10869,7 +11019,7 @@
10869
11019
  ProjectTemplateIcon.displayName = "ProjectTemplateIcon";
10870
11020
  var ProjectTemplateIcon$1 = ProjectTemplateIcon;
10871
11021
 
10872
- var _excluded$2P = ["gradient"];
11022
+ var _excluded$2Q = ["gradient"];
10873
11023
 
10874
11024
  /**
10875
11025
  * @component ProjectsIcon
@@ -10899,7 +11049,7 @@
10899
11049
  */
10900
11050
  var ProjectsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10901
11051
  var gradient = _ref.gradient,
10902
- props = _objectWithoutProperties(_ref, _excluded$2P);
11052
+ props = _objectWithoutProperties(_ref, _excluded$2Q);
10903
11053
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10904
11054
  xmlns: "http://www.w3.org/2000/svg",
10905
11055
  width: 24,
@@ -10923,7 +11073,7 @@
10923
11073
  ProjectsIcon.displayName = "ProjectsIcon";
10924
11074
  var ProjectsIcon$1 = ProjectsIcon;
10925
11075
 
10926
- var _excluded$2O = ["gradient"];
11076
+ var _excluded$2P = ["gradient"];
10927
11077
 
10928
11078
  /**
10929
11079
  * @component PuzzleIcon
@@ -10953,7 +11103,7 @@
10953
11103
  */
10954
11104
  var PuzzleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
10955
11105
  var gradient = _ref.gradient,
10956
- props = _objectWithoutProperties(_ref, _excluded$2O);
11106
+ props = _objectWithoutProperties(_ref, _excluded$2P);
10957
11107
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10958
11108
  xmlns: "http://www.w3.org/2000/svg",
10959
11109
  width: 24,
@@ -10974,7 +11124,7 @@
10974
11124
  PuzzleIcon.displayName = "PuzzleIcon";
10975
11125
  var PuzzleIcon$1 = PuzzleIcon;
10976
11126
 
10977
- var _excluded$2N = ["gradient"];
11127
+ var _excluded$2O = ["gradient"];
10978
11128
 
10979
11129
  /**
10980
11130
  * @component RadioBlankIcon
@@ -11004,7 +11154,7 @@
11004
11154
  */
11005
11155
  var RadioBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11006
11156
  var gradient = _ref.gradient,
11007
- props = _objectWithoutProperties(_ref, _excluded$2N);
11157
+ props = _objectWithoutProperties(_ref, _excluded$2O);
11008
11158
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11009
11159
  xmlns: "http://www.w3.org/2000/svg",
11010
11160
  width: 24,
@@ -11024,7 +11174,7 @@
11024
11174
  RadioBlankIcon.displayName = "RadioBlankIcon";
11025
11175
  var RadioBlankIcon$1 = RadioBlankIcon;
11026
11176
 
11027
- var _excluded$2M = ["gradient"];
11177
+ var _excluded$2N = ["gradient"];
11028
11178
 
11029
11179
  /**
11030
11180
  * @component RadioButtonIcon
@@ -11054,7 +11204,7 @@
11054
11204
  */
11055
11205
  var RadioButtonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11056
11206
  var gradient = _ref.gradient,
11057
- props = _objectWithoutProperties(_ref, _excluded$2M);
11207
+ props = _objectWithoutProperties(_ref, _excluded$2N);
11058
11208
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11059
11209
  xmlns: "http://www.w3.org/2000/svg",
11060
11210
  width: 16,
@@ -11082,7 +11232,7 @@
11082
11232
  RadioButtonIcon.displayName = "RadioButtonIcon";
11083
11233
  var RadioButtonIcon$1 = RadioButtonIcon;
11084
11234
 
11085
- var _excluded$2L = ["gradient"];
11235
+ var _excluded$2M = ["gradient"];
11086
11236
 
11087
11237
  /**
11088
11238
  * @component RearangeIcon
@@ -11112,7 +11262,7 @@
11112
11262
  */
11113
11263
  var RearangeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11114
11264
  var gradient = _ref.gradient,
11115
- props = _objectWithoutProperties(_ref, _excluded$2L);
11265
+ props = _objectWithoutProperties(_ref, _excluded$2M);
11116
11266
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11117
11267
  xmlns: "http://www.w3.org/2000/svg",
11118
11268
  width: 24,
@@ -11132,7 +11282,7 @@
11132
11282
  RearangeIcon.displayName = "RearangeIcon";
11133
11283
  var RearangeIcon$1 = RearangeIcon;
11134
11284
 
11135
- var _excluded$2K = ["gradient"];
11285
+ var _excluded$2L = ["gradient"];
11136
11286
 
11137
11287
  /**
11138
11288
  * @component RearrangeSmallIcon
@@ -11162,7 +11312,7 @@
11162
11312
  */
11163
11313
  var RearrangeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11164
11314
  var gradient = _ref.gradient,
11165
- props = _objectWithoutProperties(_ref, _excluded$2K);
11315
+ props = _objectWithoutProperties(_ref, _excluded$2L);
11166
11316
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11167
11317
  xmlns: "http://www.w3.org/2000/svg",
11168
11318
  width: 12,
@@ -11182,7 +11332,7 @@
11182
11332
  RearrangeSmallIcon.displayName = "RearrangeSmallIcon";
11183
11333
  var RearrangeSmallIcon$1 = RearrangeSmallIcon;
11184
11334
 
11185
- var _excluded$2J = ["gradient"];
11335
+ var _excluded$2K = ["gradient"];
11186
11336
 
11187
11337
  /**
11188
11338
  * @component RecurringCheckmarkSmallIcon
@@ -11212,7 +11362,7 @@
11212
11362
  */
11213
11363
  var RecurringCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11214
11364
  var gradient = _ref.gradient,
11215
- props = _objectWithoutProperties(_ref, _excluded$2J);
11365
+ props = _objectWithoutProperties(_ref, _excluded$2K);
11216
11366
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11217
11367
  xmlns: "http://www.w3.org/2000/svg",
11218
11368
  width: 12,
@@ -11232,7 +11382,7 @@
11232
11382
  RecurringCheckmarkSmallIcon.displayName = "RecurringCheckmarkSmallIcon";
11233
11383
  var RecurringCheckmarkSmallIcon$1 = RecurringCheckmarkSmallIcon;
11234
11384
 
11235
- var _excluded$2I = ["gradient"];
11385
+ var _excluded$2J = ["gradient"];
11236
11386
 
11237
11387
  /**
11238
11388
  * @component RecurringCheckmarkIcon
@@ -11262,7 +11412,7 @@
11262
11412
  */
11263
11413
  var RecurringCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11264
11414
  var gradient = _ref.gradient,
11265
- props = _objectWithoutProperties(_ref, _excluded$2I);
11415
+ props = _objectWithoutProperties(_ref, _excluded$2J);
11266
11416
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11267
11417
  xmlns: "http://www.w3.org/2000/svg",
11268
11418
  width: 24,
@@ -11282,7 +11432,7 @@
11282
11432
  RecurringCheckmarkIcon.displayName = "RecurringCheckmarkIcon";
11283
11433
  var RecurringCheckmarkIcon$1 = RecurringCheckmarkIcon;
11284
11434
 
11285
- var _excluded$2H = ["gradient"];
11435
+ var _excluded$2I = ["gradient"];
11286
11436
 
11287
11437
  /**
11288
11438
  * @component RecurringDollarIcon
@@ -11312,7 +11462,7 @@
11312
11462
  */
11313
11463
  var RecurringDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11314
11464
  var gradient = _ref.gradient,
11315
- props = _objectWithoutProperties(_ref, _excluded$2H);
11465
+ props = _objectWithoutProperties(_ref, _excluded$2I);
11316
11466
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11317
11467
  xmlns: "http://www.w3.org/2000/svg",
11318
11468
  width: 24,
@@ -11334,7 +11484,7 @@
11334
11484
  RecurringDollarIcon.displayName = "RecurringDollarIcon";
11335
11485
  var RecurringDollarIcon$1 = RecurringDollarIcon;
11336
11486
 
11337
- var _excluded$2G = ["gradient"];
11487
+ var _excluded$2H = ["gradient"];
11338
11488
 
11339
11489
  /**
11340
11490
  * @component RecurringSmallIcon
@@ -11364,7 +11514,7 @@
11364
11514
  */
11365
11515
  var RecurringSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11366
11516
  var gradient = _ref.gradient,
11367
- props = _objectWithoutProperties(_ref, _excluded$2G);
11517
+ props = _objectWithoutProperties(_ref, _excluded$2H);
11368
11518
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11369
11519
  xmlns: "http://www.w3.org/2000/svg",
11370
11520
  width: 12,
@@ -11385,7 +11535,7 @@
11385
11535
  RecurringSmallIcon.displayName = "RecurringSmallIcon";
11386
11536
  var RecurringSmallIcon$1 = RecurringSmallIcon;
11387
11537
 
11388
- var _excluded$2F = ["gradient"];
11538
+ var _excluded$2G = ["gradient"];
11389
11539
 
11390
11540
  /**
11391
11541
  * @component ReminderIcon
@@ -11415,7 +11565,7 @@
11415
11565
  */
11416
11566
  var ReminderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11417
11567
  var gradient = _ref.gradient,
11418
- props = _objectWithoutProperties(_ref, _excluded$2F);
11568
+ props = _objectWithoutProperties(_ref, _excluded$2G);
11419
11569
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11420
11570
  xmlns: "http://www.w3.org/2000/svg",
11421
11571
  width: 18,
@@ -11441,7 +11591,7 @@
11441
11591
  ReminderIcon.displayName = "ReminderIcon";
11442
11592
  var ReminderIcon$1 = ReminderIcon;
11443
11593
 
11444
- var _excluded$2E = ["gradient"];
11594
+ var _excluded$2F = ["gradient"];
11445
11595
 
11446
11596
  /**
11447
11597
  * @component ReorderIcon
@@ -11471,7 +11621,7 @@
11471
11621
  */
11472
11622
  var ReorderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11473
11623
  var gradient = _ref.gradient,
11474
- props = _objectWithoutProperties(_ref, _excluded$2E);
11624
+ props = _objectWithoutProperties(_ref, _excluded$2F);
11475
11625
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11476
11626
  xmlns: "http://www.w3.org/2000/svg",
11477
11627
  width: 24,
@@ -11490,7 +11640,7 @@
11490
11640
  ReorderIcon.displayName = "ReorderIcon";
11491
11641
  var ReorderIcon$1 = ReorderIcon;
11492
11642
 
11493
- var _excluded$2D = ["gradient"];
11643
+ var _excluded$2E = ["gradient"];
11494
11644
 
11495
11645
  /**
11496
11646
  * @component ReportTimeIcon
@@ -11520,7 +11670,7 @@
11520
11670
  */
11521
11671
  var ReportTimeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11522
11672
  var gradient = _ref.gradient,
11523
- props = _objectWithoutProperties(_ref, _excluded$2D);
11673
+ props = _objectWithoutProperties(_ref, _excluded$2E);
11524
11674
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11525
11675
  xmlns: "http://www.w3.org/2000/svg",
11526
11676
  width: 24,
@@ -11540,7 +11690,7 @@
11540
11690
  ReportTimeIcon.displayName = "ReportTimeIcon";
11541
11691
  var ReportTimeIcon$1 = ReportTimeIcon;
11542
11692
 
11543
- var _excluded$2C = ["gradient"];
11693
+ var _excluded$2D = ["gradient"];
11544
11694
 
11545
11695
  /**
11546
11696
  * @component ReportsIcon
@@ -11570,7 +11720,7 @@
11570
11720
  */
11571
11721
  var ReportsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11572
11722
  var gradient = _ref.gradient,
11573
- props = _objectWithoutProperties(_ref, _excluded$2C);
11723
+ props = _objectWithoutProperties(_ref, _excluded$2D);
11574
11724
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11575
11725
  xmlns: "http://www.w3.org/2000/svg",
11576
11726
  width: 24,
@@ -11594,7 +11744,7 @@
11594
11744
  ReportsIcon.displayName = "ReportsIcon";
11595
11745
  var ReportsIcon$1 = ReportsIcon;
11596
11746
 
11597
- var _excluded$2B = ["gradient"];
11747
+ var _excluded$2C = ["gradient"];
11598
11748
 
11599
11749
  /**
11600
11750
  * @component RobotIcon
@@ -11624,7 +11774,7 @@
11624
11774
  */
11625
11775
  var RobotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11626
11776
  var gradient = _ref.gradient,
11627
- props = _objectWithoutProperties(_ref, _excluded$2B);
11777
+ props = _objectWithoutProperties(_ref, _excluded$2C);
11628
11778
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11629
11779
  xmlns: "http://www.w3.org/2000/svg",
11630
11780
  width: 24,
@@ -11647,7 +11797,7 @@
11647
11797
  RobotIcon.displayName = "RobotIcon";
11648
11798
  var RobotIcon$1 = RobotIcon;
11649
11799
 
11650
- var _excluded$2A = ["gradient"];
11800
+ var _excluded$2B = ["gradient"];
11651
11801
 
11652
11802
  /**
11653
11803
  * @component RocketSmallIcon
@@ -11677,7 +11827,7 @@
11677
11827
  */
11678
11828
  var RocketSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11679
11829
  var gradient = _ref.gradient,
11680
- props = _objectWithoutProperties(_ref, _excluded$2A);
11830
+ props = _objectWithoutProperties(_ref, _excluded$2B);
11681
11831
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11682
11832
  xmlns: "http://www.w3.org/2000/svg",
11683
11833
  width: 18,
@@ -11695,7 +11845,7 @@
11695
11845
  RocketSmallIcon.displayName = "RocketSmallIcon";
11696
11846
  var RocketSmallIcon$1 = RocketSmallIcon;
11697
11847
 
11698
- var _excluded$2z = ["gradient"];
11848
+ var _excluded$2A = ["gradient"];
11699
11849
 
11700
11850
  /**
11701
11851
  * @component RocketIcon
@@ -11725,7 +11875,7 @@
11725
11875
  */
11726
11876
  var RocketIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11727
11877
  var gradient = _ref.gradient,
11728
- props = _objectWithoutProperties(_ref, _excluded$2z);
11878
+ props = _objectWithoutProperties(_ref, _excluded$2A);
11729
11879
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11730
11880
  xmlns: "http://www.w3.org/2000/svg",
11731
11881
  width: 24,
@@ -11744,7 +11894,7 @@
11744
11894
  RocketIcon.displayName = "RocketIcon";
11745
11895
  var RocketIcon$1 = RocketIcon;
11746
11896
 
11747
- var _excluded$2y = ["gradient"];
11897
+ var _excluded$2z = ["gradient"];
11748
11898
 
11749
11899
  /**
11750
11900
  * @component RoundedRectangleIcon
@@ -11774,7 +11924,7 @@
11774
11924
  */
11775
11925
  var RoundedRectangleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11776
11926
  var gradient = _ref.gradient,
11777
- props = _objectWithoutProperties(_ref, _excluded$2y);
11927
+ props = _objectWithoutProperties(_ref, _excluded$2z);
11778
11928
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11779
11929
  xmlns: "http://www.w3.org/2000/svg",
11780
11930
  width: 24,
@@ -11800,7 +11950,7 @@
11800
11950
  RoundedRectangleIcon.displayName = "RoundedRectangleIcon";
11801
11951
  var RoundedRectangleIcon$1 = RoundedRectangleIcon;
11802
11952
 
11803
- var _excluded$2x = ["gradient"];
11953
+ var _excluded$2y = ["gradient"];
11804
11954
 
11805
11955
  /**
11806
11956
  * @component SaveIcon
@@ -11830,7 +11980,7 @@
11830
11980
  */
11831
11981
  var SaveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
11832
11982
  var gradient = _ref.gradient,
11833
- props = _objectWithoutProperties(_ref, _excluded$2x);
11983
+ props = _objectWithoutProperties(_ref, _excluded$2y);
11834
11984
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
11835
11985
  xmlns: "http://www.w3.org/2000/svg",
11836
11986
  width: 24,
@@ -11851,6 +12001,56 @@
11851
12001
  SaveIcon.displayName = "SaveIcon";
11852
12002
  var SaveIcon$1 = SaveIcon;
11853
12003
 
12004
+ var _excluded$2x = ["gradient"];
12005
+
12006
+ /**
12007
+ * @component ScissorsIcon
12008
+ * @description
12009
+ *
12010
+ * The ScissorsIcon component displays a pair of scissors to represent cut, trim, or clip actions.
12011
+ * The Icon component is
12012
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
12013
+ *
12014
+ * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
12015
+ * Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
12016
+ *
12017
+ * @example
12018
+ * return (
12019
+ * <ScissorsIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
12020
+ * )
12021
+ *
12022
+ * @example
12023
+ * return (
12024
+ * <ScissorsIcon className="mr-2" />
12025
+ * )
12026
+ *
12027
+ * @see
12028
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
12029
+ * @see
12030
+ * https://design.activecollab.com/docs/foundations/icons
12031
+ */
12032
+ var ScissorsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
12033
+ var gradient = _ref.gradient,
12034
+ props = _objectWithoutProperties(_ref, _excluded$2x);
12035
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
12036
+ xmlns: "http://www.w3.org/2000/svg",
12037
+ width: 24,
12038
+ height: 24,
12039
+ viewBox: "0 0 24 24",
12040
+ "data-testid": "ScissorsIcon",
12041
+ fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
12042
+ focusable: false,
12043
+ ref: ref
12044
+ }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
12045
+ gradient: gradient
12046
+ }), /*#__PURE__*/React__default["default"].createElement("path", {
12047
+ fillRule: "evenodd",
12048
+ d: "M13.15 11.00L13.14 10.84L18.15 3.40L18.25 2.92L18.06 2.46L17.73 2.22L17.40 2.15L17.00 2.25L16.75 2.46L12.00 9.48L7.25 2.46L7.00 2.25L6.68 2.15L6.35 2.19L6.06 2.35L5.77 2.84L5.85 3.40L10.86 10.84L10.85 11.09L8.00 14.74L7.00 14.55L6.17 14.67L5.19 15.20L4.63 15.82L4.20 16.84L4.16 17.68L4.37 18.49L4.98 19.42L5.91 20.03L7.00 20.25L8.09 20.03L9.02 19.42L9.63 18.49L9.84 17.68L9.73 16.57L9.34 15.78L12.00 12.38L14.66 15.78L14.27 16.57L14.16 17.68L14.37 18.49L14.98 19.42L15.91 20.03L17.00 20.25L18.09 20.03L19.02 19.42L19.51 18.74L19.84 17.68L19.73 16.57L19.37 15.82L18.58 15.03L17.83 14.67L17.00 14.55L16.00 14.74L13.15 11.00ZM8.40 17.40L8.29 17.94L7.99 18.39L7.54 18.69L7.00 18.80L6.46 18.69L6.01 18.39L5.71 17.94L5.60 17.40L5.71 16.86L6.01 16.41L6.46 16.11L7.00 16.00L7.54 16.11L7.99 16.41L8.29 16.86L8.40 17.40ZM18.40 17.40L18.29 17.94L17.99 18.39L17.54 18.69L17.00 18.80L16.46 18.69L16.01 18.39L15.71 17.94L15.60 17.40L15.71 16.86L16.01 16.41L16.46 16.11L17.00 16.00L17.54 16.11L17.99 16.41L18.29 16.86L18.40 17.40Z"
12049
+ }));
12050
+ });
12051
+ ScissorsIcon.displayName = "ScissorsIcon";
12052
+ var ScissorsIcon$1 = ScissorsIcon;
12053
+
11854
12054
  var _excluded$2w = ["gradient"];
11855
12055
 
11856
12056
  /**
@@ -31490,6 +31690,7 @@
31490
31690
  exports.CircleIcon = CircleIcon$1;
31491
31691
  exports.CircleMultipleIcon = CircleMultipleIcon$1;
31492
31692
  exports.CircleSlashIcon = CircleSlashIcon$1;
31693
+ exports.ClipboardIcon = ClipboardIcon$1;
31493
31694
  exports.ClockAddIcon = ClockAddIcon$1;
31494
31695
  exports.ClockDollarIcon = ClockDollarIcon$1;
31495
31696
  exports.ClockIcon = ClockIcon$1;
@@ -31523,6 +31724,7 @@
31523
31724
  exports.CounterButton = CounterButton;
31524
31725
  exports.CrownBlankIcon = CrownBlankIcon$1;
31525
31726
  exports.CrownSelectedIcon = CrownSelectedIcon$1;
31727
+ exports.CutIcon = CutIcon$1;
31526
31728
  exports.DARK_THEME_MATCH = DARK_THEME_MATCH;
31527
31729
  exports.DARK_THEME_NAMES = DARK_THEME_NAMES;
31528
31730
  exports.DARK_THEME_SELECTOR = DARK_THEME_SELECTOR;
@@ -31704,6 +31906,7 @@
31704
31906
  exports.PaidSmallIcon = PaidSmallIcon$1;
31705
31907
  exports.Paper = Paper;
31706
31908
  exports.PartyIcon = PartyIcon$1;
31909
+ exports.PasteIcon = PasteIcon$1;
31707
31910
  exports.PauseCircleOutlineIcon = PauseCircleOutlineIcon$1;
31708
31911
  exports.PauseIcon = PauseIcon$1;
31709
31912
  exports.PauseSmallIcon = PauseSmallIcon$1;
@@ -31779,6 +31982,7 @@
31779
31982
  exports.SaveIcon = SaveIcon$1;
31780
31983
  exports.Scale = Scale;
31781
31984
  exports.ScaleBar = ScaleBar;
31985
+ exports.ScissorsIcon = ScissorsIcon$1;
31782
31986
  exports.ScrollElement = ScrollElement;
31783
31987
  exports.ScrollShadow = ScrollShadow;
31784
31988
  exports.SearchIcon = SearchIcon$1;