@activecollab/components 2.0.394 → 2.0.395
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Icons/collection/ViewCombined.js +60 -0
- package/dist/cjs/components/Icons/collection/ViewCombined.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +7 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/ViewCombined.d.ts +32 -0
- package/dist/esm/components/Icons/collection/ViewCombined.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/ViewCombined.js +53 -0
- package/dist/esm/components/Icons/collection/ViewCombined.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +1 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +566 -516
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
})(["display:inline-flex;svg{margin:0 4px;}"]);
|
|
190
190
|
StyledButtonElement.displayName = "StyledButtonElement";
|
|
191
191
|
|
|
192
|
-
var _excluded$
|
|
192
|
+
var _excluded$5J = ["children", "active", "variant", "size", "className"];
|
|
193
193
|
/**
|
|
194
194
|
* @component Button
|
|
195
195
|
* @description
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
_ref$size = _ref.size,
|
|
220
220
|
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
221
221
|
className = _ref.className,
|
|
222
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
222
|
+
args = _objectWithoutProperties(_ref, _excluded$5J);
|
|
223
223
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton$2, _extends({
|
|
224
224
|
className: classNames__default["default"]("c-btn", className, {
|
|
225
225
|
"c-btn--contained": variant === "primary" || variant === "contained",
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
})));
|
|
285
285
|
};
|
|
286
286
|
|
|
287
|
-
var _excluded$
|
|
287
|
+
var _excluded$5I = ["gradient"];
|
|
288
288
|
|
|
289
289
|
/**
|
|
290
290
|
* @component AddCrossTinyIcon
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
*/
|
|
315
315
|
var AddCrossTinyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
316
316
|
var gradient = _ref.gradient,
|
|
317
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
317
|
+
props = _objectWithoutProperties(_ref, _excluded$5I);
|
|
318
318
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
319
319
|
xmlns: "http://www.w3.org/2000/svg",
|
|
320
320
|
width: 24,
|
|
@@ -334,12 +334,12 @@
|
|
|
334
334
|
AddCrossTinyIcon.displayName = "AddCrossTinyIcon";
|
|
335
335
|
var AddCrossTinyIcon$1 = AddCrossTinyIcon;
|
|
336
336
|
|
|
337
|
-
var _excluded$
|
|
337
|
+
var _excluded$5H = ["className", "disabled"];
|
|
338
338
|
var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
339
339
|
var className = _ref.className,
|
|
340
340
|
_ref$disabled = _ref.disabled,
|
|
341
341
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
342
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
342
|
+
rest = _objectWithoutProperties(_ref, _excluded$5H);
|
|
343
343
|
return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
|
|
344
344
|
ref: ref,
|
|
345
345
|
variant: "contained",
|
|
@@ -377,12 +377,12 @@
|
|
|
377
377
|
});
|
|
378
378
|
StyledButtonGroup$1.displayName = "StyledButtonGroup";
|
|
379
379
|
|
|
380
|
-
var _excluded$
|
|
380
|
+
var _excluded$5G = ["children", "className", "invalid"];
|
|
381
381
|
var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
382
382
|
var children = _ref.children,
|
|
383
383
|
className = _ref.className,
|
|
384
384
|
invalid = _ref.invalid,
|
|
385
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
385
|
+
rest = _objectWithoutProperties(_ref, _excluded$5G);
|
|
386
386
|
return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
|
|
387
387
|
ref: ref,
|
|
388
388
|
className: classNames__default["default"]("c-btn-group", className),
|
|
@@ -407,11 +407,11 @@
|
|
|
407
407
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
408
408
|
StyledListSeparator$1.displayName = "StyledListSeparator";
|
|
409
409
|
|
|
410
|
-
var _excluded$
|
|
410
|
+
var _excluded$5F = ["children", "className"];
|
|
411
411
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
412
412
|
var children = _ref.children,
|
|
413
413
|
className = _ref.className,
|
|
414
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
414
|
+
props = _objectWithoutProperties(_ref, _excluded$5F);
|
|
415
415
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem$1, _extends({
|
|
416
416
|
className: classNames__default["default"]("c-list-item", className),
|
|
417
417
|
ref: ref,
|
|
@@ -420,21 +420,21 @@
|
|
|
420
420
|
});
|
|
421
421
|
ListItem.displayName = "ListItem";
|
|
422
422
|
|
|
423
|
-
var _excluded$
|
|
423
|
+
var _excluded$5E = ["className"];
|
|
424
424
|
var ListSeparator = function ListSeparator(_ref) {
|
|
425
425
|
var className = _ref.className,
|
|
426
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
426
|
+
props = _objectWithoutProperties(_ref, _excluded$5E);
|
|
427
427
|
return /*#__PURE__*/React__default["default"].createElement(StyledListSeparator$1, _extends({
|
|
428
428
|
className: classNames__default["default"]("c-list-separator", className)
|
|
429
429
|
}, props));
|
|
430
430
|
};
|
|
431
431
|
ListSeparator.displayName = "ListSeparator";
|
|
432
432
|
|
|
433
|
-
var _excluded$
|
|
433
|
+
var _excluded$5D = ["children", "className"];
|
|
434
434
|
var _List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
435
435
|
var children = _ref.children,
|
|
436
436
|
className = _ref.className,
|
|
437
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
437
|
+
props = _objectWithoutProperties(_ref, _excluded$5D);
|
|
438
438
|
return /*#__PURE__*/React__default["default"].createElement(StyledList$1, _extends({
|
|
439
439
|
className: className,
|
|
440
440
|
ref: ref,
|
|
@@ -1033,7 +1033,7 @@
|
|
|
1033
1033
|
return size === "big" && styled.css(["width:40px;"]);
|
|
1034
1034
|
});
|
|
1035
1035
|
|
|
1036
|
-
var _excluded$
|
|
1036
|
+
var _excluded$5C = ["children", "className", "variant", "size", "active"];
|
|
1037
1037
|
|
|
1038
1038
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
1039
1039
|
|
|
@@ -1063,7 +1063,7 @@
|
|
|
1063
1063
|
variant = _ref.variant,
|
|
1064
1064
|
size = _ref.size,
|
|
1065
1065
|
active = _ref.active,
|
|
1066
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
1066
|
+
args = _objectWithoutProperties(_ref, _excluded$5C);
|
|
1067
1067
|
return /*#__PURE__*/React__default["default"].createElement(StyledIconButton$1, _extends({
|
|
1068
1068
|
className: className,
|
|
1069
1069
|
variant: variant,
|
|
@@ -1074,7 +1074,7 @@
|
|
|
1074
1074
|
});
|
|
1075
1075
|
IconButton.displayName = "IconButton";
|
|
1076
1076
|
|
|
1077
|
-
var _excluded$
|
|
1077
|
+
var _excluded$5B = ["gradient"];
|
|
1078
1078
|
|
|
1079
1079
|
/**
|
|
1080
1080
|
* @component RecurringIcon
|
|
@@ -1104,7 +1104,7 @@
|
|
|
1104
1104
|
*/
|
|
1105
1105
|
var RecurringIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1106
1106
|
var gradient = _ref.gradient,
|
|
1107
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1107
|
+
props = _objectWithoutProperties(_ref, _excluded$5B);
|
|
1108
1108
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1109
1109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1110
1110
|
width: 18,
|
|
@@ -1125,7 +1125,7 @@
|
|
|
1125
1125
|
RecurringIcon.displayName = "RecurringIcon";
|
|
1126
1126
|
var RecurringIcon$1 = RecurringIcon;
|
|
1127
1127
|
|
|
1128
|
-
var _excluded$
|
|
1128
|
+
var _excluded$5A = ["gradient"];
|
|
1129
1129
|
|
|
1130
1130
|
/**
|
|
1131
1131
|
* @component AccessLogIcon
|
|
@@ -1155,7 +1155,7 @@
|
|
|
1155
1155
|
*/
|
|
1156
1156
|
var AccessLogIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1157
1157
|
var gradient = _ref.gradient,
|
|
1158
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1158
|
+
props = _objectWithoutProperties(_ref, _excluded$5A);
|
|
1159
1159
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1160
1160
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1161
1161
|
width: 24,
|
|
@@ -1183,7 +1183,7 @@
|
|
|
1183
1183
|
AccessLogIcon.displayName = "AccessLogIcon";
|
|
1184
1184
|
var AccessLogIcon$1 = AccessLogIcon;
|
|
1185
1185
|
|
|
1186
|
-
var _excluded$
|
|
1186
|
+
var _excluded$5z = ["gradient"];
|
|
1187
1187
|
|
|
1188
1188
|
/**
|
|
1189
1189
|
* @component ActivityIcon
|
|
@@ -1213,7 +1213,7 @@
|
|
|
1213
1213
|
*/
|
|
1214
1214
|
var ActivityIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1215
1215
|
var gradient = _ref.gradient,
|
|
1216
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1216
|
+
props = _objectWithoutProperties(_ref, _excluded$5z);
|
|
1217
1217
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1218
1218
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1219
1219
|
width: 24,
|
|
@@ -1237,7 +1237,7 @@
|
|
|
1237
1237
|
ActivityIcon.displayName = "ActivityIcon";
|
|
1238
1238
|
var ActivityIcon$1 = ActivityIcon;
|
|
1239
1239
|
|
|
1240
|
-
var _excluded$
|
|
1240
|
+
var _excluded$5y = ["gradient"];
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
1243
|
* @component AddCrossIcon
|
|
@@ -1267,7 +1267,7 @@
|
|
|
1267
1267
|
*/
|
|
1268
1268
|
var AddCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1269
1269
|
var gradient = _ref.gradient,
|
|
1270
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1270
|
+
props = _objectWithoutProperties(_ref, _excluded$5y);
|
|
1271
1271
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1272
1272
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1273
1273
|
width: 10,
|
|
@@ -1287,7 +1287,7 @@
|
|
|
1287
1287
|
AddCrossIcon.displayName = "AddCrossIcon";
|
|
1288
1288
|
var AddCrossIcon$1 = AddCrossIcon;
|
|
1289
1289
|
|
|
1290
|
-
var _excluded$
|
|
1290
|
+
var _excluded$5x = ["gradient"];
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
1293
|
* @component ArchiveIcon
|
|
@@ -1317,7 +1317,7 @@
|
|
|
1317
1317
|
*/
|
|
1318
1318
|
var ArchiveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1319
1319
|
var gradient = _ref.gradient,
|
|
1320
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1320
|
+
props = _objectWithoutProperties(_ref, _excluded$5x);
|
|
1321
1321
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1322
1322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1323
1323
|
width: 24,
|
|
@@ -1338,7 +1338,7 @@
|
|
|
1338
1338
|
ArchiveIcon.displayName = "ArchiveIcon";
|
|
1339
1339
|
var ArchiveIcon$1 = ArchiveIcon;
|
|
1340
1340
|
|
|
1341
|
-
var _excluded$
|
|
1341
|
+
var _excluded$5w = ["gradient"];
|
|
1342
1342
|
|
|
1343
1343
|
/**
|
|
1344
1344
|
* @component ArrowBackMobileIcon
|
|
@@ -1368,7 +1368,7 @@
|
|
|
1368
1368
|
*/
|
|
1369
1369
|
var ArrowBackMobileIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1370
1370
|
var gradient = _ref.gradient,
|
|
1371
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1371
|
+
props = _objectWithoutProperties(_ref, _excluded$5w);
|
|
1372
1372
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1373
1373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1374
1374
|
width: 24,
|
|
@@ -1389,7 +1389,7 @@
|
|
|
1389
1389
|
ArrowBackMobileIcon.displayName = "ArrowBackMobileIcon";
|
|
1390
1390
|
var ArrowBackMobileIcon$1 = ArrowBackMobileIcon;
|
|
1391
1391
|
|
|
1392
|
-
var _excluded$
|
|
1392
|
+
var _excluded$5v = ["gradient"];
|
|
1393
1393
|
|
|
1394
1394
|
/**
|
|
1395
1395
|
* @component ArrowCollapseMultipleIcon
|
|
@@ -1419,7 +1419,7 @@
|
|
|
1419
1419
|
*/
|
|
1420
1420
|
var ArrowCollapseMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1421
1421
|
var gradient = _ref.gradient,
|
|
1422
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1422
|
+
props = _objectWithoutProperties(_ref, _excluded$5v);
|
|
1423
1423
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1424
1424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1425
1425
|
width: 24,
|
|
@@ -1439,7 +1439,7 @@
|
|
|
1439
1439
|
ArrowCollapseMultipleIcon.displayName = "ArrowCollapseMultipleIcon";
|
|
1440
1440
|
var ArrowCollapseMultipleIcon$1 = ArrowCollapseMultipleIcon;
|
|
1441
1441
|
|
|
1442
|
-
var _excluded$
|
|
1442
|
+
var _excluded$5u = ["gradient"];
|
|
1443
1443
|
|
|
1444
1444
|
/**
|
|
1445
1445
|
* @component ArrowDownLongIcon
|
|
@@ -1469,7 +1469,7 @@
|
|
|
1469
1469
|
*/
|
|
1470
1470
|
var ArrowDownLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1471
1471
|
var gradient = _ref.gradient,
|
|
1472
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1472
|
+
props = _objectWithoutProperties(_ref, _excluded$5u);
|
|
1473
1473
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1474
1474
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1475
1475
|
width: 24,
|
|
@@ -1489,7 +1489,7 @@
|
|
|
1489
1489
|
ArrowDownLongIcon.displayName = "ArrowDownLongIcon";
|
|
1490
1490
|
var ArrowDownLongIcon$1 = ArrowDownLongIcon;
|
|
1491
1491
|
|
|
1492
|
-
var _excluded$
|
|
1492
|
+
var _excluded$5t = ["gradient"];
|
|
1493
1493
|
|
|
1494
1494
|
/**
|
|
1495
1495
|
* @component ArrowDownSmallIcon
|
|
@@ -1519,7 +1519,7 @@
|
|
|
1519
1519
|
*/
|
|
1520
1520
|
var ArrowDownSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1521
1521
|
var gradient = _ref.gradient,
|
|
1522
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1522
|
+
props = _objectWithoutProperties(_ref, _excluded$5t);
|
|
1523
1523
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1524
1524
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1525
1525
|
width: 16,
|
|
@@ -1539,7 +1539,7 @@
|
|
|
1539
1539
|
ArrowDownSmallIcon.displayName = "ArrowDownSmallIcon";
|
|
1540
1540
|
var ArrowDownSmallIcon$1 = ArrowDownSmallIcon;
|
|
1541
1541
|
|
|
1542
|
-
var _excluded$
|
|
1542
|
+
var _excluded$5s = ["gradient"];
|
|
1543
1543
|
|
|
1544
1544
|
/**
|
|
1545
1545
|
* @component ArrowDownIcon
|
|
@@ -1569,7 +1569,7 @@
|
|
|
1569
1569
|
*/
|
|
1570
1570
|
var ArrowDownIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1571
1571
|
var gradient = _ref.gradient,
|
|
1572
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1572
|
+
props = _objectWithoutProperties(_ref, _excluded$5s);
|
|
1573
1573
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1574
1574
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1575
1575
|
width: 24,
|
|
@@ -1588,7 +1588,7 @@
|
|
|
1588
1588
|
ArrowDownIcon.displayName = "ArrowDownIcon";
|
|
1589
1589
|
var ArrowDownIcon$1 = ArrowDownIcon;
|
|
1590
1590
|
|
|
1591
|
-
var _excluded$
|
|
1591
|
+
var _excluded$5r = ["gradient"];
|
|
1592
1592
|
|
|
1593
1593
|
/**
|
|
1594
1594
|
* @component ArrowExpandeMultipleIcon
|
|
@@ -1618,7 +1618,7 @@
|
|
|
1618
1618
|
*/
|
|
1619
1619
|
var ArrowExpandeMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1620
1620
|
var gradient = _ref.gradient,
|
|
1621
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1621
|
+
props = _objectWithoutProperties(_ref, _excluded$5r);
|
|
1622
1622
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1623
1623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1624
1624
|
width: 24,
|
|
@@ -1638,7 +1638,7 @@
|
|
|
1638
1638
|
ArrowExpandeMultipleIcon.displayName = "ArrowExpandeMultipleIcon";
|
|
1639
1639
|
var ArrowExpandeMultipleIcon$1 = ArrowExpandeMultipleIcon;
|
|
1640
1640
|
|
|
1641
|
-
var _excluded$
|
|
1641
|
+
var _excluded$5q = ["gradient"];
|
|
1642
1642
|
|
|
1643
1643
|
/**
|
|
1644
1644
|
* @component ArrowLeftBoxIcon
|
|
@@ -1668,7 +1668,7 @@
|
|
|
1668
1668
|
*/
|
|
1669
1669
|
var ArrowLeftBoxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1670
1670
|
var gradient = _ref.gradient,
|
|
1671
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1671
|
+
props = _objectWithoutProperties(_ref, _excluded$5q);
|
|
1672
1672
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1673
1673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1674
1674
|
width: 24,
|
|
@@ -1688,7 +1688,7 @@
|
|
|
1688
1688
|
ArrowLeftBoxIcon.displayName = "ArrowLeftBoxIcon";
|
|
1689
1689
|
var ArrowLeftBoxIcon$1 = ArrowLeftBoxIcon;
|
|
1690
1690
|
|
|
1691
|
-
var _excluded$
|
|
1691
|
+
var _excluded$5p = ["gradient"];
|
|
1692
1692
|
|
|
1693
1693
|
/**
|
|
1694
1694
|
* @component ArrowLeftIcon
|
|
@@ -1718,7 +1718,7 @@
|
|
|
1718
1718
|
*/
|
|
1719
1719
|
var ArrowLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1720
1720
|
var gradient = _ref.gradient,
|
|
1721
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1721
|
+
props = _objectWithoutProperties(_ref, _excluded$5p);
|
|
1722
1722
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1723
1723
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1724
1724
|
width: 24,
|
|
@@ -1738,7 +1738,7 @@
|
|
|
1738
1738
|
ArrowLeftIcon.displayName = "ArrowLeftIcon";
|
|
1739
1739
|
var ArrowLeftIcon$1 = ArrowLeftIcon;
|
|
1740
1740
|
|
|
1741
|
-
var _excluded$
|
|
1741
|
+
var _excluded$5o = ["gradient"];
|
|
1742
1742
|
|
|
1743
1743
|
/**
|
|
1744
1744
|
* @component ArrowRefreshIcon
|
|
@@ -1768,7 +1768,7 @@
|
|
|
1768
1768
|
*/
|
|
1769
1769
|
var ArrowRefreshIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1770
1770
|
var gradient = _ref.gradient,
|
|
1771
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1771
|
+
props = _objectWithoutProperties(_ref, _excluded$5o);
|
|
1772
1772
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1773
1773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1774
1774
|
width: 24,
|
|
@@ -1789,7 +1789,7 @@
|
|
|
1789
1789
|
ArrowRefreshIcon.displayName = "ArrowRefreshIcon";
|
|
1790
1790
|
var ArrowRefreshIcon$1 = ArrowRefreshIcon;
|
|
1791
1791
|
|
|
1792
|
-
var _excluded$
|
|
1792
|
+
var _excluded$5n = ["gradient"];
|
|
1793
1793
|
|
|
1794
1794
|
/**
|
|
1795
1795
|
* @component ArrowRestoreIcon
|
|
@@ -1819,7 +1819,7 @@
|
|
|
1819
1819
|
*/
|
|
1820
1820
|
var ArrowRestoreIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1821
1821
|
var gradient = _ref.gradient,
|
|
1822
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1822
|
+
props = _objectWithoutProperties(_ref, _excluded$5n);
|
|
1823
1823
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1824
1824
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1825
1825
|
width: 24,
|
|
@@ -1839,7 +1839,7 @@
|
|
|
1839
1839
|
ArrowRestoreIcon.displayName = "ArrowRestoreIcon";
|
|
1840
1840
|
var ArrowRestoreIcon$1 = ArrowRestoreIcon;
|
|
1841
1841
|
|
|
1842
|
-
var _excluded$
|
|
1842
|
+
var _excluded$5m = ["gradient"];
|
|
1843
1843
|
|
|
1844
1844
|
/**
|
|
1845
1845
|
* @component ArrowRightIcon
|
|
@@ -1869,7 +1869,7 @@
|
|
|
1869
1869
|
*/
|
|
1870
1870
|
var ArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1871
1871
|
var gradient = _ref.gradient,
|
|
1872
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1872
|
+
props = _objectWithoutProperties(_ref, _excluded$5m);
|
|
1873
1873
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1874
1874
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1875
1875
|
width: 24,
|
|
@@ -1889,7 +1889,7 @@
|
|
|
1889
1889
|
ArrowRightIcon.displayName = "ArrowRightIcon";
|
|
1890
1890
|
var ArrowRightIcon$1 = ArrowRightIcon;
|
|
1891
1891
|
|
|
1892
|
-
var _excluded$
|
|
1892
|
+
var _excluded$5l = ["gradient"];
|
|
1893
1893
|
|
|
1894
1894
|
/**
|
|
1895
1895
|
* @component ArrowUpLongIcon
|
|
@@ -1919,7 +1919,7 @@
|
|
|
1919
1919
|
*/
|
|
1920
1920
|
var ArrowUpLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1921
1921
|
var gradient = _ref.gradient,
|
|
1922
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1922
|
+
props = _objectWithoutProperties(_ref, _excluded$5l);
|
|
1923
1923
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1924
1924
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1925
1925
|
width: 24,
|
|
@@ -1939,7 +1939,7 @@
|
|
|
1939
1939
|
ArrowUpLongIcon.displayName = "ArrowUpLongIcon";
|
|
1940
1940
|
var ArrowUpLongIcon$1 = ArrowUpLongIcon;
|
|
1941
1941
|
|
|
1942
|
-
var _excluded$
|
|
1942
|
+
var _excluded$5k = ["gradient"];
|
|
1943
1943
|
|
|
1944
1944
|
/**
|
|
1945
1945
|
* @component ArrowUpIcon
|
|
@@ -1969,7 +1969,7 @@
|
|
|
1969
1969
|
*/
|
|
1970
1970
|
var ArrowUpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1971
1971
|
var gradient = _ref.gradient,
|
|
1972
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1972
|
+
props = _objectWithoutProperties(_ref, _excluded$5k);
|
|
1973
1973
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1974
1974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1975
1975
|
width: 24,
|
|
@@ -1988,7 +1988,7 @@
|
|
|
1988
1988
|
ArrowUpIcon.displayName = "ArrowUpIcon";
|
|
1989
1989
|
var ArrowUpIcon$1 = ArrowUpIcon;
|
|
1990
1990
|
|
|
1991
|
-
var _excluded$
|
|
1991
|
+
var _excluded$5j = ["gradient"];
|
|
1992
1992
|
|
|
1993
1993
|
/**
|
|
1994
1994
|
* @component AssignIcon
|
|
@@ -2018,7 +2018,7 @@
|
|
|
2018
2018
|
*/
|
|
2019
2019
|
var AssignIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2020
2020
|
var gradient = _ref.gradient,
|
|
2021
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2021
|
+
props = _objectWithoutProperties(_ref, _excluded$5j);
|
|
2022
2022
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2023
2023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2024
2024
|
width: 24,
|
|
@@ -2038,7 +2038,7 @@
|
|
|
2038
2038
|
AssignIcon.displayName = "AssignIcon";
|
|
2039
2039
|
var AssignIcon$1 = AssignIcon;
|
|
2040
2040
|
|
|
2041
|
-
var _excluded$
|
|
2041
|
+
var _excluded$5i = ["gradient"];
|
|
2042
2042
|
|
|
2043
2043
|
/**
|
|
2044
2044
|
* @component AttachmentIcon
|
|
@@ -2068,7 +2068,7 @@
|
|
|
2068
2068
|
*/
|
|
2069
2069
|
var AttachmentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2070
2070
|
var gradient = _ref.gradient,
|
|
2071
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2071
|
+
props = _objectWithoutProperties(_ref, _excluded$5i);
|
|
2072
2072
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2073
2073
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2074
2074
|
width: 24,
|
|
@@ -2088,7 +2088,7 @@
|
|
|
2088
2088
|
AttachmentIcon.displayName = "AttachmentIcon";
|
|
2089
2089
|
var AttachmentIcon$1 = AttachmentIcon;
|
|
2090
2090
|
|
|
2091
|
-
var _excluded$
|
|
2091
|
+
var _excluded$5h = ["gradient"];
|
|
2092
2092
|
|
|
2093
2093
|
/**
|
|
2094
2094
|
* @component BellOffSmallIcon
|
|
@@ -2118,7 +2118,7 @@
|
|
|
2118
2118
|
*/
|
|
2119
2119
|
var BellOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2120
2120
|
var gradient = _ref.gradient,
|
|
2121
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2121
|
+
props = _objectWithoutProperties(_ref, _excluded$5h);
|
|
2122
2122
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2123
2123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2124
2124
|
width: 12,
|
|
@@ -2138,7 +2138,7 @@
|
|
|
2138
2138
|
BellOffSmallIcon.displayName = "BellOffSmallIcon";
|
|
2139
2139
|
var BellOffSmallIcon$1 = BellOffSmallIcon;
|
|
2140
2140
|
|
|
2141
|
-
var _excluded$
|
|
2141
|
+
var _excluded$5g = ["gradient"];
|
|
2142
2142
|
|
|
2143
2143
|
/**
|
|
2144
2144
|
* @component BellOffIcon
|
|
@@ -2168,7 +2168,7 @@
|
|
|
2168
2168
|
*/
|
|
2169
2169
|
var BellOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2170
2170
|
var gradient = _ref.gradient,
|
|
2171
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2171
|
+
props = _objectWithoutProperties(_ref, _excluded$5g);
|
|
2172
2172
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2173
2173
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2174
2174
|
width: 24,
|
|
@@ -2188,7 +2188,7 @@
|
|
|
2188
2188
|
BellOffIcon.displayName = "BellOffIcon";
|
|
2189
2189
|
var BellOffIcon$1 = BellOffIcon;
|
|
2190
2190
|
|
|
2191
|
-
var _excluded$
|
|
2191
|
+
var _excluded$5f = ["gradient"];
|
|
2192
2192
|
|
|
2193
2193
|
/**
|
|
2194
2194
|
* @component BillingIcon
|
|
@@ -2218,7 +2218,7 @@
|
|
|
2218
2218
|
*/
|
|
2219
2219
|
var BillingIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2220
2220
|
var gradient = _ref.gradient,
|
|
2221
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2221
|
+
props = _objectWithoutProperties(_ref, _excluded$5f);
|
|
2222
2222
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2223
2223
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2224
2224
|
width: 24,
|
|
@@ -2241,7 +2241,7 @@
|
|
|
2241
2241
|
BillingIcon.displayName = "BillingIcon";
|
|
2242
2242
|
var BillingIcon$1 = BillingIcon;
|
|
2243
2243
|
|
|
2244
|
-
var _excluded$
|
|
2244
|
+
var _excluded$5e = ["gradient"];
|
|
2245
2245
|
|
|
2246
2246
|
/**
|
|
2247
2247
|
* @component BudgetAlertIcon
|
|
@@ -2271,7 +2271,7 @@
|
|
|
2271
2271
|
*/
|
|
2272
2272
|
var BudgetAlertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2273
2273
|
var gradient = _ref.gradient,
|
|
2274
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2274
|
+
props = _objectWithoutProperties(_ref, _excluded$5e);
|
|
2275
2275
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2276
2276
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2277
2277
|
width: 24,
|
|
@@ -2291,7 +2291,7 @@
|
|
|
2291
2291
|
BudgetAlertIcon.displayName = "BudgetAlertIcon";
|
|
2292
2292
|
var BudgetAlertIcon$1 = BudgetAlertIcon;
|
|
2293
2293
|
|
|
2294
|
-
var _excluded$
|
|
2294
|
+
var _excluded$5d = ["gradient"];
|
|
2295
2295
|
|
|
2296
2296
|
/**
|
|
2297
2297
|
* @component BulbIcon
|
|
@@ -2321,7 +2321,7 @@
|
|
|
2321
2321
|
*/
|
|
2322
2322
|
var BulbIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2323
2323
|
var gradient = _ref.gradient,
|
|
2324
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2324
|
+
props = _objectWithoutProperties(_ref, _excluded$5d);
|
|
2325
2325
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2326
2326
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2327
2327
|
width: 16,
|
|
@@ -2340,7 +2340,7 @@
|
|
|
2340
2340
|
BulbIcon.displayName = "BulbIcon";
|
|
2341
2341
|
var BulbIcon$1 = BulbIcon;
|
|
2342
2342
|
|
|
2343
|
-
var _excluded$
|
|
2343
|
+
var _excluded$5c = ["gradient"];
|
|
2344
2344
|
|
|
2345
2345
|
/**
|
|
2346
2346
|
* @component CalendarAddXIcon
|
|
@@ -2370,7 +2370,7 @@
|
|
|
2370
2370
|
*/
|
|
2371
2371
|
var CalendarAddXIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2372
2372
|
var gradient = _ref.gradient,
|
|
2373
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2373
|
+
props = _objectWithoutProperties(_ref, _excluded$5c);
|
|
2374
2374
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2375
2375
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2376
2376
|
width: 24,
|
|
@@ -2390,7 +2390,7 @@
|
|
|
2390
2390
|
CalendarAddXIcon.displayName = "CalendarAddXIcon";
|
|
2391
2391
|
var CalendarAddXIcon$1 = CalendarAddXIcon;
|
|
2392
2392
|
|
|
2393
|
-
var _excluded$
|
|
2393
|
+
var _excluded$5b = ["gradient"];
|
|
2394
2394
|
|
|
2395
2395
|
/**
|
|
2396
2396
|
* @component CalendarImportIcon
|
|
@@ -2420,7 +2420,7 @@
|
|
|
2420
2420
|
*/
|
|
2421
2421
|
var CalendarImportIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2422
2422
|
var gradient = _ref.gradient,
|
|
2423
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2423
|
+
props = _objectWithoutProperties(_ref, _excluded$5b);
|
|
2424
2424
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2425
2425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2426
2426
|
width: 18,
|
|
@@ -2443,7 +2443,7 @@
|
|
|
2443
2443
|
CalendarImportIcon.displayName = "CalendarImportIcon";
|
|
2444
2444
|
var CalendarImportIcon$1 = CalendarImportIcon;
|
|
2445
2445
|
|
|
2446
|
-
var _excluded$
|
|
2446
|
+
var _excluded$5a = ["gradient"];
|
|
2447
2447
|
|
|
2448
2448
|
/**
|
|
2449
2449
|
* @component CalendarIcon
|
|
@@ -2473,7 +2473,7 @@
|
|
|
2473
2473
|
*/
|
|
2474
2474
|
var CalendarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2475
2475
|
var gradient = _ref.gradient,
|
|
2476
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2476
|
+
props = _objectWithoutProperties(_ref, _excluded$5a);
|
|
2477
2477
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2478
2478
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2479
2479
|
width: 24,
|
|
@@ -2493,7 +2493,7 @@
|
|
|
2493
2493
|
CalendarIcon.displayName = "CalendarIcon";
|
|
2494
2494
|
var CalendarIcon$1 = CalendarIcon;
|
|
2495
2495
|
|
|
2496
|
-
var _excluded$
|
|
2496
|
+
var _excluded$59 = ["gradient"];
|
|
2497
2497
|
|
|
2498
2498
|
/**
|
|
2499
2499
|
* @component CancelCrossIcon
|
|
@@ -2523,7 +2523,7 @@
|
|
|
2523
2523
|
*/
|
|
2524
2524
|
var CancelCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2525
2525
|
var gradient = _ref.gradient,
|
|
2526
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2526
|
+
props = _objectWithoutProperties(_ref, _excluded$59);
|
|
2527
2527
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2528
2528
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2529
2529
|
width: 24,
|
|
@@ -2543,7 +2543,7 @@
|
|
|
2543
2543
|
CancelCrossIcon.displayName = "CancelCrossIcon";
|
|
2544
2544
|
var CancelCrossIcon$1 = CancelCrossIcon;
|
|
2545
2545
|
|
|
2546
|
-
var _excluded$
|
|
2546
|
+
var _excluded$58 = ["gradient"];
|
|
2547
2547
|
|
|
2548
2548
|
/**
|
|
2549
2549
|
* @component CaretLeftIcon
|
|
@@ -2573,7 +2573,7 @@
|
|
|
2573
2573
|
*/
|
|
2574
2574
|
var CaretLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2575
2575
|
var gradient = _ref.gradient,
|
|
2576
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2576
|
+
props = _objectWithoutProperties(_ref, _excluded$58);
|
|
2577
2577
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2578
2578
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2579
2579
|
width: 18,
|
|
@@ -2593,7 +2593,7 @@
|
|
|
2593
2593
|
CaretLeftIcon.displayName = "CaretLeftIcon";
|
|
2594
2594
|
var CaretLeftIcon$1 = CaretLeftIcon;
|
|
2595
2595
|
|
|
2596
|
-
var _excluded$
|
|
2596
|
+
var _excluded$57 = ["gradient"];
|
|
2597
2597
|
|
|
2598
2598
|
/**
|
|
2599
2599
|
* @component CaretRightIcon
|
|
@@ -2623,7 +2623,7 @@
|
|
|
2623
2623
|
*/
|
|
2624
2624
|
var CaretRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2625
2625
|
var gradient = _ref.gradient,
|
|
2626
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2626
|
+
props = _objectWithoutProperties(_ref, _excluded$57);
|
|
2627
2627
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2628
2628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2629
2629
|
width: 18,
|
|
@@ -2643,7 +2643,7 @@
|
|
|
2643
2643
|
CaretRightIcon.displayName = "CaretRightIcon";
|
|
2644
2644
|
var CaretRightIcon$1 = CaretRightIcon;
|
|
2645
2645
|
|
|
2646
|
-
var _excluded$
|
|
2646
|
+
var _excluded$56 = ["gradient"];
|
|
2647
2647
|
|
|
2648
2648
|
/**
|
|
2649
2649
|
* @component ChatIcon
|
|
@@ -2673,7 +2673,7 @@
|
|
|
2673
2673
|
*/
|
|
2674
2674
|
var ChatIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2675
2675
|
var gradient = _ref.gradient,
|
|
2676
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2676
|
+
props = _objectWithoutProperties(_ref, _excluded$56);
|
|
2677
2677
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2678
2678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2679
2679
|
width: 24,
|
|
@@ -2693,7 +2693,7 @@
|
|
|
2693
2693
|
ChatIcon.displayName = "ChatIcon";
|
|
2694
2694
|
var ChatIcon$1 = ChatIcon;
|
|
2695
2695
|
|
|
2696
|
-
var _excluded$
|
|
2696
|
+
var _excluded$55 = ["gradient"];
|
|
2697
2697
|
|
|
2698
2698
|
/**
|
|
2699
2699
|
* @component CheckIcon
|
|
@@ -2723,7 +2723,7 @@
|
|
|
2723
2723
|
*/
|
|
2724
2724
|
var CheckIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2725
2725
|
var gradient = _ref.gradient,
|
|
2726
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2726
|
+
props = _objectWithoutProperties(_ref, _excluded$55);
|
|
2727
2727
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2728
2728
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2729
2729
|
width: 24,
|
|
@@ -2743,7 +2743,7 @@
|
|
|
2743
2743
|
CheckIcon.displayName = "CheckIcon";
|
|
2744
2744
|
var CheckIcon$1 = CheckIcon;
|
|
2745
2745
|
|
|
2746
|
-
var _excluded$
|
|
2746
|
+
var _excluded$54 = ["gradient"];
|
|
2747
2747
|
|
|
2748
2748
|
/**
|
|
2749
2749
|
* @component CheckboxBlankTogglerIcon
|
|
@@ -2773,7 +2773,7 @@
|
|
|
2773
2773
|
*/
|
|
2774
2774
|
var CheckboxBlankTogglerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2775
2775
|
var gradient = _ref.gradient,
|
|
2776
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2776
|
+
props = _objectWithoutProperties(_ref, _excluded$54);
|
|
2777
2777
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2778
2778
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2779
2779
|
width: 24,
|
|
@@ -2793,7 +2793,7 @@
|
|
|
2793
2793
|
CheckboxBlankTogglerIcon.displayName = "CheckboxBlankTogglerIcon";
|
|
2794
2794
|
var CheckboxBlankTogglerIcon$1 = CheckboxBlankTogglerIcon;
|
|
2795
2795
|
|
|
2796
|
-
var _excluded$
|
|
2796
|
+
var _excluded$53 = ["gradient"];
|
|
2797
2797
|
|
|
2798
2798
|
/**
|
|
2799
2799
|
* @component CheckboxCircleArrowIcon
|
|
@@ -2823,7 +2823,7 @@
|
|
|
2823
2823
|
*/
|
|
2824
2824
|
var CheckboxCircleArrowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2825
2825
|
var gradient = _ref.gradient,
|
|
2826
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2826
|
+
props = _objectWithoutProperties(_ref, _excluded$53);
|
|
2827
2827
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2828
2828
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2829
2829
|
width: 24,
|
|
@@ -2843,7 +2843,7 @@
|
|
|
2843
2843
|
CheckboxCircleArrowIcon.displayName = "CheckboxCircleArrowIcon";
|
|
2844
2844
|
var CheckboxCircleArrowIcon$1 = CheckboxCircleArrowIcon;
|
|
2845
2845
|
|
|
2846
|
-
var _excluded$
|
|
2846
|
+
var _excluded$52 = ["gradient"];
|
|
2847
2847
|
|
|
2848
2848
|
/**
|
|
2849
2849
|
* @component CheckboxCircleBlankIcon
|
|
@@ -2873,7 +2873,7 @@
|
|
|
2873
2873
|
*/
|
|
2874
2874
|
var CheckboxCircleBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2875
2875
|
var gradient = _ref.gradient,
|
|
2876
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2876
|
+
props = _objectWithoutProperties(_ref, _excluded$52);
|
|
2877
2877
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2878
2878
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2879
2879
|
width: 15,
|
|
@@ -2894,7 +2894,7 @@
|
|
|
2894
2894
|
CheckboxCircleBlankIcon.displayName = "CheckboxCircleBlankIcon";
|
|
2895
2895
|
var CheckboxCircleBlankIcon$1 = CheckboxCircleBlankIcon;
|
|
2896
2896
|
|
|
2897
|
-
var _excluded$
|
|
2897
|
+
var _excluded$51 = ["gradient"];
|
|
2898
2898
|
|
|
2899
2899
|
/**
|
|
2900
2900
|
* @component CheckboxDocumentsIcon
|
|
@@ -2924,7 +2924,7 @@
|
|
|
2924
2924
|
*/
|
|
2925
2925
|
var CheckboxDocumentsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2926
2926
|
var gradient = _ref.gradient,
|
|
2927
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2927
|
+
props = _objectWithoutProperties(_ref, _excluded$51);
|
|
2928
2928
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2929
2929
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2930
2930
|
width: 24,
|
|
@@ -2944,7 +2944,7 @@
|
|
|
2944
2944
|
CheckboxDocumentsIcon.displayName = "CheckboxDocumentsIcon";
|
|
2945
2945
|
var CheckboxDocumentsIcon$1 = CheckboxDocumentsIcon;
|
|
2946
2946
|
|
|
2947
|
-
var _excluded$
|
|
2947
|
+
var _excluded$50 = ["gradient"];
|
|
2948
2948
|
|
|
2949
2949
|
/**
|
|
2950
2950
|
* @component CheckboxIcon
|
|
@@ -2974,7 +2974,7 @@
|
|
|
2974
2974
|
*/
|
|
2975
2975
|
var CheckboxIcon$2 = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2976
2976
|
var gradient = _ref.gradient,
|
|
2977
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2977
|
+
props = _objectWithoutProperties(_ref, _excluded$50);
|
|
2978
2978
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2979
2979
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2980
2980
|
width: 16,
|
|
@@ -3004,7 +3004,7 @@
|
|
|
3004
3004
|
CheckboxIcon$2.displayName = "CheckboxIcon";
|
|
3005
3005
|
var CheckboxIcon$3 = CheckboxIcon$2;
|
|
3006
3006
|
|
|
3007
|
-
var _excluded$
|
|
3007
|
+
var _excluded$4$ = ["gradient"];
|
|
3008
3008
|
|
|
3009
3009
|
/**
|
|
3010
3010
|
* @component ChecklistSmallIcon
|
|
@@ -3034,7 +3034,7 @@
|
|
|
3034
3034
|
*/
|
|
3035
3035
|
var ChecklistSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3036
3036
|
var gradient = _ref.gradient,
|
|
3037
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3037
|
+
props = _objectWithoutProperties(_ref, _excluded$4$);
|
|
3038
3038
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3039
3039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3040
3040
|
width: 12,
|
|
@@ -3054,7 +3054,7 @@
|
|
|
3054
3054
|
ChecklistSmallIcon.displayName = "ChecklistSmallIcon";
|
|
3055
3055
|
var ChecklistSmallIcon$1 = ChecklistSmallIcon;
|
|
3056
3056
|
|
|
3057
|
-
var _excluded$
|
|
3057
|
+
var _excluded$4_ = ["gradient"];
|
|
3058
3058
|
|
|
3059
3059
|
/**
|
|
3060
3060
|
* @component ChecklistIcon
|
|
@@ -3084,7 +3084,7 @@
|
|
|
3084
3084
|
*/
|
|
3085
3085
|
var ChecklistIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3086
3086
|
var gradient = _ref.gradient,
|
|
3087
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3087
|
+
props = _objectWithoutProperties(_ref, _excluded$4_);
|
|
3088
3088
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3089
3089
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3090
3090
|
width: 24,
|
|
@@ -3104,7 +3104,7 @@
|
|
|
3104
3104
|
ChecklistIcon.displayName = "ChecklistIcon";
|
|
3105
3105
|
var ChecklistIcon$1 = ChecklistIcon;
|
|
3106
3106
|
|
|
3107
|
-
var _excluded$
|
|
3107
|
+
var _excluded$4Z = ["gradient"];
|
|
3108
3108
|
|
|
3109
3109
|
/**
|
|
3110
3110
|
* @component CircleDotIcon
|
|
@@ -3134,7 +3134,7 @@
|
|
|
3134
3134
|
*/
|
|
3135
3135
|
var CircleDotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3136
3136
|
var gradient = _ref.gradient,
|
|
3137
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3137
|
+
props = _objectWithoutProperties(_ref, _excluded$4Z);
|
|
3138
3138
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3139
3139
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3140
3140
|
width: 24,
|
|
@@ -3157,7 +3157,7 @@
|
|
|
3157
3157
|
CircleDotIcon.displayName = "CircleDotIcon";
|
|
3158
3158
|
var CircleDotIcon$1 = CircleDotIcon;
|
|
3159
3159
|
|
|
3160
|
-
var _excluded$
|
|
3160
|
+
var _excluded$4Y = ["gradient"];
|
|
3161
3161
|
|
|
3162
3162
|
/**
|
|
3163
3163
|
* @component CircleIcon
|
|
@@ -3187,7 +3187,7 @@
|
|
|
3187
3187
|
*/
|
|
3188
3188
|
var CircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3189
3189
|
var gradient = _ref.gradient,
|
|
3190
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3190
|
+
props = _objectWithoutProperties(_ref, _excluded$4Y);
|
|
3191
3191
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3192
3192
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3193
3193
|
width: 24,
|
|
@@ -3206,7 +3206,7 @@
|
|
|
3206
3206
|
CircleIcon.displayName = "CircleIcon";
|
|
3207
3207
|
var CircleIcon$1 = CircleIcon;
|
|
3208
3208
|
|
|
3209
|
-
var _excluded$
|
|
3209
|
+
var _excluded$4X = ["gradient"];
|
|
3210
3210
|
|
|
3211
3211
|
/**
|
|
3212
3212
|
* @component CircleSlashIcon
|
|
@@ -3240,7 +3240,7 @@
|
|
|
3240
3240
|
*/
|
|
3241
3241
|
var CircleSlashIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3242
3242
|
var gradient = _ref.gradient,
|
|
3243
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3243
|
+
props = _objectWithoutProperties(_ref, _excluded$4X);
|
|
3244
3244
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3245
3245
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3246
3246
|
width: 24,
|
|
@@ -3261,7 +3261,7 @@
|
|
|
3261
3261
|
CircleSlashIcon.displayName = "CircleSlashIcon";
|
|
3262
3262
|
var CircleSlashIcon$1 = CircleSlashIcon;
|
|
3263
3263
|
|
|
3264
|
-
var _excluded$
|
|
3264
|
+
var _excluded$4W = ["gradient"];
|
|
3265
3265
|
|
|
3266
3266
|
/**
|
|
3267
3267
|
* @component CircleMultipleIcon
|
|
@@ -3291,7 +3291,7 @@
|
|
|
3291
3291
|
*/
|
|
3292
3292
|
var CircleMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3293
3293
|
var gradient = _ref.gradient,
|
|
3294
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3294
|
+
props = _objectWithoutProperties(_ref, _excluded$4W);
|
|
3295
3295
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3296
3296
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3297
3297
|
width: 24,
|
|
@@ -3311,7 +3311,7 @@
|
|
|
3311
3311
|
CircleMultipleIcon.displayName = "CircleMultipleIcon";
|
|
3312
3312
|
var CircleMultipleIcon$1 = CircleMultipleIcon;
|
|
3313
3313
|
|
|
3314
|
-
var _excluded$
|
|
3314
|
+
var _excluded$4V = ["gradient"];
|
|
3315
3315
|
|
|
3316
3316
|
/**
|
|
3317
3317
|
* @component ClockAddIcon
|
|
@@ -3341,7 +3341,7 @@
|
|
|
3341
3341
|
*/
|
|
3342
3342
|
var ClockAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3343
3343
|
var gradient = _ref.gradient,
|
|
3344
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3344
|
+
props = _objectWithoutProperties(_ref, _excluded$4V);
|
|
3345
3345
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3346
3346
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3347
3347
|
width: 24,
|
|
@@ -3361,7 +3361,7 @@
|
|
|
3361
3361
|
ClockAddIcon.displayName = "ClockAddIcon";
|
|
3362
3362
|
var ClockAddIcon$1 = ClockAddIcon;
|
|
3363
3363
|
|
|
3364
|
-
var _excluded$
|
|
3364
|
+
var _excluded$4U = ["gradient"];
|
|
3365
3365
|
|
|
3366
3366
|
/**
|
|
3367
3367
|
* @component ClockDollarIcon
|
|
@@ -3391,7 +3391,7 @@
|
|
|
3391
3391
|
*/
|
|
3392
3392
|
var ClockDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3393
3393
|
var gradient = _ref.gradient,
|
|
3394
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3394
|
+
props = _objectWithoutProperties(_ref, _excluded$4U);
|
|
3395
3395
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3396
3396
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3397
3397
|
width: 24,
|
|
@@ -3414,7 +3414,7 @@
|
|
|
3414
3414
|
ClockDollarIcon.displayName = "ClockDollarIcon";
|
|
3415
3415
|
var ClockDollarIcon$1 = ClockDollarIcon;
|
|
3416
3416
|
|
|
3417
|
-
var _excluded$
|
|
3417
|
+
var _excluded$4T = ["gradient"];
|
|
3418
3418
|
|
|
3419
3419
|
/**
|
|
3420
3420
|
* @component ClockSmallIcon
|
|
@@ -3444,7 +3444,7 @@
|
|
|
3444
3444
|
*/
|
|
3445
3445
|
var ClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3446
3446
|
var gradient = _ref.gradient,
|
|
3447
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3447
|
+
props = _objectWithoutProperties(_ref, _excluded$4T);
|
|
3448
3448
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3449
3449
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3450
3450
|
width: 12,
|
|
@@ -3464,7 +3464,7 @@
|
|
|
3464
3464
|
ClockSmallIcon.displayName = "ClockSmallIcon";
|
|
3465
3465
|
var ClockSmallIcon$1 = ClockSmallIcon;
|
|
3466
3466
|
|
|
3467
|
-
var _excluded$
|
|
3467
|
+
var _excluded$4S = ["gradient"];
|
|
3468
3468
|
|
|
3469
3469
|
/**
|
|
3470
3470
|
* @component ClockStopwatchIndicatorIcon
|
|
@@ -3494,7 +3494,7 @@
|
|
|
3494
3494
|
*/
|
|
3495
3495
|
var ClockStopwatchIndicatorIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3496
3496
|
var gradient = _ref.gradient,
|
|
3497
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3497
|
+
props = _objectWithoutProperties(_ref, _excluded$4S);
|
|
3498
3498
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3499
3499
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3500
3500
|
width: 24,
|
|
@@ -3515,7 +3515,7 @@
|
|
|
3515
3515
|
ClockStopwatchIndicatorIcon.displayName = "ClockStopwatchIndicatorIcon";
|
|
3516
3516
|
var ClockStopwatchIndicatorIcon$1 = ClockStopwatchIndicatorIcon;
|
|
3517
3517
|
|
|
3518
|
-
var _excluded$
|
|
3518
|
+
var _excluded$4R = ["gradient"];
|
|
3519
3519
|
|
|
3520
3520
|
/**
|
|
3521
3521
|
* @component ClockStopwatchSmallIcon
|
|
@@ -3545,7 +3545,7 @@
|
|
|
3545
3545
|
*/
|
|
3546
3546
|
var ClockStopwatchSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3547
3547
|
var gradient = _ref.gradient,
|
|
3548
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3548
|
+
props = _objectWithoutProperties(_ref, _excluded$4R);
|
|
3549
3549
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3550
3550
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3551
3551
|
width: 12,
|
|
@@ -3565,7 +3565,7 @@
|
|
|
3565
3565
|
ClockStopwatchSmallIcon.displayName = "ClockStopwatchSmallIcon";
|
|
3566
3566
|
var ClockStopwatchSmallIcon$1 = ClockStopwatchSmallIcon;
|
|
3567
3567
|
|
|
3568
|
-
var _excluded$
|
|
3568
|
+
var _excluded$4Q = ["gradient"];
|
|
3569
3569
|
|
|
3570
3570
|
/**
|
|
3571
3571
|
* @component ClockStopwatchIcon
|
|
@@ -3595,7 +3595,7 @@
|
|
|
3595
3595
|
*/
|
|
3596
3596
|
var ClockStopwatchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3597
3597
|
var gradient = _ref.gradient,
|
|
3598
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3598
|
+
props = _objectWithoutProperties(_ref, _excluded$4Q);
|
|
3599
3599
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3600
3600
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3601
3601
|
width: 24,
|
|
@@ -3615,7 +3615,7 @@
|
|
|
3615
3615
|
ClockStopwatchIcon.displayName = "ClockStopwatchIcon";
|
|
3616
3616
|
var ClockStopwatchIcon$1 = ClockStopwatchIcon;
|
|
3617
3617
|
|
|
3618
|
-
var _excluded$
|
|
3618
|
+
var _excluded$4P = ["gradient"];
|
|
3619
3619
|
|
|
3620
3620
|
/**
|
|
3621
3621
|
* @component ClockIcon
|
|
@@ -3645,7 +3645,7 @@
|
|
|
3645
3645
|
*/
|
|
3646
3646
|
var ClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3647
3647
|
var gradient = _ref.gradient,
|
|
3648
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3648
|
+
props = _objectWithoutProperties(_ref, _excluded$4P);
|
|
3649
3649
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3650
3650
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3651
3651
|
width: 24,
|
|
@@ -3665,7 +3665,7 @@
|
|
|
3665
3665
|
ClockIcon.displayName = "ClockIcon";
|
|
3666
3666
|
var ClockIcon$1 = ClockIcon;
|
|
3667
3667
|
|
|
3668
|
-
var _excluded$
|
|
3668
|
+
var _excluded$4O = ["gradient"];
|
|
3669
3669
|
|
|
3670
3670
|
/**
|
|
3671
3671
|
* @component CloseCircleIcon
|
|
@@ -3695,7 +3695,7 @@
|
|
|
3695
3695
|
*/
|
|
3696
3696
|
var CloseCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3697
3697
|
var gradient = _ref.gradient,
|
|
3698
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3698
|
+
props = _objectWithoutProperties(_ref, _excluded$4O);
|
|
3699
3699
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3700
3700
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3701
3701
|
width: 24,
|
|
@@ -3716,7 +3716,7 @@
|
|
|
3716
3716
|
CloseCircleIcon.displayName = "CloseCircleIcon";
|
|
3717
3717
|
var CloseCircleIcon$1 = CloseCircleIcon;
|
|
3718
3718
|
|
|
3719
|
-
var _excluded$
|
|
3719
|
+
var _excluded$4N = ["gradient"];
|
|
3720
3720
|
|
|
3721
3721
|
/**
|
|
3722
3722
|
* @component CloseDocumentIcon
|
|
@@ -3746,7 +3746,7 @@
|
|
|
3746
3746
|
*/
|
|
3747
3747
|
var CloseDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3748
3748
|
var gradient = _ref.gradient,
|
|
3749
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3749
|
+
props = _objectWithoutProperties(_ref, _excluded$4N);
|
|
3750
3750
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3751
3751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3752
3752
|
width: 24,
|
|
@@ -3766,7 +3766,7 @@
|
|
|
3766
3766
|
CloseDocumentIcon.displayName = "CloseDocumentIcon";
|
|
3767
3767
|
var CloseDocumentIcon$1 = CloseDocumentIcon;
|
|
3768
3768
|
|
|
3769
|
-
var _excluded$
|
|
3769
|
+
var _excluded$4M = ["gradient"];
|
|
3770
3770
|
|
|
3771
3771
|
/**
|
|
3772
3772
|
* @component CloseSmallIcon
|
|
@@ -3796,7 +3796,7 @@
|
|
|
3796
3796
|
*/
|
|
3797
3797
|
var CloseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3798
3798
|
var gradient = _ref.gradient,
|
|
3799
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3799
|
+
props = _objectWithoutProperties(_ref, _excluded$4M);
|
|
3800
3800
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3801
3801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3802
3802
|
width: 24,
|
|
@@ -3816,7 +3816,7 @@
|
|
|
3816
3816
|
CloseSmallIcon.displayName = "CloseSmallIcon";
|
|
3817
3817
|
var CloseSmallIcon$1 = CloseSmallIcon;
|
|
3818
3818
|
|
|
3819
|
-
var _excluded$
|
|
3819
|
+
var _excluded$4L = ["gradient"];
|
|
3820
3820
|
|
|
3821
3821
|
/**
|
|
3822
3822
|
* @component CloseIcon
|
|
@@ -3846,7 +3846,7 @@
|
|
|
3846
3846
|
*/
|
|
3847
3847
|
var CloseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3848
3848
|
var gradient = _ref.gradient,
|
|
3849
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3849
|
+
props = _objectWithoutProperties(_ref, _excluded$4L);
|
|
3850
3850
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3851
3851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3852
3852
|
width: 24,
|
|
@@ -3867,7 +3867,7 @@
|
|
|
3867
3867
|
CloseIcon.displayName = "CloseIcon";
|
|
3868
3868
|
var CloseIcon$1 = CloseIcon;
|
|
3869
3869
|
|
|
3870
|
-
var _excluded$
|
|
3870
|
+
var _excluded$4K = ["gradient"];
|
|
3871
3871
|
|
|
3872
3872
|
/**
|
|
3873
3873
|
* @component CloudIcon
|
|
@@ -3880,7 +3880,7 @@
|
|
|
3880
3880
|
*/
|
|
3881
3881
|
var CloudIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3882
3882
|
var gradient = _ref.gradient,
|
|
3883
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3883
|
+
props = _objectWithoutProperties(_ref, _excluded$4K);
|
|
3884
3884
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3885
3885
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3886
3886
|
width: 24,
|
|
@@ -3903,7 +3903,7 @@
|
|
|
3903
3903
|
CloudIcon.displayName = "CloudIcon";
|
|
3904
3904
|
var CloudIcon$1 = CloudIcon;
|
|
3905
3905
|
|
|
3906
|
-
var _excluded$
|
|
3906
|
+
var _excluded$4J = ["gradient"];
|
|
3907
3907
|
|
|
3908
3908
|
/**
|
|
3909
3909
|
* @component CloudDeployIcon
|
|
@@ -3918,7 +3918,7 @@
|
|
|
3918
3918
|
*/
|
|
3919
3919
|
var CloudDeployIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3920
3920
|
var gradient = _ref.gradient,
|
|
3921
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3921
|
+
props = _objectWithoutProperties(_ref, _excluded$4J);
|
|
3922
3922
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3923
3923
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3924
3924
|
width: 24,
|
|
@@ -3945,7 +3945,7 @@
|
|
|
3945
3945
|
CloudDeployIcon.displayName = "CloudDeployIcon";
|
|
3946
3946
|
var CloudDeployIcon$1 = CloudDeployIcon;
|
|
3947
3947
|
|
|
3948
|
-
var _excluded$
|
|
3948
|
+
var _excluded$4I = ["gradient"];
|
|
3949
3949
|
|
|
3950
3950
|
/**
|
|
3951
3951
|
* @component CloudDeployFailedIcon
|
|
@@ -3960,7 +3960,7 @@
|
|
|
3960
3960
|
*/
|
|
3961
3961
|
var CloudDeployFailedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3962
3962
|
var gradient = _ref.gradient,
|
|
3963
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3963
|
+
props = _objectWithoutProperties(_ref, _excluded$4I);
|
|
3964
3964
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3965
3965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3966
3966
|
width: 24,
|
|
@@ -3987,7 +3987,7 @@
|
|
|
3987
3987
|
CloudDeployFailedIcon.displayName = "CloudDeployFailedIcon";
|
|
3988
3988
|
var CloudDeployFailedIcon$1 = CloudDeployFailedIcon;
|
|
3989
3989
|
|
|
3990
|
-
var _excluded$
|
|
3990
|
+
var _excluded$4H = ["gradient"];
|
|
3991
3991
|
|
|
3992
3992
|
/**
|
|
3993
3993
|
* @component CollapsIcon
|
|
@@ -4017,7 +4017,7 @@
|
|
|
4017
4017
|
*/
|
|
4018
4018
|
var CollapsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4019
4019
|
var gradient = _ref.gradient,
|
|
4020
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4020
|
+
props = _objectWithoutProperties(_ref, _excluded$4H);
|
|
4021
4021
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4022
4022
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4023
4023
|
width: 6,
|
|
@@ -4037,7 +4037,7 @@
|
|
|
4037
4037
|
CollapsIcon.displayName = "CollapsIcon";
|
|
4038
4038
|
var CollapsIcon$1 = CollapsIcon;
|
|
4039
4039
|
|
|
4040
|
-
var _excluded$
|
|
4040
|
+
var _excluded$4G = ["gradient"];
|
|
4041
4041
|
|
|
4042
4042
|
/**
|
|
4043
4043
|
* @component CollapseAllIcon
|
|
@@ -4067,7 +4067,7 @@
|
|
|
4067
4067
|
*/
|
|
4068
4068
|
var CollapseAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4069
4069
|
var gradient = _ref.gradient,
|
|
4070
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4070
|
+
props = _objectWithoutProperties(_ref, _excluded$4G);
|
|
4071
4071
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4072
4072
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4073
4073
|
width: 24,
|
|
@@ -4087,7 +4087,7 @@
|
|
|
4087
4087
|
CollapseAllIcon.displayName = "CollapseAllIcon";
|
|
4088
4088
|
var CollapseAllIcon$1 = CollapseAllIcon;
|
|
4089
4089
|
|
|
4090
|
-
var _excluded$
|
|
4090
|
+
var _excluded$4F = ["gradient"];
|
|
4091
4091
|
|
|
4092
4092
|
/**
|
|
4093
4093
|
* @component CollapseExpandSingleIcon
|
|
@@ -4117,7 +4117,7 @@
|
|
|
4117
4117
|
*/
|
|
4118
4118
|
var CollapseExpandSingleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4119
4119
|
var gradient = _ref.gradient,
|
|
4120
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4120
|
+
props = _objectWithoutProperties(_ref, _excluded$4F);
|
|
4121
4121
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4122
4122
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4123
4123
|
width: 24,
|
|
@@ -4137,7 +4137,7 @@
|
|
|
4137
4137
|
CollapseExpandSingleIcon.displayName = "CollapseExpandSingleIcon";
|
|
4138
4138
|
var CollapseExpandSingleIcon$1 = CollapseExpandSingleIcon;
|
|
4139
4139
|
|
|
4140
|
-
var _excluded$
|
|
4140
|
+
var _excluded$4E = ["gradient"];
|
|
4141
4141
|
|
|
4142
4142
|
/**
|
|
4143
4143
|
* @component CompanyAddIcon
|
|
@@ -4167,7 +4167,7 @@
|
|
|
4167
4167
|
*/
|
|
4168
4168
|
var CompanyAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4169
4169
|
var gradient = _ref.gradient,
|
|
4170
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4170
|
+
props = _objectWithoutProperties(_ref, _excluded$4E);
|
|
4171
4171
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4172
4172
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4173
4173
|
width: 18,
|
|
@@ -4188,7 +4188,7 @@
|
|
|
4188
4188
|
CompanyAddIcon.displayName = "CompanyAddIcon";
|
|
4189
4189
|
var CompanyAddIcon$1 = CompanyAddIcon;
|
|
4190
4190
|
|
|
4191
|
-
var _excluded$
|
|
4191
|
+
var _excluded$4D = ["gradient"];
|
|
4192
4192
|
|
|
4193
4193
|
/**
|
|
4194
4194
|
* @component CompanyIcon
|
|
@@ -4218,7 +4218,7 @@
|
|
|
4218
4218
|
*/
|
|
4219
4219
|
var CompanyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4220
4220
|
var gradient = _ref.gradient,
|
|
4221
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4221
|
+
props = _objectWithoutProperties(_ref, _excluded$4D);
|
|
4222
4222
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4223
4223
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4224
4224
|
width: 24,
|
|
@@ -4239,7 +4239,7 @@
|
|
|
4239
4239
|
CompanyIcon.displayName = "CompanyIcon";
|
|
4240
4240
|
var CompanyIcon$1 = CompanyIcon;
|
|
4241
4241
|
|
|
4242
|
-
var _excluded$
|
|
4242
|
+
var _excluded$4C = ["gradient"];
|
|
4243
4243
|
|
|
4244
4244
|
/**
|
|
4245
4245
|
* @component ComputerIcon
|
|
@@ -4269,7 +4269,7 @@
|
|
|
4269
4269
|
*/
|
|
4270
4270
|
var ComputerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4271
4271
|
var gradient = _ref.gradient,
|
|
4272
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4272
|
+
props = _objectWithoutProperties(_ref, _excluded$4C);
|
|
4273
4273
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4274
4274
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4275
4275
|
width: 24,
|
|
@@ -4289,7 +4289,7 @@
|
|
|
4289
4289
|
ComputerIcon.displayName = "ComputerIcon";
|
|
4290
4290
|
var ComputerIcon$1 = ComputerIcon;
|
|
4291
4291
|
|
|
4292
|
-
var _excluded$
|
|
4292
|
+
var _excluded$4B = ["gradient"];
|
|
4293
4293
|
|
|
4294
4294
|
/**
|
|
4295
4295
|
* @component ConnectionIcon
|
|
@@ -4319,7 +4319,7 @@
|
|
|
4319
4319
|
*/
|
|
4320
4320
|
var ConnectionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4321
4321
|
var gradient = _ref.gradient,
|
|
4322
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4322
|
+
props = _objectWithoutProperties(_ref, _excluded$4B);
|
|
4323
4323
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4324
4324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4325
4325
|
width: 24,
|
|
@@ -4346,7 +4346,7 @@
|
|
|
4346
4346
|
ConnectionIcon.displayName = "ConnectionIcon";
|
|
4347
4347
|
var ConnectionIcon$1 = ConnectionIcon;
|
|
4348
4348
|
|
|
4349
|
-
var _excluded$
|
|
4349
|
+
var _excluded$4A = ["gradient"];
|
|
4350
4350
|
|
|
4351
4351
|
/**
|
|
4352
4352
|
* @component CopyIcon
|
|
@@ -4376,7 +4376,7 @@
|
|
|
4376
4376
|
*/
|
|
4377
4377
|
var CopyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4378
4378
|
var gradient = _ref.gradient,
|
|
4379
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4379
|
+
props = _objectWithoutProperties(_ref, _excluded$4A);
|
|
4380
4380
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4381
4381
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4382
4382
|
width: 24,
|
|
@@ -4396,7 +4396,7 @@
|
|
|
4396
4396
|
CopyIcon.displayName = "CopyIcon";
|
|
4397
4397
|
var CopyIcon$1 = CopyIcon;
|
|
4398
4398
|
|
|
4399
|
-
var _excluded$
|
|
4399
|
+
var _excluded$4z = ["gradient"];
|
|
4400
4400
|
|
|
4401
4401
|
/**
|
|
4402
4402
|
* @component CrownBlankIcon
|
|
@@ -4426,7 +4426,7 @@
|
|
|
4426
4426
|
*/
|
|
4427
4427
|
var CrownBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4428
4428
|
var gradient = _ref.gradient,
|
|
4429
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4429
|
+
props = _objectWithoutProperties(_ref, _excluded$4z);
|
|
4430
4430
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4431
4431
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4432
4432
|
width: 24,
|
|
@@ -4446,7 +4446,7 @@
|
|
|
4446
4446
|
CrownBlankIcon.displayName = "CrownBlankIcon";
|
|
4447
4447
|
var CrownBlankIcon$1 = CrownBlankIcon;
|
|
4448
4448
|
|
|
4449
|
-
var _excluded$
|
|
4449
|
+
var _excluded$4y = ["gradient"];
|
|
4450
4450
|
|
|
4451
4451
|
/**
|
|
4452
4452
|
* @component CrownSelectedIcon
|
|
@@ -4476,7 +4476,7 @@
|
|
|
4476
4476
|
*/
|
|
4477
4477
|
var CrownSelectedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4478
4478
|
var gradient = _ref.gradient,
|
|
4479
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4479
|
+
props = _objectWithoutProperties(_ref, _excluded$4y);
|
|
4480
4480
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4481
4481
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4482
4482
|
width: 24,
|
|
@@ -4496,7 +4496,7 @@
|
|
|
4496
4496
|
CrownSelectedIcon.displayName = "CrownSelectedIcon";
|
|
4497
4497
|
var CrownSelectedIcon$1 = CrownSelectedIcon;
|
|
4498
4498
|
|
|
4499
|
-
var _excluded$
|
|
4499
|
+
var _excluded$4x = ["gradient"];
|
|
4500
4500
|
|
|
4501
4501
|
/**
|
|
4502
4502
|
* @component DependencySmallIcon
|
|
@@ -4526,7 +4526,7 @@
|
|
|
4526
4526
|
*/
|
|
4527
4527
|
var DependencySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4528
4528
|
var gradient = _ref.gradient,
|
|
4529
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4529
|
+
props = _objectWithoutProperties(_ref, _excluded$4x);
|
|
4530
4530
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4531
4531
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4532
4532
|
width: 12,
|
|
@@ -4546,7 +4546,7 @@
|
|
|
4546
4546
|
DependencySmallIcon.displayName = "DependencySmallIcon";
|
|
4547
4547
|
var DependencySmallIcon$1 = DependencySmallIcon;
|
|
4548
4548
|
|
|
4549
|
-
var _excluded$
|
|
4549
|
+
var _excluded$4w = ["gradient"];
|
|
4550
4550
|
|
|
4551
4551
|
/**
|
|
4552
4552
|
* @component DependencyIcon
|
|
@@ -4576,7 +4576,7 @@
|
|
|
4576
4576
|
*/
|
|
4577
4577
|
var DependencyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4578
4578
|
var gradient = _ref.gradient,
|
|
4579
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4579
|
+
props = _objectWithoutProperties(_ref, _excluded$4w);
|
|
4580
4580
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4581
4581
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4582
4582
|
width: 24,
|
|
@@ -4596,7 +4596,7 @@
|
|
|
4596
4596
|
DependencyIcon.displayName = "DependencyIcon";
|
|
4597
4597
|
var DependencyIcon$1 = DependencyIcon;
|
|
4598
4598
|
|
|
4599
|
-
var _excluded$
|
|
4599
|
+
var _excluded$4v = ["gradient"];
|
|
4600
4600
|
|
|
4601
4601
|
/**
|
|
4602
4602
|
* @component DescriptionSmallIcon
|
|
@@ -4626,7 +4626,7 @@
|
|
|
4626
4626
|
*/
|
|
4627
4627
|
var DescriptionSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4628
4628
|
var gradient = _ref.gradient,
|
|
4629
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4629
|
+
props = _objectWithoutProperties(_ref, _excluded$4v);
|
|
4630
4630
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4631
4631
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4632
4632
|
width: 18,
|
|
@@ -4647,7 +4647,7 @@
|
|
|
4647
4647
|
DescriptionSmallIcon.displayName = "DescriptionSmallIcon";
|
|
4648
4648
|
var DescriptionSmallIcon$1 = DescriptionSmallIcon;
|
|
4649
4649
|
|
|
4650
|
-
var _excluded$
|
|
4650
|
+
var _excluded$4u = ["gradient"];
|
|
4651
4651
|
|
|
4652
4652
|
/**
|
|
4653
4653
|
* @component DescriptionIcon
|
|
@@ -4677,7 +4677,7 @@
|
|
|
4677
4677
|
*/
|
|
4678
4678
|
var DescriptionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4679
4679
|
var gradient = _ref.gradient,
|
|
4680
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4680
|
+
props = _objectWithoutProperties(_ref, _excluded$4u);
|
|
4681
4681
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4682
4682
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4683
4683
|
width: 24,
|
|
@@ -4697,7 +4697,7 @@
|
|
|
4697
4697
|
DescriptionIcon.displayName = "DescriptionIcon";
|
|
4698
4698
|
var DescriptionIcon$1 = DescriptionIcon;
|
|
4699
4699
|
|
|
4700
|
-
var _excluded$
|
|
4700
|
+
var _excluded$4t = ["gradient"];
|
|
4701
4701
|
|
|
4702
4702
|
/**
|
|
4703
4703
|
* @component DiscussionAddIcon
|
|
@@ -4727,7 +4727,7 @@
|
|
|
4727
4727
|
*/
|
|
4728
4728
|
var DiscussionAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4729
4729
|
var gradient = _ref.gradient,
|
|
4730
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4730
|
+
props = _objectWithoutProperties(_ref, _excluded$4t);
|
|
4731
4731
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4732
4732
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4733
4733
|
width: 24,
|
|
@@ -4747,7 +4747,7 @@
|
|
|
4747
4747
|
DiscussionAddIcon.displayName = "DiscussionAddIcon";
|
|
4748
4748
|
var DiscussionAddIcon$1 = DiscussionAddIcon;
|
|
4749
4749
|
|
|
4750
|
-
var _excluded$
|
|
4750
|
+
var _excluded$4s = ["gradient"];
|
|
4751
4751
|
|
|
4752
4752
|
/**
|
|
4753
4753
|
* @component DiscussionIcon
|
|
@@ -4777,7 +4777,7 @@
|
|
|
4777
4777
|
*/
|
|
4778
4778
|
var DiscussionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4779
4779
|
var gradient = _ref.gradient,
|
|
4780
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4780
|
+
props = _objectWithoutProperties(_ref, _excluded$4s);
|
|
4781
4781
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4782
4782
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4783
4783
|
width: 24,
|
|
@@ -4798,7 +4798,7 @@
|
|
|
4798
4798
|
DiscussionIcon.displayName = "DiscussionIcon";
|
|
4799
4799
|
var DiscussionIcon$1 = DiscussionIcon;
|
|
4800
4800
|
|
|
4801
|
-
var _excluded$
|
|
4801
|
+
var _excluded$4r = ["gradient"];
|
|
4802
4802
|
|
|
4803
4803
|
/**
|
|
4804
4804
|
* @component DollarCheckmarkSmallIcon
|
|
@@ -4828,7 +4828,7 @@
|
|
|
4828
4828
|
*/
|
|
4829
4829
|
var DollarCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4830
4830
|
var gradient = _ref.gradient,
|
|
4831
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4831
|
+
props = _objectWithoutProperties(_ref, _excluded$4r);
|
|
4832
4832
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4833
4833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4834
4834
|
width: 12,
|
|
@@ -4848,7 +4848,7 @@
|
|
|
4848
4848
|
DollarCheckmarkSmallIcon.displayName = "DollarCheckmarkSmallIcon";
|
|
4849
4849
|
var DollarCheckmarkSmallIcon$1 = DollarCheckmarkSmallIcon;
|
|
4850
4850
|
|
|
4851
|
-
var _excluded$
|
|
4851
|
+
var _excluded$4q = ["gradient"];
|
|
4852
4852
|
|
|
4853
4853
|
/**
|
|
4854
4854
|
* @component DollarCheckmarkIcon
|
|
@@ -4878,7 +4878,7 @@
|
|
|
4878
4878
|
*/
|
|
4879
4879
|
var DollarCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4880
4880
|
var gradient = _ref.gradient,
|
|
4881
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4881
|
+
props = _objectWithoutProperties(_ref, _excluded$4q);
|
|
4882
4882
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4883
4883
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4884
4884
|
width: 24,
|
|
@@ -4898,7 +4898,7 @@
|
|
|
4898
4898
|
DollarCheckmarkIcon.displayName = "DollarCheckmarkIcon";
|
|
4899
4899
|
var DollarCheckmarkIcon$1 = DollarCheckmarkIcon;
|
|
4900
4900
|
|
|
4901
|
-
var _excluded$
|
|
4901
|
+
var _excluded$4p = ["gradient"];
|
|
4902
4902
|
|
|
4903
4903
|
/**
|
|
4904
4904
|
* @component DollarClockSmallIcon
|
|
@@ -4928,7 +4928,7 @@
|
|
|
4928
4928
|
*/
|
|
4929
4929
|
var DollarClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4930
4930
|
var gradient = _ref.gradient,
|
|
4931
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4931
|
+
props = _objectWithoutProperties(_ref, _excluded$4p);
|
|
4932
4932
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4933
4933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4934
4934
|
width: 12,
|
|
@@ -4948,7 +4948,7 @@
|
|
|
4948
4948
|
DollarClockSmallIcon.displayName = "DollarClockSmallIcon";
|
|
4949
4949
|
var DollarClockSmallIcon$1 = DollarClockSmallIcon;
|
|
4950
4950
|
|
|
4951
|
-
var _excluded$
|
|
4951
|
+
var _excluded$4o = ["gradient"];
|
|
4952
4952
|
|
|
4953
4953
|
/**
|
|
4954
4954
|
* @component DollarClockIcon
|
|
@@ -4978,7 +4978,7 @@
|
|
|
4978
4978
|
*/
|
|
4979
4979
|
var DollarClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4980
4980
|
var gradient = _ref.gradient,
|
|
4981
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4981
|
+
props = _objectWithoutProperties(_ref, _excluded$4o);
|
|
4982
4982
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4983
4983
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4984
4984
|
width: 24,
|
|
@@ -4998,7 +4998,7 @@
|
|
|
4998
4998
|
DollarClockIcon.displayName = "DollarClockIcon";
|
|
4999
4999
|
var DollarClockIcon$1 = DollarClockIcon;
|
|
5000
5000
|
|
|
5001
|
-
var _excluded$
|
|
5001
|
+
var _excluded$4n = ["gradient"];
|
|
5002
5002
|
|
|
5003
5003
|
/**
|
|
5004
5004
|
* @component DollarDocumentPlusIcon
|
|
@@ -5028,7 +5028,7 @@
|
|
|
5028
5028
|
*/
|
|
5029
5029
|
var DollarDocumentPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5030
5030
|
var gradient = _ref.gradient,
|
|
5031
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5031
|
+
props = _objectWithoutProperties(_ref, _excluded$4n);
|
|
5032
5032
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5033
5033
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5034
5034
|
width: 24,
|
|
@@ -5048,7 +5048,7 @@
|
|
|
5048
5048
|
DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
|
|
5049
5049
|
var DollarDocumentPlusIcon$1 = DollarDocumentPlusIcon;
|
|
5050
5050
|
|
|
5051
|
-
var _excluded$
|
|
5051
|
+
var _excluded$4m = ["gradient"];
|
|
5052
5052
|
|
|
5053
5053
|
/**
|
|
5054
5054
|
* @component DollarDocumentIcon
|
|
@@ -5078,7 +5078,7 @@
|
|
|
5078
5078
|
*/
|
|
5079
5079
|
var DollarDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5080
5080
|
var gradient = _ref.gradient,
|
|
5081
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5081
|
+
props = _objectWithoutProperties(_ref, _excluded$4m);
|
|
5082
5082
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5083
5083
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5084
5084
|
width: 24,
|
|
@@ -5099,7 +5099,7 @@
|
|
|
5099
5099
|
DollarDocumentIcon.displayName = "DollarDocumentIcon";
|
|
5100
5100
|
var DollarDocumentIcon$1 = DollarDocumentIcon;
|
|
5101
5101
|
|
|
5102
|
-
var _excluded$
|
|
5102
|
+
var _excluded$4l = ["gradient"];
|
|
5103
5103
|
|
|
5104
5104
|
/**
|
|
5105
5105
|
* @component DollarOffSmallIcon
|
|
@@ -5129,7 +5129,7 @@
|
|
|
5129
5129
|
*/
|
|
5130
5130
|
var DollarOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5131
5131
|
var gradient = _ref.gradient,
|
|
5132
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5132
|
+
props = _objectWithoutProperties(_ref, _excluded$4l);
|
|
5133
5133
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5134
5134
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5135
5135
|
width: 12,
|
|
@@ -5149,7 +5149,7 @@
|
|
|
5149
5149
|
DollarOffSmallIcon.displayName = "DollarOffSmallIcon";
|
|
5150
5150
|
var DollarOffSmallIcon$1 = DollarOffSmallIcon;
|
|
5151
5151
|
|
|
5152
|
-
var _excluded$
|
|
5152
|
+
var _excluded$4k = ["gradient"];
|
|
5153
5153
|
|
|
5154
5154
|
/**
|
|
5155
5155
|
* @component DollarOffIcon
|
|
@@ -5179,7 +5179,7 @@
|
|
|
5179
5179
|
*/
|
|
5180
5180
|
var DollarOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5181
5181
|
var gradient = _ref.gradient,
|
|
5182
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5182
|
+
props = _objectWithoutProperties(_ref, _excluded$4k);
|
|
5183
5183
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5184
5184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5185
5185
|
width: 24,
|
|
@@ -5199,7 +5199,7 @@
|
|
|
5199
5199
|
DollarOffIcon.displayName = "DollarOffIcon";
|
|
5200
5200
|
var DollarOffIcon$1 = DollarOffIcon;
|
|
5201
5201
|
|
|
5202
|
-
var _excluded$
|
|
5202
|
+
var _excluded$4j = ["gradient"];
|
|
5203
5203
|
|
|
5204
5204
|
/**
|
|
5205
5205
|
* @component DollarSmallIcon
|
|
@@ -5229,7 +5229,7 @@
|
|
|
5229
5229
|
*/
|
|
5230
5230
|
var DollarSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5231
5231
|
var gradient = _ref.gradient,
|
|
5232
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5232
|
+
props = _objectWithoutProperties(_ref, _excluded$4j);
|
|
5233
5233
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5234
5234
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5235
5235
|
width: 12,
|
|
@@ -5249,7 +5249,7 @@
|
|
|
5249
5249
|
DollarSmallIcon.displayName = "DollarSmallIcon";
|
|
5250
5250
|
var DollarSmallIcon$1 = DollarSmallIcon;
|
|
5251
5251
|
|
|
5252
|
-
var _excluded$
|
|
5252
|
+
var _excluded$4i = ["gradient"];
|
|
5253
5253
|
|
|
5254
5254
|
/**
|
|
5255
5255
|
* @component DollarIcon
|
|
@@ -5279,7 +5279,7 @@
|
|
|
5279
5279
|
*/
|
|
5280
5280
|
var DollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5281
5281
|
var gradient = _ref.gradient,
|
|
5282
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5282
|
+
props = _objectWithoutProperties(_ref, _excluded$4i);
|
|
5283
5283
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5284
5284
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5285
5285
|
width: 24,
|
|
@@ -5299,7 +5299,7 @@
|
|
|
5299
5299
|
DollarIcon.displayName = "DollarIcon";
|
|
5300
5300
|
var DollarIcon$1 = DollarIcon;
|
|
5301
5301
|
|
|
5302
|
-
var _excluded$
|
|
5302
|
+
var _excluded$4h = ["gradient"];
|
|
5303
5303
|
|
|
5304
5304
|
/**
|
|
5305
5305
|
* @component DownloadIcon
|
|
@@ -5329,7 +5329,7 @@
|
|
|
5329
5329
|
*/
|
|
5330
5330
|
var DownloadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5331
5331
|
var gradient = _ref.gradient,
|
|
5332
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5332
|
+
props = _objectWithoutProperties(_ref, _excluded$4h);
|
|
5333
5333
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5334
5334
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5335
5335
|
width: 24,
|
|
@@ -5349,7 +5349,7 @@
|
|
|
5349
5349
|
DownloadIcon.displayName = "DownloadIcon";
|
|
5350
5350
|
var DownloadIcon$1 = DownloadIcon;
|
|
5351
5351
|
|
|
5352
|
-
var _excluded$
|
|
5352
|
+
var _excluded$4g = ["gradient"];
|
|
5353
5353
|
|
|
5354
5354
|
/**
|
|
5355
5355
|
* @component DrawIcon
|
|
@@ -5379,7 +5379,7 @@
|
|
|
5379
5379
|
*/
|
|
5380
5380
|
var DrawIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5381
5381
|
var gradient = _ref.gradient,
|
|
5382
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5382
|
+
props = _objectWithoutProperties(_ref, _excluded$4g);
|
|
5383
5383
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5384
5384
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5385
5385
|
width: 24,
|
|
@@ -5400,7 +5400,7 @@
|
|
|
5400
5400
|
DrawIcon.displayName = "DrawIcon";
|
|
5401
5401
|
var DrawIcon$1 = DrawIcon;
|
|
5402
5402
|
|
|
5403
|
-
var _excluded$
|
|
5403
|
+
var _excluded$4f = ["gradient"];
|
|
5404
5404
|
|
|
5405
5405
|
/**
|
|
5406
5406
|
* @component DriveIcon
|
|
@@ -5430,7 +5430,7 @@
|
|
|
5430
5430
|
*/
|
|
5431
5431
|
var DriveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5432
5432
|
var gradient = _ref.gradient,
|
|
5433
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5433
|
+
props = _objectWithoutProperties(_ref, _excluded$4f);
|
|
5434
5434
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5435
5435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5436
5436
|
width: 24,
|
|
@@ -5450,7 +5450,7 @@
|
|
|
5450
5450
|
DriveIcon.displayName = "DriveIcon";
|
|
5451
5451
|
var DriveIcon$1 = DriveIcon;
|
|
5452
5452
|
|
|
5453
|
-
var _excluded$
|
|
5453
|
+
var _excluded$4e = ["gradient"];
|
|
5454
5454
|
|
|
5455
5455
|
/**
|
|
5456
5456
|
* @component DropboxIcon
|
|
@@ -5480,7 +5480,7 @@
|
|
|
5480
5480
|
*/
|
|
5481
5481
|
var DropboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5482
5482
|
var gradient = _ref.gradient,
|
|
5483
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5483
|
+
props = _objectWithoutProperties(_ref, _excluded$4e);
|
|
5484
5484
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5485
5485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5486
5486
|
width: 24,
|
|
@@ -5500,7 +5500,7 @@
|
|
|
5500
5500
|
DropboxIcon.displayName = "DropboxIcon";
|
|
5501
5501
|
var DropboxIcon$1 = DropboxIcon;
|
|
5502
5502
|
|
|
5503
|
-
var _excluded$
|
|
5503
|
+
var _excluded$4d = ["gradient"];
|
|
5504
5504
|
|
|
5505
5505
|
/**
|
|
5506
5506
|
* @component DuplicateIcon
|
|
@@ -5530,7 +5530,7 @@
|
|
|
5530
5530
|
*/
|
|
5531
5531
|
var DuplicateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5532
5532
|
var gradient = _ref.gradient,
|
|
5533
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5533
|
+
props = _objectWithoutProperties(_ref, _excluded$4d);
|
|
5534
5534
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5535
5535
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5536
5536
|
width: 24,
|
|
@@ -5550,7 +5550,7 @@
|
|
|
5550
5550
|
DuplicateIcon.displayName = "DuplicateIcon";
|
|
5551
5551
|
var DuplicateIcon$1 = DuplicateIcon;
|
|
5552
5552
|
|
|
5553
|
-
var _excluded$
|
|
5553
|
+
var _excluded$4c = ["gradient"];
|
|
5554
5554
|
|
|
5555
5555
|
/**
|
|
5556
5556
|
* @component EditMultipleIcon
|
|
@@ -5580,7 +5580,7 @@
|
|
|
5580
5580
|
*/
|
|
5581
5581
|
var EditMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5582
5582
|
var gradient = _ref.gradient,
|
|
5583
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5583
|
+
props = _objectWithoutProperties(_ref, _excluded$4c);
|
|
5584
5584
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5585
5585
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5586
5586
|
width: 24,
|
|
@@ -5600,7 +5600,7 @@
|
|
|
5600
5600
|
EditMultipleIcon.displayName = "EditMultipleIcon";
|
|
5601
5601
|
var EditMultipleIcon$1 = EditMultipleIcon;
|
|
5602
5602
|
|
|
5603
|
-
var _excluded$
|
|
5603
|
+
var _excluded$4b = ["gradient"];
|
|
5604
5604
|
|
|
5605
5605
|
/**
|
|
5606
5606
|
* @component EditIcon
|
|
@@ -5630,7 +5630,7 @@
|
|
|
5630
5630
|
*/
|
|
5631
5631
|
var EditIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5632
5632
|
var gradient = _ref.gradient,
|
|
5633
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5633
|
+
props = _objectWithoutProperties(_ref, _excluded$4b);
|
|
5634
5634
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5635
5635
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5636
5636
|
width: 24,
|
|
@@ -5650,7 +5650,7 @@
|
|
|
5650
5650
|
EditIcon.displayName = "EditIcon";
|
|
5651
5651
|
var EditIcon$1 = EditIcon;
|
|
5652
5652
|
|
|
5653
|
-
var _excluded$
|
|
5653
|
+
var _excluded$4a = ["gradient"];
|
|
5654
5654
|
|
|
5655
5655
|
/**
|
|
5656
5656
|
* @component EmojiIcon
|
|
@@ -5680,7 +5680,7 @@
|
|
|
5680
5680
|
*/
|
|
5681
5681
|
var EmojiIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5682
5682
|
var gradient = _ref.gradient,
|
|
5683
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5683
|
+
props = _objectWithoutProperties(_ref, _excluded$4a);
|
|
5684
5684
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5685
5685
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5686
5686
|
width: 24,
|
|
@@ -5700,7 +5700,7 @@
|
|
|
5700
5700
|
EmojiIcon.displayName = "EmojiIcon";
|
|
5701
5701
|
var EmojiIcon$1 = EmojiIcon;
|
|
5702
5702
|
|
|
5703
|
-
var _excluded$
|
|
5703
|
+
var _excluded$49 = ["gradient"];
|
|
5704
5704
|
|
|
5705
5705
|
/**
|
|
5706
5706
|
* @component EstimatePlusIcon
|
|
@@ -5730,7 +5730,7 @@
|
|
|
5730
5730
|
*/
|
|
5731
5731
|
var EstimatePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5732
5732
|
var gradient = _ref.gradient,
|
|
5733
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5733
|
+
props = _objectWithoutProperties(_ref, _excluded$49);
|
|
5734
5734
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5735
5735
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5736
5736
|
width: 24,
|
|
@@ -5751,7 +5751,7 @@
|
|
|
5751
5751
|
EstimatePlusIcon.displayName = "EstimatePlusIcon";
|
|
5752
5752
|
var EstimatePlusIcon$1 = EstimatePlusIcon;
|
|
5753
5753
|
|
|
5754
|
-
var _excluded$
|
|
5754
|
+
var _excluded$48 = ["gradient"];
|
|
5755
5755
|
|
|
5756
5756
|
/**
|
|
5757
5757
|
* @component EstimatesIcon
|
|
@@ -5781,7 +5781,7 @@
|
|
|
5781
5781
|
*/
|
|
5782
5782
|
var EstimatesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5783
5783
|
var gradient = _ref.gradient,
|
|
5784
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5784
|
+
props = _objectWithoutProperties(_ref, _excluded$48);
|
|
5785
5785
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5786
5786
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5787
5787
|
width: 24,
|
|
@@ -5805,7 +5805,7 @@
|
|
|
5805
5805
|
EstimatesIcon.displayName = "EstimatesIcon";
|
|
5806
5806
|
var EstimatesIcon$1 = EstimatesIcon;
|
|
5807
5807
|
|
|
5808
|
-
var _excluded$
|
|
5808
|
+
var _excluded$47 = ["gradient"];
|
|
5809
5809
|
|
|
5810
5810
|
/**
|
|
5811
5811
|
* @component ExpandAllIcon
|
|
@@ -5835,7 +5835,7 @@
|
|
|
5835
5835
|
*/
|
|
5836
5836
|
var ExpandAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5837
5837
|
var gradient = _ref.gradient,
|
|
5838
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5838
|
+
props = _objectWithoutProperties(_ref, _excluded$47);
|
|
5839
5839
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5840
5840
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5841
5841
|
width: 24,
|
|
@@ -5855,7 +5855,7 @@
|
|
|
5855
5855
|
ExpandAllIcon.displayName = "ExpandAllIcon";
|
|
5856
5856
|
var ExpandAllIcon$1 = ExpandAllIcon;
|
|
5857
5857
|
|
|
5858
|
-
var _excluded$
|
|
5858
|
+
var _excluded$46 = ["gradient"];
|
|
5859
5859
|
|
|
5860
5860
|
/**
|
|
5861
5861
|
* @component ExpenseAddIcon
|
|
@@ -5885,7 +5885,7 @@
|
|
|
5885
5885
|
*/
|
|
5886
5886
|
var ExpenseAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5887
5887
|
var gradient = _ref.gradient,
|
|
5888
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5888
|
+
props = _objectWithoutProperties(_ref, _excluded$46);
|
|
5889
5889
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5890
5890
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5891
5891
|
width: 24,
|
|
@@ -5905,7 +5905,7 @@
|
|
|
5905
5905
|
ExpenseAddIcon.displayName = "ExpenseAddIcon";
|
|
5906
5906
|
var ExpenseAddIcon$1 = ExpenseAddIcon;
|
|
5907
5907
|
|
|
5908
|
-
var _excluded$
|
|
5908
|
+
var _excluded$45 = ["gradient"];
|
|
5909
5909
|
|
|
5910
5910
|
/**
|
|
5911
5911
|
* @component ExpensePlusIcon
|
|
@@ -5935,7 +5935,7 @@
|
|
|
5935
5935
|
*/
|
|
5936
5936
|
var ExpensePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5937
5937
|
var gradient = _ref.gradient,
|
|
5938
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5938
|
+
props = _objectWithoutProperties(_ref, _excluded$45);
|
|
5939
5939
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5940
5940
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5941
5941
|
width: 24,
|
|
@@ -5957,7 +5957,7 @@
|
|
|
5957
5957
|
ExpensePlusIcon.displayName = "ExpensePlusIcon";
|
|
5958
5958
|
var ExpensePlusIcon$1 = ExpensePlusIcon;
|
|
5959
5959
|
|
|
5960
|
-
var _excluded$
|
|
5960
|
+
var _excluded$44 = ["gradient"];
|
|
5961
5961
|
|
|
5962
5962
|
/**
|
|
5963
5963
|
* @component EyeOffSmallIcon
|
|
@@ -5987,7 +5987,7 @@
|
|
|
5987
5987
|
*/
|
|
5988
5988
|
var EyeOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5989
5989
|
var gradient = _ref.gradient,
|
|
5990
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5990
|
+
props = _objectWithoutProperties(_ref, _excluded$44);
|
|
5991
5991
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5992
5992
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5993
5993
|
width: 12,
|
|
@@ -6007,7 +6007,7 @@
|
|
|
6007
6007
|
EyeOffSmallIcon.displayName = "EyeOffSmallIcon";
|
|
6008
6008
|
var EyeOffSmallIcon$1 = EyeOffSmallIcon;
|
|
6009
6009
|
|
|
6010
|
-
var _excluded$
|
|
6010
|
+
var _excluded$43 = ["gradient"];
|
|
6011
6011
|
|
|
6012
6012
|
/**
|
|
6013
6013
|
* @component EyeOffIcon
|
|
@@ -6037,7 +6037,7 @@
|
|
|
6037
6037
|
*/
|
|
6038
6038
|
var EyeOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6039
6039
|
var gradient = _ref.gradient,
|
|
6040
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6040
|
+
props = _objectWithoutProperties(_ref, _excluded$43);
|
|
6041
6041
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6042
6042
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6043
6043
|
width: 24,
|
|
@@ -6057,7 +6057,7 @@
|
|
|
6057
6057
|
EyeOffIcon.displayName = "EyeOffIcon";
|
|
6058
6058
|
var EyeOffIcon$1 = EyeOffIcon;
|
|
6059
6059
|
|
|
6060
|
-
var _excluded$
|
|
6060
|
+
var _excluded$42 = ["gradient"];
|
|
6061
6061
|
|
|
6062
6062
|
/**
|
|
6063
6063
|
* @component EyeSmallIcon
|
|
@@ -6087,7 +6087,7 @@
|
|
|
6087
6087
|
*/
|
|
6088
6088
|
var EyeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6089
6089
|
var gradient = _ref.gradient,
|
|
6090
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6090
|
+
props = _objectWithoutProperties(_ref, _excluded$42);
|
|
6091
6091
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6092
6092
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6093
6093
|
width: 12,
|
|
@@ -6107,7 +6107,7 @@
|
|
|
6107
6107
|
EyeSmallIcon.displayName = "EyeSmallIcon";
|
|
6108
6108
|
var EyeSmallIcon$1 = EyeSmallIcon;
|
|
6109
6109
|
|
|
6110
|
-
var _excluded$
|
|
6110
|
+
var _excluded$41 = ["gradient"];
|
|
6111
6111
|
|
|
6112
6112
|
/**
|
|
6113
6113
|
* @component EyeIcon
|
|
@@ -6137,7 +6137,7 @@
|
|
|
6137
6137
|
*/
|
|
6138
6138
|
var EyeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6139
6139
|
var gradient = _ref.gradient,
|
|
6140
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6140
|
+
props = _objectWithoutProperties(_ref, _excluded$41);
|
|
6141
6141
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6142
6142
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6143
6143
|
width: 24,
|
|
@@ -6157,7 +6157,7 @@
|
|
|
6157
6157
|
EyeIcon.displayName = "EyeIcon";
|
|
6158
6158
|
var EyeIcon$1 = EyeIcon;
|
|
6159
6159
|
|
|
6160
|
-
var _excluded$
|
|
6160
|
+
var _excluded$40 = ["gradient"];
|
|
6161
6161
|
|
|
6162
6162
|
/**
|
|
6163
6163
|
* @component FilterIcon
|
|
@@ -6187,7 +6187,7 @@
|
|
|
6187
6187
|
*/
|
|
6188
6188
|
var FilterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6189
6189
|
var gradient = _ref.gradient,
|
|
6190
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6190
|
+
props = _objectWithoutProperties(_ref, _excluded$40);
|
|
6191
6191
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6192
6192
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6193
6193
|
width: 24,
|
|
@@ -6207,7 +6207,7 @@
|
|
|
6207
6207
|
FilterIcon.displayName = "FilterIcon";
|
|
6208
6208
|
var FilterIcon$1 = FilterIcon;
|
|
6209
6209
|
|
|
6210
|
-
var _excluded$
|
|
6210
|
+
var _excluded$3$ = ["gradient"];
|
|
6211
6211
|
|
|
6212
6212
|
/**
|
|
6213
6213
|
* @component FolderMoveIcon
|
|
@@ -6237,7 +6237,7 @@
|
|
|
6237
6237
|
*/
|
|
6238
6238
|
var FolderMoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6239
6239
|
var gradient = _ref.gradient,
|
|
6240
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6240
|
+
props = _objectWithoutProperties(_ref, _excluded$3$);
|
|
6241
6241
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6242
6242
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6243
6243
|
width: 24,
|
|
@@ -6257,7 +6257,7 @@
|
|
|
6257
6257
|
FolderMoveIcon.displayName = "FolderMoveIcon";
|
|
6258
6258
|
var FolderMoveIcon$1 = FolderMoveIcon;
|
|
6259
6259
|
|
|
6260
|
-
var _excluded$
|
|
6260
|
+
var _excluded$3_ = ["gradient"];
|
|
6261
6261
|
|
|
6262
6262
|
/**
|
|
6263
6263
|
* @component FolderOutlineIcon
|
|
@@ -6287,7 +6287,7 @@
|
|
|
6287
6287
|
*/
|
|
6288
6288
|
var FolderOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6289
6289
|
var gradient = _ref.gradient,
|
|
6290
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6290
|
+
props = _objectWithoutProperties(_ref, _excluded$3_);
|
|
6291
6291
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6292
6292
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6293
6293
|
width: 24,
|
|
@@ -6307,7 +6307,7 @@
|
|
|
6307
6307
|
FolderOutlineIcon.displayName = "FolderOutlineIcon";
|
|
6308
6308
|
var FolderOutlineIcon$1 = FolderOutlineIcon;
|
|
6309
6309
|
|
|
6310
|
-
var _excluded$
|
|
6310
|
+
var _excluded$3Z = ["gradient"];
|
|
6311
6311
|
|
|
6312
6312
|
/**
|
|
6313
6313
|
* @component FolderPlusIcon
|
|
@@ -6337,7 +6337,7 @@
|
|
|
6337
6337
|
*/
|
|
6338
6338
|
var FolderPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6339
6339
|
var gradient = _ref.gradient,
|
|
6340
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6340
|
+
props = _objectWithoutProperties(_ref, _excluded$3Z);
|
|
6341
6341
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6342
6342
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6343
6343
|
width: 24,
|
|
@@ -6358,7 +6358,7 @@
|
|
|
6358
6358
|
FolderPlusIcon.displayName = "FolderPlusIcon";
|
|
6359
6359
|
var FolderPlusIcon$1 = FolderPlusIcon;
|
|
6360
6360
|
|
|
6361
|
-
var _excluded$
|
|
6361
|
+
var _excluded$3Y = ["gradient"];
|
|
6362
6362
|
|
|
6363
6363
|
/**
|
|
6364
6364
|
* @component GearIcon
|
|
@@ -6371,7 +6371,7 @@
|
|
|
6371
6371
|
*/
|
|
6372
6372
|
var GearIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6373
6373
|
var gradient = _ref.gradient,
|
|
6374
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6374
|
+
props = _objectWithoutProperties(_ref, _excluded$3Y);
|
|
6375
6375
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6376
6376
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6377
6377
|
width: 24,
|
|
@@ -6396,7 +6396,7 @@
|
|
|
6396
6396
|
GearIcon.displayName = "GearIcon";
|
|
6397
6397
|
var GearIcon$1 = GearIcon;
|
|
6398
6398
|
|
|
6399
|
-
var _excluded$
|
|
6399
|
+
var _excluded$3X = ["gradient"];
|
|
6400
6400
|
var maskUid$1 = 0;
|
|
6401
6401
|
|
|
6402
6402
|
/**
|
|
@@ -6412,7 +6412,7 @@
|
|
|
6412
6412
|
*/
|
|
6413
6413
|
var GearFailedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6414
6414
|
var gradient = _ref.gradient,
|
|
6415
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6415
|
+
props = _objectWithoutProperties(_ref, _excluded$3X);
|
|
6416
6416
|
var _useState = React.useState(function () {
|
|
6417
6417
|
return "gear-failed-cut-".concat(++maskUid$1);
|
|
6418
6418
|
}),
|
|
@@ -6463,7 +6463,7 @@
|
|
|
6463
6463
|
GearFailedIcon.displayName = "GearFailedIcon";
|
|
6464
6464
|
var GearFailedIcon$1 = GearFailedIcon;
|
|
6465
6465
|
|
|
6466
|
-
var _excluded$
|
|
6466
|
+
var _excluded$3W = ["gradient"];
|
|
6467
6467
|
|
|
6468
6468
|
/**
|
|
6469
6469
|
* @component GiftIcon
|
|
@@ -6493,7 +6493,7 @@
|
|
|
6493
6493
|
*/
|
|
6494
6494
|
var GiftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6495
6495
|
var gradient = _ref.gradient,
|
|
6496
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6496
|
+
props = _objectWithoutProperties(_ref, _excluded$3W);
|
|
6497
6497
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6498
6498
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6499
6499
|
width: 24,
|
|
@@ -6514,7 +6514,7 @@
|
|
|
6514
6514
|
GiftIcon.displayName = "GiftIcon";
|
|
6515
6515
|
var GiftIcon$1 = GiftIcon;
|
|
6516
6516
|
|
|
6517
|
-
var _excluded$
|
|
6517
|
+
var _excluded$3V = ["gradient"];
|
|
6518
6518
|
|
|
6519
6519
|
/**
|
|
6520
6520
|
* @component GitBranchIcon
|
|
@@ -6527,7 +6527,7 @@
|
|
|
6527
6527
|
*/
|
|
6528
6528
|
var GitBranchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6529
6529
|
var gradient = _ref.gradient,
|
|
6530
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6530
|
+
props = _objectWithoutProperties(_ref, _excluded$3V);
|
|
6531
6531
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6532
6532
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6533
6533
|
width: 24,
|
|
@@ -6558,7 +6558,7 @@
|
|
|
6558
6558
|
GitBranchIcon.displayName = "GitBranchIcon";
|
|
6559
6559
|
var GitBranchIcon$1 = GitBranchIcon;
|
|
6560
6560
|
|
|
6561
|
-
var _excluded$
|
|
6561
|
+
var _excluded$3U = ["gradient"];
|
|
6562
6562
|
|
|
6563
6563
|
/**
|
|
6564
6564
|
* @component GitCommitIcon
|
|
@@ -6571,7 +6571,7 @@
|
|
|
6571
6571
|
*/
|
|
6572
6572
|
var GitCommitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6573
6573
|
var gradient = _ref.gradient,
|
|
6574
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6574
|
+
props = _objectWithoutProperties(_ref, _excluded$3U);
|
|
6575
6575
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6576
6576
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6577
6577
|
width: 24,
|
|
@@ -6598,7 +6598,7 @@
|
|
|
6598
6598
|
GitCommitIcon.displayName = "GitCommitIcon";
|
|
6599
6599
|
var GitCommitIcon$1 = GitCommitIcon;
|
|
6600
6600
|
|
|
6601
|
-
var _excluded$
|
|
6601
|
+
var _excluded$3T = ["gradient"];
|
|
6602
6602
|
|
|
6603
6603
|
/**
|
|
6604
6604
|
* @component GitHubIcon
|
|
@@ -6613,7 +6613,7 @@
|
|
|
6613
6613
|
*/
|
|
6614
6614
|
var GitHubIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6615
6615
|
var gradient = _ref.gradient,
|
|
6616
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6616
|
+
props = _objectWithoutProperties(_ref, _excluded$3T);
|
|
6617
6617
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6618
6618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6619
6619
|
width: 24,
|
|
@@ -6634,7 +6634,7 @@
|
|
|
6634
6634
|
GitHubIcon.displayName = "GitHubIcon";
|
|
6635
6635
|
var GitHubIcon$1 = GitHubIcon;
|
|
6636
6636
|
|
|
6637
|
-
var _excluded$
|
|
6637
|
+
var _excluded$3S = ["gradient"];
|
|
6638
6638
|
|
|
6639
6639
|
/**
|
|
6640
6640
|
* @component GitIcon
|
|
@@ -6649,7 +6649,7 @@
|
|
|
6649
6649
|
*/
|
|
6650
6650
|
var GitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6651
6651
|
var gradient = _ref.gradient,
|
|
6652
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6652
|
+
props = _objectWithoutProperties(_ref, _excluded$3S);
|
|
6653
6653
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6654
6654
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6655
6655
|
width: 24,
|
|
@@ -6670,7 +6670,7 @@
|
|
|
6670
6670
|
GitIcon.displayName = "GitIcon";
|
|
6671
6671
|
var GitIcon$1 = GitIcon;
|
|
6672
6672
|
|
|
6673
|
-
var _excluded$
|
|
6673
|
+
var _excluded$3R = ["gradient"];
|
|
6674
6674
|
|
|
6675
6675
|
/**
|
|
6676
6676
|
* @component GitLabIcon
|
|
@@ -6685,7 +6685,7 @@
|
|
|
6685
6685
|
*/
|
|
6686
6686
|
var GitLabIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6687
6687
|
var gradient = _ref.gradient,
|
|
6688
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6688
|
+
props = _objectWithoutProperties(_ref, _excluded$3R);
|
|
6689
6689
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6690
6690
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6691
6691
|
width: 24,
|
|
@@ -6706,7 +6706,7 @@
|
|
|
6706
6706
|
GitLabIcon.displayName = "GitLabIcon";
|
|
6707
6707
|
var GitLabIcon$1 = GitLabIcon;
|
|
6708
6708
|
|
|
6709
|
-
var _excluded$
|
|
6709
|
+
var _excluded$3Q = ["gradient"];
|
|
6710
6710
|
|
|
6711
6711
|
/**
|
|
6712
6712
|
* @component GitMergeIcon
|
|
@@ -6721,7 +6721,7 @@
|
|
|
6721
6721
|
*/
|
|
6722
6722
|
var GitMergeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6723
6723
|
var gradient = _ref.gradient,
|
|
6724
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6724
|
+
props = _objectWithoutProperties(_ref, _excluded$3Q);
|
|
6725
6725
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6726
6726
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6727
6727
|
width: 24,
|
|
@@ -6752,7 +6752,7 @@
|
|
|
6752
6752
|
GitMergeIcon.displayName = "GitMergeIcon";
|
|
6753
6753
|
var GitMergeIcon$1 = GitMergeIcon;
|
|
6754
6754
|
|
|
6755
|
-
var _excluded$
|
|
6755
|
+
var _excluded$3P = ["gradient"];
|
|
6756
6756
|
|
|
6757
6757
|
/**
|
|
6758
6758
|
* @component GitPullRequestIcon
|
|
@@ -6765,7 +6765,7 @@
|
|
|
6765
6765
|
*/
|
|
6766
6766
|
var GitPullRequestIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6767
6767
|
var gradient = _ref.gradient,
|
|
6768
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6768
|
+
props = _objectWithoutProperties(_ref, _excluded$3P);
|
|
6769
6769
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6770
6770
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6771
6771
|
width: 24,
|
|
@@ -6798,7 +6798,7 @@
|
|
|
6798
6798
|
GitPullRequestIcon.displayName = "GitPullRequestIcon";
|
|
6799
6799
|
var GitPullRequestIcon$1 = GitPullRequestIcon;
|
|
6800
6800
|
|
|
6801
|
-
var _excluded$
|
|
6801
|
+
var _excluded$3O = ["gradient"];
|
|
6802
6802
|
|
|
6803
6803
|
/**
|
|
6804
6804
|
* @component GitPullRequestDraftIcon
|
|
@@ -6813,7 +6813,7 @@
|
|
|
6813
6813
|
*/
|
|
6814
6814
|
var GitPullRequestDraftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6815
6815
|
var gradient = _ref.gradient,
|
|
6816
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6816
|
+
props = _objectWithoutProperties(_ref, _excluded$3O);
|
|
6817
6817
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6818
6818
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6819
6819
|
width: 24,
|
|
@@ -6847,7 +6847,7 @@
|
|
|
6847
6847
|
GitPullRequestDraftIcon.displayName = "GitPullRequestDraftIcon";
|
|
6848
6848
|
var GitPullRequestDraftIcon$1 = GitPullRequestDraftIcon;
|
|
6849
6849
|
|
|
6850
|
-
var _excluded$
|
|
6850
|
+
var _excluded$3N = ["gradient"];
|
|
6851
6851
|
|
|
6852
6852
|
/**
|
|
6853
6853
|
* @component GitPullRequestClosedIcon
|
|
@@ -6863,7 +6863,7 @@
|
|
|
6863
6863
|
*/
|
|
6864
6864
|
var GitPullRequestClosedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6865
6865
|
var gradient = _ref.gradient,
|
|
6866
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6866
|
+
props = _objectWithoutProperties(_ref, _excluded$3N);
|
|
6867
6867
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6868
6868
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6869
6869
|
width: 24,
|
|
@@ -6900,7 +6900,7 @@
|
|
|
6900
6900
|
GitPullRequestClosedIcon.displayName = "GitPullRequestClosedIcon";
|
|
6901
6901
|
var GitPullRequestClosedIcon$1 = GitPullRequestClosedIcon;
|
|
6902
6902
|
|
|
6903
|
-
var _excluded$
|
|
6903
|
+
var _excluded$3M = ["gradient"];
|
|
6904
6904
|
|
|
6905
6905
|
/**
|
|
6906
6906
|
* @component GitRepositoryIcon
|
|
@@ -6914,7 +6914,7 @@
|
|
|
6914
6914
|
*/
|
|
6915
6915
|
var GitRepositoryIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6916
6916
|
var gradient = _ref.gradient,
|
|
6917
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6917
|
+
props = _objectWithoutProperties(_ref, _excluded$3M);
|
|
6918
6918
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6919
6919
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6920
6920
|
width: 24,
|
|
@@ -6943,7 +6943,7 @@
|
|
|
6943
6943
|
GitRepositoryIcon.displayName = "GitRepositoryIcon";
|
|
6944
6944
|
var GitRepositoryIcon$1 = GitRepositoryIcon;
|
|
6945
6945
|
|
|
6946
|
-
var _excluded$
|
|
6946
|
+
var _excluded$3L = ["gradient"];
|
|
6947
6947
|
var maskUid = 0;
|
|
6948
6948
|
|
|
6949
6949
|
/**
|
|
@@ -6959,7 +6959,7 @@
|
|
|
6959
6959
|
*/
|
|
6960
6960
|
var GitRepositoryConnectIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6961
6961
|
var gradient = _ref.gradient,
|
|
6962
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6962
|
+
props = _objectWithoutProperties(_ref, _excluded$3L);
|
|
6963
6963
|
var _useState = React.useState(function () {
|
|
6964
6964
|
return "git-repository-connect-cut-".concat(++maskUid);
|
|
6965
6965
|
}),
|
|
@@ -7020,7 +7020,7 @@
|
|
|
7020
7020
|
GitRepositoryConnectIcon.displayName = "GitRepositoryConnectIcon";
|
|
7021
7021
|
var GitRepositoryConnectIcon$1 = GitRepositoryConnectIcon;
|
|
7022
7022
|
|
|
7023
|
-
var _excluded$
|
|
7023
|
+
var _excluded$3K = ["gradient"];
|
|
7024
7024
|
|
|
7025
7025
|
/**
|
|
7026
7026
|
* @component GroupByIcon
|
|
@@ -7050,7 +7050,7 @@
|
|
|
7050
7050
|
*/
|
|
7051
7051
|
var GroupByIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7052
7052
|
var gradient = _ref.gradient,
|
|
7053
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7053
|
+
props = _objectWithoutProperties(_ref, _excluded$3K);
|
|
7054
7054
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7055
7055
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7056
7056
|
width: 24,
|
|
@@ -7069,7 +7069,7 @@
|
|
|
7069
7069
|
GroupByIcon.displayName = "GroupByIcon";
|
|
7070
7070
|
var GroupByIcon$1 = GroupByIcon;
|
|
7071
7071
|
|
|
7072
|
-
var _excluded$
|
|
7072
|
+
var _excluded$3J = ["gradient"];
|
|
7073
7073
|
|
|
7074
7074
|
/**
|
|
7075
7075
|
* @component HashtagIcon
|
|
@@ -7099,7 +7099,7 @@
|
|
|
7099
7099
|
*/
|
|
7100
7100
|
var HashtagIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7101
7101
|
var gradient = _ref.gradient,
|
|
7102
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7102
|
+
props = _objectWithoutProperties(_ref, _excluded$3J);
|
|
7103
7103
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7104
7104
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7105
7105
|
width: 24,
|
|
@@ -7120,7 +7120,7 @@
|
|
|
7120
7120
|
HashtagIcon.displayName = "HashtagIcon";
|
|
7121
7121
|
var HashtagIcon$1 = HashtagIcon;
|
|
7122
7122
|
|
|
7123
|
-
var _excluded$
|
|
7123
|
+
var _excluded$3I = ["gradient"];
|
|
7124
7124
|
|
|
7125
7125
|
/**
|
|
7126
7126
|
* @component HashIcon
|
|
@@ -7150,7 +7150,7 @@
|
|
|
7150
7150
|
*/
|
|
7151
7151
|
var HashIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7152
7152
|
var gradient = _ref.gradient,
|
|
7153
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7153
|
+
props = _objectWithoutProperties(_ref, _excluded$3I);
|
|
7154
7154
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7155
7155
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7156
7156
|
width: 24,
|
|
@@ -7169,7 +7169,7 @@
|
|
|
7169
7169
|
HashIcon.displayName = "HashIcon";
|
|
7170
7170
|
var HashIcon$1 = HashIcon;
|
|
7171
7171
|
|
|
7172
|
-
var _excluded$
|
|
7172
|
+
var _excluded$3H = ["gradient"];
|
|
7173
7173
|
|
|
7174
7174
|
/**
|
|
7175
7175
|
* @component CommandLineIcon
|
|
@@ -7199,7 +7199,7 @@
|
|
|
7199
7199
|
*/
|
|
7200
7200
|
var CommandLineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7201
7201
|
var gradient = _ref.gradient,
|
|
7202
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7202
|
+
props = _objectWithoutProperties(_ref, _excluded$3H);
|
|
7203
7203
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7204
7204
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7205
7205
|
width: 24,
|
|
@@ -7218,7 +7218,7 @@
|
|
|
7218
7218
|
CommandLineIcon.displayName = "CommandLineIcon";
|
|
7219
7219
|
var CommandLineIcon$1 = CommandLineIcon;
|
|
7220
7220
|
|
|
7221
|
-
var _excluded$
|
|
7221
|
+
var _excluded$3G = ["gradient"];
|
|
7222
7222
|
|
|
7223
7223
|
/**
|
|
7224
7224
|
* @component HelpIcon
|
|
@@ -7248,7 +7248,7 @@
|
|
|
7248
7248
|
*/
|
|
7249
7249
|
var HelpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7250
7250
|
var gradient = _ref.gradient,
|
|
7251
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7251
|
+
props = _objectWithoutProperties(_ref, _excluded$3G);
|
|
7252
7252
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7253
7253
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7254
7254
|
width: 24,
|
|
@@ -7268,7 +7268,7 @@
|
|
|
7268
7268
|
HelpIcon.displayName = "HelpIcon";
|
|
7269
7269
|
var HelpIcon$1 = HelpIcon;
|
|
7270
7270
|
|
|
7271
|
-
var _excluded$
|
|
7271
|
+
var _excluded$3F = ["gradient"];
|
|
7272
7272
|
|
|
7273
7273
|
/**
|
|
7274
7274
|
* @component HistoryOfChangesIcon
|
|
@@ -7298,7 +7298,7 @@
|
|
|
7298
7298
|
*/
|
|
7299
7299
|
var HistoryOfChangesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7300
7300
|
var gradient = _ref.gradient,
|
|
7301
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7301
|
+
props = _objectWithoutProperties(_ref, _excluded$3F);
|
|
7302
7302
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7303
7303
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7304
7304
|
width: 24,
|
|
@@ -7319,7 +7319,7 @@
|
|
|
7319
7319
|
HistoryOfChangesIcon.displayName = "HistoryOfChangesIcon";
|
|
7320
7320
|
var HistoryOfChangesIcon$1 = HistoryOfChangesIcon;
|
|
7321
7321
|
|
|
7322
|
-
var _excluded$
|
|
7322
|
+
var _excluded$3E = ["gradient"];
|
|
7323
7323
|
|
|
7324
7324
|
/**
|
|
7325
7325
|
* @component ImageIcon
|
|
@@ -7349,7 +7349,7 @@
|
|
|
7349
7349
|
*/
|
|
7350
7350
|
var ImageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7351
7351
|
var gradient = _ref.gradient,
|
|
7352
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7352
|
+
props = _objectWithoutProperties(_ref, _excluded$3E);
|
|
7353
7353
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7354
7354
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7355
7355
|
width: 24,
|
|
@@ -7370,7 +7370,7 @@
|
|
|
7370
7370
|
ImageIcon.displayName = "ImageIcon";
|
|
7371
7371
|
var ImageIcon$1 = ImageIcon;
|
|
7372
7372
|
|
|
7373
|
-
var _excluded$
|
|
7373
|
+
var _excluded$3D = ["gradient"];
|
|
7374
7374
|
|
|
7375
7375
|
/**
|
|
7376
7376
|
* @component InfoSmallIcon
|
|
@@ -7400,7 +7400,7 @@
|
|
|
7400
7400
|
*/
|
|
7401
7401
|
var InfoSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7402
7402
|
var gradient = _ref.gradient,
|
|
7403
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7403
|
+
props = _objectWithoutProperties(_ref, _excluded$3D);
|
|
7404
7404
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7405
7405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7406
7406
|
width: 15,
|
|
@@ -7420,7 +7420,7 @@
|
|
|
7420
7420
|
InfoSmallIcon.displayName = "InfoSmallIcon";
|
|
7421
7421
|
var InfoSmallIcon$1 = InfoSmallIcon;
|
|
7422
7422
|
|
|
7423
|
-
var _excluded$
|
|
7423
|
+
var _excluded$3C = ["gradient"];
|
|
7424
7424
|
|
|
7425
7425
|
/**
|
|
7426
7426
|
* @component InfoIcon
|
|
@@ -7450,7 +7450,7 @@
|
|
|
7450
7450
|
*/
|
|
7451
7451
|
var InfoIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7452
7452
|
var gradient = _ref.gradient,
|
|
7453
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7453
|
+
props = _objectWithoutProperties(_ref, _excluded$3C);
|
|
7454
7454
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7455
7455
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7456
7456
|
width: 24,
|
|
@@ -7470,7 +7470,7 @@
|
|
|
7470
7470
|
InfoIcon.displayName = "InfoIcon";
|
|
7471
7471
|
var InfoIcon$1 = InfoIcon;
|
|
7472
7472
|
|
|
7473
|
-
var _excluded$
|
|
7473
|
+
var _excluded$3B = ["gradient"];
|
|
7474
7474
|
|
|
7475
7475
|
/**
|
|
7476
7476
|
* @component InsertLinkIcon
|
|
@@ -7500,7 +7500,7 @@
|
|
|
7500
7500
|
*/
|
|
7501
7501
|
var InsertLinkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7502
7502
|
var gradient = _ref.gradient,
|
|
7503
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7503
|
+
props = _objectWithoutProperties(_ref, _excluded$3B);
|
|
7504
7504
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7505
7505
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7506
7506
|
width: 24,
|
|
@@ -7520,7 +7520,7 @@
|
|
|
7520
7520
|
InsertLinkIcon.displayName = "InsertLinkIcon";
|
|
7521
7521
|
var InsertLinkIcon$1 = InsertLinkIcon;
|
|
7522
7522
|
|
|
7523
|
-
var _excluded$
|
|
7523
|
+
var _excluded$3A = ["gradient"];
|
|
7524
7524
|
|
|
7525
7525
|
/**
|
|
7526
7526
|
* @component IntegrationsIcon
|
|
@@ -7550,7 +7550,7 @@
|
|
|
7550
7550
|
*/
|
|
7551
7551
|
var IntegrationsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7552
7552
|
var gradient = _ref.gradient,
|
|
7553
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7553
|
+
props = _objectWithoutProperties(_ref, _excluded$3A);
|
|
7554
7554
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7555
7555
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7556
7556
|
width: 24,
|
|
@@ -7574,7 +7574,7 @@
|
|
|
7574
7574
|
IntegrationsIcon.displayName = "IntegrationsIcon";
|
|
7575
7575
|
var IntegrationsIcon$1 = IntegrationsIcon;
|
|
7576
7576
|
|
|
7577
|
-
var _excluded$
|
|
7577
|
+
var _excluded$3z = ["gradient"];
|
|
7578
7578
|
|
|
7579
7579
|
/**
|
|
7580
7580
|
* @component InvoicesIcon
|
|
@@ -7604,7 +7604,7 @@
|
|
|
7604
7604
|
*/
|
|
7605
7605
|
var InvoicesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7606
7606
|
var gradient = _ref.gradient,
|
|
7607
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7607
|
+
props = _objectWithoutProperties(_ref, _excluded$3z);
|
|
7608
7608
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7609
7609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7610
7610
|
width: 24,
|
|
@@ -7628,7 +7628,7 @@
|
|
|
7628
7628
|
InvoicesIcon.displayName = "InvoicesIcon";
|
|
7629
7629
|
var InvoicesIcon$1 = InvoicesIcon;
|
|
7630
7630
|
|
|
7631
|
-
var _excluded$
|
|
7631
|
+
var _excluded$3y = ["gradient"];
|
|
7632
7632
|
|
|
7633
7633
|
/**
|
|
7634
7634
|
* @component KeyIcon
|
|
@@ -7658,7 +7658,7 @@
|
|
|
7658
7658
|
*/
|
|
7659
7659
|
var KeyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7660
7660
|
var gradient = _ref.gradient,
|
|
7661
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7661
|
+
props = _objectWithoutProperties(_ref, _excluded$3y);
|
|
7662
7662
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7663
7663
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7664
7664
|
width: 24,
|
|
@@ -7677,7 +7677,7 @@
|
|
|
7677
7677
|
KeyIcon.displayName = "KeyIcon";
|
|
7678
7678
|
var KeyIcon$1 = KeyIcon;
|
|
7679
7679
|
|
|
7680
|
-
var _excluded$
|
|
7680
|
+
var _excluded$3x = ["gradient"];
|
|
7681
7681
|
|
|
7682
7682
|
/**
|
|
7683
7683
|
* @component LabelsIcon
|
|
@@ -7707,7 +7707,7 @@
|
|
|
7707
7707
|
*/
|
|
7708
7708
|
var LabelsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7709
7709
|
var gradient = _ref.gradient,
|
|
7710
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7710
|
+
props = _objectWithoutProperties(_ref, _excluded$3x);
|
|
7711
7711
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7712
7712
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7713
7713
|
width: 24,
|
|
@@ -7727,7 +7727,7 @@
|
|
|
7727
7727
|
LabelsIcon.displayName = "LabelsIcon";
|
|
7728
7728
|
var LabelsIcon$1 = LabelsIcon;
|
|
7729
7729
|
|
|
7730
|
-
var _excluded$
|
|
7730
|
+
var _excluded$3w = ["gradient"];
|
|
7731
7731
|
|
|
7732
7732
|
/**
|
|
7733
7733
|
* @component LayersIcon
|
|
@@ -7757,7 +7757,7 @@
|
|
|
7757
7757
|
*/
|
|
7758
7758
|
var LayersIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7759
7759
|
var gradient = _ref.gradient,
|
|
7760
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7760
|
+
props = _objectWithoutProperties(_ref, _excluded$3w);
|
|
7761
7761
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7762
7762
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7763
7763
|
width: 24,
|
|
@@ -7781,7 +7781,7 @@
|
|
|
7781
7781
|
LayersIcon.displayName = "LayersIcon";
|
|
7782
7782
|
var LayersIcon$1 = LayersIcon;
|
|
7783
7783
|
|
|
7784
|
-
var _excluded$
|
|
7784
|
+
var _excluded$3v = ["gradient"];
|
|
7785
7785
|
|
|
7786
7786
|
/**
|
|
7787
7787
|
* @component LayerBackIcon
|
|
@@ -7811,7 +7811,7 @@
|
|
|
7811
7811
|
*/
|
|
7812
7812
|
var LayerBackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7813
7813
|
var gradient = _ref.gradient,
|
|
7814
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7814
|
+
props = _objectWithoutProperties(_ref, _excluded$3v);
|
|
7815
7815
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7816
7816
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7817
7817
|
width: 24,
|
|
@@ -7832,7 +7832,7 @@
|
|
|
7832
7832
|
LayerBackIcon.displayName = "LayerBackIcon";
|
|
7833
7833
|
var LayerBackIcon$1 = LayerBackIcon;
|
|
7834
7834
|
|
|
7835
|
-
var _excluded$
|
|
7835
|
+
var _excluded$3u = ["gradient"];
|
|
7836
7836
|
|
|
7837
7837
|
/**
|
|
7838
7838
|
* @component LayerBackwardIcon
|
|
@@ -7862,7 +7862,7 @@
|
|
|
7862
7862
|
*/
|
|
7863
7863
|
var LayerBackwardIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7864
7864
|
var gradient = _ref.gradient,
|
|
7865
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7865
|
+
props = _objectWithoutProperties(_ref, _excluded$3u);
|
|
7866
7866
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7867
7867
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7868
7868
|
width: 24,
|
|
@@ -7900,7 +7900,7 @@
|
|
|
7900
7900
|
LayerBackwardIcon.displayName = "LayerBackwardIcon";
|
|
7901
7901
|
var LayerBackwardIcon$1 = LayerBackwardIcon;
|
|
7902
7902
|
|
|
7903
|
-
var _excluded$
|
|
7903
|
+
var _excluded$3t = ["gradient"];
|
|
7904
7904
|
|
|
7905
7905
|
/**
|
|
7906
7906
|
* @component LayerForwardIcon
|
|
@@ -7930,7 +7930,7 @@
|
|
|
7930
7930
|
*/
|
|
7931
7931
|
var LayerForwardIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7932
7932
|
var gradient = _ref.gradient,
|
|
7933
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7933
|
+
props = _objectWithoutProperties(_ref, _excluded$3t);
|
|
7934
7934
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7935
7935
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7936
7936
|
width: 24,
|
|
@@ -7968,7 +7968,7 @@
|
|
|
7968
7968
|
LayerForwardIcon.displayName = "LayerForwardIcon";
|
|
7969
7969
|
var LayerForwardIcon$1 = LayerForwardIcon;
|
|
7970
7970
|
|
|
7971
|
-
var _excluded$
|
|
7971
|
+
var _excluded$3s = ["gradient"];
|
|
7972
7972
|
|
|
7973
7973
|
/**
|
|
7974
7974
|
* @component LayerFrontIcon
|
|
@@ -7998,7 +7998,7 @@
|
|
|
7998
7998
|
*/
|
|
7999
7999
|
var LayerFrontIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8000
8000
|
var gradient = _ref.gradient,
|
|
8001
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8001
|
+
props = _objectWithoutProperties(_ref, _excluded$3s);
|
|
8002
8002
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8003
8003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8004
8004
|
width: 24,
|
|
@@ -8019,7 +8019,7 @@
|
|
|
8019
8019
|
LayerFrontIcon.displayName = "LayerFrontIcon";
|
|
8020
8020
|
var LayerFrontIcon$1 = LayerFrontIcon;
|
|
8021
8021
|
|
|
8022
|
-
var _excluded$
|
|
8022
|
+
var _excluded$3r = ["gradient"];
|
|
8023
8023
|
|
|
8024
8024
|
/**
|
|
8025
8025
|
* @component LetterArrowRightIcon
|
|
@@ -8049,7 +8049,7 @@
|
|
|
8049
8049
|
*/
|
|
8050
8050
|
var LetterArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8051
8051
|
var gradient = _ref.gradient,
|
|
8052
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8052
|
+
props = _objectWithoutProperties(_ref, _excluded$3r);
|
|
8053
8053
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8054
8054
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8055
8055
|
width: 24,
|
|
@@ -8070,7 +8070,7 @@
|
|
|
8070
8070
|
LetterArrowRightIcon.displayName = "LetterArrowRightIcon";
|
|
8071
8071
|
var LetterArrowRightIcon$1 = LetterArrowRightIcon;
|
|
8072
8072
|
|
|
8073
|
-
var _excluded$
|
|
8073
|
+
var _excluded$3q = ["gradient"];
|
|
8074
8074
|
|
|
8075
8075
|
/**
|
|
8076
8076
|
* @component LetterFastIcon
|
|
@@ -8100,7 +8100,7 @@
|
|
|
8100
8100
|
*/
|
|
8101
8101
|
var LetterFastIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8102
8102
|
var gradient = _ref.gradient,
|
|
8103
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8103
|
+
props = _objectWithoutProperties(_ref, _excluded$3q);
|
|
8104
8104
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8105
8105
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8106
8106
|
width: 24,
|
|
@@ -8120,7 +8120,7 @@
|
|
|
8120
8120
|
LetterFastIcon.displayName = "LetterFastIcon";
|
|
8121
8121
|
var LetterFastIcon$1 = LetterFastIcon;
|
|
8122
8122
|
|
|
8123
|
-
var _excluded$
|
|
8123
|
+
var _excluded$3p = ["gradient"];
|
|
8124
8124
|
|
|
8125
8125
|
/**
|
|
8126
8126
|
* @component LetterIcon
|
|
@@ -8150,7 +8150,7 @@
|
|
|
8150
8150
|
*/
|
|
8151
8151
|
var LetterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8152
8152
|
var gradient = _ref.gradient,
|
|
8153
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8153
|
+
props = _objectWithoutProperties(_ref, _excluded$3p);
|
|
8154
8154
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8155
8155
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8156
8156
|
width: 24,
|
|
@@ -8171,7 +8171,7 @@
|
|
|
8171
8171
|
LetterIcon.displayName = "LetterIcon";
|
|
8172
8172
|
var LetterIcon$1 = LetterIcon;
|
|
8173
8173
|
|
|
8174
|
-
var _excluded$
|
|
8174
|
+
var _excluded$3o = ["gradient"];
|
|
8175
8175
|
|
|
8176
8176
|
/**
|
|
8177
8177
|
* @component LockSmallIcon
|
|
@@ -8201,7 +8201,7 @@
|
|
|
8201
8201
|
*/
|
|
8202
8202
|
var LockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8203
8203
|
var gradient = _ref.gradient,
|
|
8204
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8204
|
+
props = _objectWithoutProperties(_ref, _excluded$3o);
|
|
8205
8205
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8206
8206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8207
8207
|
width: 12,
|
|
@@ -8221,7 +8221,7 @@
|
|
|
8221
8221
|
LockSmallIcon.displayName = "LockSmallIcon";
|
|
8222
8222
|
var LockSmallIcon$1 = LockSmallIcon;
|
|
8223
8223
|
|
|
8224
|
-
var _excluded$
|
|
8224
|
+
var _excluded$3n = ["gradient"];
|
|
8225
8225
|
|
|
8226
8226
|
/**
|
|
8227
8227
|
* @component LockIcon
|
|
@@ -8251,7 +8251,7 @@
|
|
|
8251
8251
|
*/
|
|
8252
8252
|
var LockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8253
8253
|
var gradient = _ref.gradient,
|
|
8254
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8254
|
+
props = _objectWithoutProperties(_ref, _excluded$3n);
|
|
8255
8255
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8256
8256
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8257
8257
|
width: 24,
|
|
@@ -8271,7 +8271,7 @@
|
|
|
8271
8271
|
LockIcon.displayName = "LockIcon";
|
|
8272
8272
|
var LockIcon$1 = LockIcon;
|
|
8273
8273
|
|
|
8274
|
-
var _excluded$
|
|
8274
|
+
var _excluded$3m = ["gradient"];
|
|
8275
8275
|
|
|
8276
8276
|
/**
|
|
8277
8277
|
* @component MarkerIcon
|
|
@@ -8301,7 +8301,7 @@
|
|
|
8301
8301
|
*/
|
|
8302
8302
|
var MarkerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8303
8303
|
var gradient = _ref.gradient,
|
|
8304
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8304
|
+
props = _objectWithoutProperties(_ref, _excluded$3m);
|
|
8305
8305
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8306
8306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8307
8307
|
width: 24,
|
|
@@ -8321,7 +8321,7 @@
|
|
|
8321
8321
|
MarkerIcon.displayName = "MarkerIcon";
|
|
8322
8322
|
var MarkerIcon$1 = MarkerIcon;
|
|
8323
8323
|
|
|
8324
|
-
var _excluded$
|
|
8324
|
+
var _excluded$3l = ["gradient"];
|
|
8325
8325
|
|
|
8326
8326
|
/**
|
|
8327
8327
|
* @component MessageAddIcon
|
|
@@ -8351,7 +8351,7 @@
|
|
|
8351
8351
|
*/
|
|
8352
8352
|
var MessageAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8353
8353
|
var gradient = _ref.gradient,
|
|
8354
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8354
|
+
props = _objectWithoutProperties(_ref, _excluded$3l);
|
|
8355
8355
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8356
8356
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8357
8357
|
width: 24,
|
|
@@ -8370,7 +8370,7 @@
|
|
|
8370
8370
|
MessageAddIcon.displayName = "MessageAddIcon";
|
|
8371
8371
|
var MessageAddIcon$1 = MessageAddIcon;
|
|
8372
8372
|
|
|
8373
|
-
var _excluded$
|
|
8373
|
+
var _excluded$3k = ["gradient"];
|
|
8374
8374
|
|
|
8375
8375
|
/**
|
|
8376
8376
|
* @component MessageEmptyIcon
|
|
@@ -8400,7 +8400,7 @@
|
|
|
8400
8400
|
*/
|
|
8401
8401
|
var MessageEmptyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8402
8402
|
var gradient = _ref.gradient,
|
|
8403
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8403
|
+
props = _objectWithoutProperties(_ref, _excluded$3k);
|
|
8404
8404
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8405
8405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8406
8406
|
width: 24,
|
|
@@ -8420,7 +8420,7 @@
|
|
|
8420
8420
|
MessageEmptyIcon.displayName = "MessageEmptyIcon";
|
|
8421
8421
|
var MessageEmptyIcon$1 = MessageEmptyIcon;
|
|
8422
8422
|
|
|
8423
|
-
var _excluded$
|
|
8423
|
+
var _excluded$3j = ["gradient"];
|
|
8424
8424
|
|
|
8425
8425
|
/**
|
|
8426
8426
|
* @component MessageSmallIcon
|
|
@@ -8450,7 +8450,7 @@
|
|
|
8450
8450
|
*/
|
|
8451
8451
|
var MessageSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8452
8452
|
var gradient = _ref.gradient,
|
|
8453
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8453
|
+
props = _objectWithoutProperties(_ref, _excluded$3j);
|
|
8454
8454
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8455
8455
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8456
8456
|
width: 12,
|
|
@@ -8470,7 +8470,7 @@
|
|
|
8470
8470
|
MessageSmallIcon.displayName = "MessageSmallIcon";
|
|
8471
8471
|
var MessageSmallIcon$1 = MessageSmallIcon;
|
|
8472
8472
|
|
|
8473
|
-
var _excluded$
|
|
8473
|
+
var _excluded$3i = ["gradient"];
|
|
8474
8474
|
|
|
8475
8475
|
/**
|
|
8476
8476
|
* @component MessageSolidIcon
|
|
@@ -8500,7 +8500,7 @@
|
|
|
8500
8500
|
*/
|
|
8501
8501
|
var MessageSolidIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8502
8502
|
var gradient = _ref.gradient,
|
|
8503
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8503
|
+
props = _objectWithoutProperties(_ref, _excluded$3i);
|
|
8504
8504
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8505
8505
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8506
8506
|
width: 24,
|
|
@@ -8520,7 +8520,7 @@
|
|
|
8520
8520
|
MessageSolidIcon.displayName = "MessageSolidIcon";
|
|
8521
8521
|
var MessageSolidIcon$1 = MessageSolidIcon;
|
|
8522
8522
|
|
|
8523
|
-
var _excluded$
|
|
8523
|
+
var _excluded$3h = ["gradient"];
|
|
8524
8524
|
|
|
8525
8525
|
/**
|
|
8526
8526
|
* @component MessageStarIcon
|
|
@@ -8550,7 +8550,7 @@
|
|
|
8550
8550
|
*/
|
|
8551
8551
|
var MessageStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8552
8552
|
var gradient = _ref.gradient,
|
|
8553
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8553
|
+
props = _objectWithoutProperties(_ref, _excluded$3h);
|
|
8554
8554
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8555
8555
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8556
8556
|
width: 24,
|
|
@@ -8573,7 +8573,7 @@
|
|
|
8573
8573
|
MessageStarIcon.displayName = "MessageStarIcon";
|
|
8574
8574
|
var MessageStarIcon$1 = MessageStarIcon;
|
|
8575
8575
|
|
|
8576
|
-
var _excluded$
|
|
8576
|
+
var _excluded$3g = ["gradient"];
|
|
8577
8577
|
|
|
8578
8578
|
/**
|
|
8579
8579
|
* @component MessageIcon
|
|
@@ -8603,7 +8603,7 @@
|
|
|
8603
8603
|
*/
|
|
8604
8604
|
var MessageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8605
8605
|
var gradient = _ref.gradient,
|
|
8606
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8606
|
+
props = _objectWithoutProperties(_ref, _excluded$3g);
|
|
8607
8607
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8608
8608
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8609
8609
|
width: 24,
|
|
@@ -8623,7 +8623,7 @@
|
|
|
8623
8623
|
MessageIcon.displayName = "MessageIcon";
|
|
8624
8624
|
var MessageIcon$1 = MessageIcon;
|
|
8625
8625
|
|
|
8626
|
-
var _excluded$
|
|
8626
|
+
var _excluded$3f = ["gradient"];
|
|
8627
8627
|
|
|
8628
8628
|
/**
|
|
8629
8629
|
* @component MinusIcon
|
|
@@ -8653,7 +8653,7 @@
|
|
|
8653
8653
|
*/
|
|
8654
8654
|
var MinusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8655
8655
|
var gradient = _ref.gradient,
|
|
8656
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8656
|
+
props = _objectWithoutProperties(_ref, _excluded$3f);
|
|
8657
8657
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8658
8658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8659
8659
|
width: 24,
|
|
@@ -8677,7 +8677,7 @@
|
|
|
8677
8677
|
MinusIcon.displayName = "MinusIcon";
|
|
8678
8678
|
var MinusIcon$1 = MinusIcon;
|
|
8679
8679
|
|
|
8680
|
-
var _excluded$
|
|
8680
|
+
var _excluded$3e = ["gradient"];
|
|
8681
8681
|
|
|
8682
8682
|
/**
|
|
8683
8683
|
* @component MobileMenuIcon
|
|
@@ -8707,7 +8707,7 @@
|
|
|
8707
8707
|
*/
|
|
8708
8708
|
var MobileMenuIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8709
8709
|
var gradient = _ref.gradient,
|
|
8710
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8710
|
+
props = _objectWithoutProperties(_ref, _excluded$3e);
|
|
8711
8711
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8712
8712
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8713
8713
|
width: 24,
|
|
@@ -8728,7 +8728,7 @@
|
|
|
8728
8728
|
MobileMenuIcon.displayName = "MobileMenuIcon";
|
|
8729
8729
|
var MobileMenuIcon$1 = MobileMenuIcon;
|
|
8730
8730
|
|
|
8731
|
-
var _excluded$
|
|
8731
|
+
var _excluded$3d = ["gradient"];
|
|
8732
8732
|
|
|
8733
8733
|
/**
|
|
8734
8734
|
* @component MoneyStackIcon
|
|
@@ -8758,7 +8758,7 @@
|
|
|
8758
8758
|
*/
|
|
8759
8759
|
var MoneyStackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8760
8760
|
var gradient = _ref.gradient,
|
|
8761
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8761
|
+
props = _objectWithoutProperties(_ref, _excluded$3d);
|
|
8762
8762
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8763
8763
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8764
8764
|
width: 24,
|
|
@@ -8785,7 +8785,7 @@
|
|
|
8785
8785
|
MoneyStackIcon.displayName = "MoneyStackIcon";
|
|
8786
8786
|
var MoneyStackIcon$1 = MoneyStackIcon;
|
|
8787
8787
|
|
|
8788
|
-
var _excluded$
|
|
8788
|
+
var _excluded$3c = ["gradient"];
|
|
8789
8789
|
|
|
8790
8790
|
/**
|
|
8791
8791
|
* @component MoonIcon
|
|
@@ -8815,7 +8815,7 @@
|
|
|
8815
8815
|
*/
|
|
8816
8816
|
var MoonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8817
8817
|
var gradient = _ref.gradient,
|
|
8818
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8818
|
+
props = _objectWithoutProperties(_ref, _excluded$3c);
|
|
8819
8819
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8820
8820
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8821
8821
|
width: 20,
|
|
@@ -8836,7 +8836,7 @@
|
|
|
8836
8836
|
MoonIcon.displayName = "MoonIcon";
|
|
8837
8837
|
var MoonIcon$1 = MoonIcon;
|
|
8838
8838
|
|
|
8839
|
-
var _excluded$
|
|
8839
|
+
var _excluded$3b = ["gradient"];
|
|
8840
8840
|
|
|
8841
8841
|
/**
|
|
8842
8842
|
* @component MoveTriggerIcon
|
|
@@ -8866,7 +8866,7 @@
|
|
|
8866
8866
|
*/
|
|
8867
8867
|
var MoveTriggerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8868
8868
|
var gradient = _ref.gradient,
|
|
8869
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8869
|
+
props = _objectWithoutProperties(_ref, _excluded$3b);
|
|
8870
8870
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8871
8871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8872
8872
|
width: 10,
|
|
@@ -8886,7 +8886,7 @@
|
|
|
8886
8886
|
MoveTriggerIcon.displayName = "MoveTriggerIcon";
|
|
8887
8887
|
var MoveTriggerIcon$1 = MoveTriggerIcon;
|
|
8888
8888
|
|
|
8889
|
-
var _excluded$
|
|
8889
|
+
var _excluded$3a = ["gradient"];
|
|
8890
8890
|
|
|
8891
8891
|
/**
|
|
8892
8892
|
* @component MoveIcon
|
|
@@ -8916,7 +8916,7 @@
|
|
|
8916
8916
|
*/
|
|
8917
8917
|
var MoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8918
8918
|
var gradient = _ref.gradient,
|
|
8919
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8919
|
+
props = _objectWithoutProperties(_ref, _excluded$3a);
|
|
8920
8920
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8921
8921
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8922
8922
|
width: 24,
|
|
@@ -8937,7 +8937,7 @@
|
|
|
8937
8937
|
MoveIcon.displayName = "MoveIcon";
|
|
8938
8938
|
var MoveIcon$1 = MoveIcon;
|
|
8939
8939
|
|
|
8940
|
-
var _excluded$
|
|
8940
|
+
var _excluded$39 = ["gradient"];
|
|
8941
8941
|
|
|
8942
8942
|
/**
|
|
8943
8943
|
* @component MyWorkIcon
|
|
@@ -8967,7 +8967,7 @@
|
|
|
8967
8967
|
*/
|
|
8968
8968
|
var MyWorkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8969
8969
|
var gradient = _ref.gradient,
|
|
8970
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8970
|
+
props = _objectWithoutProperties(_ref, _excluded$39);
|
|
8971
8971
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8972
8972
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8973
8973
|
width: 24,
|
|
@@ -8991,7 +8991,7 @@
|
|
|
8991
8991
|
MyWorkIcon.displayName = "MyWorkIcon";
|
|
8992
8992
|
var MyWorkIcon$1 = MyWorkIcon;
|
|
8993
8993
|
|
|
8994
|
-
var _excluded$
|
|
8994
|
+
var _excluded$38 = ["gradient"];
|
|
8995
8995
|
|
|
8996
8996
|
/**
|
|
8997
8997
|
* @component NoteAddIcon
|
|
@@ -9021,7 +9021,7 @@
|
|
|
9021
9021
|
*/
|
|
9022
9022
|
var NoteAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9023
9023
|
var gradient = _ref.gradient,
|
|
9024
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9024
|
+
props = _objectWithoutProperties(_ref, _excluded$38);
|
|
9025
9025
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9026
9026
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9027
9027
|
width: 24,
|
|
@@ -9041,7 +9041,7 @@
|
|
|
9041
9041
|
NoteAddIcon.displayName = "NoteAddIcon";
|
|
9042
9042
|
var NoteAddIcon$1 = NoteAddIcon;
|
|
9043
9043
|
|
|
9044
|
-
var _excluded$
|
|
9044
|
+
var _excluded$37 = ["gradient"];
|
|
9045
9045
|
|
|
9046
9046
|
/**
|
|
9047
9047
|
* @component NoteIcon
|
|
@@ -9071,7 +9071,7 @@
|
|
|
9071
9071
|
*/
|
|
9072
9072
|
var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9073
9073
|
var gradient = _ref.gradient,
|
|
9074
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9074
|
+
props = _objectWithoutProperties(_ref, _excluded$37);
|
|
9075
9075
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9076
9076
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9077
9077
|
width: 24,
|
|
@@ -9091,7 +9091,7 @@
|
|
|
9091
9091
|
NoteIcon.displayName = "NoteIcon";
|
|
9092
9092
|
var NoteIcon$1 = NoteIcon;
|
|
9093
9093
|
|
|
9094
|
-
var _excluded$
|
|
9094
|
+
var _excluded$36 = ["gradient"];
|
|
9095
9095
|
|
|
9096
9096
|
/**
|
|
9097
9097
|
* @component NotebookIcon
|
|
@@ -9121,7 +9121,7 @@
|
|
|
9121
9121
|
*/
|
|
9122
9122
|
var NotebookIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9123
9123
|
var gradient = _ref.gradient,
|
|
9124
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9124
|
+
props = _objectWithoutProperties(_ref, _excluded$36);
|
|
9125
9125
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9126
9126
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9127
9127
|
width: 24,
|
|
@@ -9141,7 +9141,7 @@
|
|
|
9141
9141
|
NotebookIcon.displayName = "NotebookIcon";
|
|
9142
9142
|
var NotebookIcon$1 = NotebookIcon;
|
|
9143
9143
|
|
|
9144
|
-
var _excluded$
|
|
9144
|
+
var _excluded$35 = ["gradient"];
|
|
9145
9145
|
|
|
9146
9146
|
/**
|
|
9147
9147
|
* @component NotificationBellIcon
|
|
@@ -9171,7 +9171,7 @@
|
|
|
9171
9171
|
*/
|
|
9172
9172
|
var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9173
9173
|
var gradient = _ref.gradient,
|
|
9174
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9174
|
+
props = _objectWithoutProperties(_ref, _excluded$35);
|
|
9175
9175
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9176
9176
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9177
9177
|
width: 24,
|
|
@@ -9190,7 +9190,7 @@
|
|
|
9190
9190
|
NotificationBellIcon.displayName = "NotificationBellIcon";
|
|
9191
9191
|
var NotificationBellIcon$1 = NotificationBellIcon;
|
|
9192
9192
|
|
|
9193
|
-
var _excluded$
|
|
9193
|
+
var _excluded$34 = ["gradient"];
|
|
9194
9194
|
|
|
9195
9195
|
/**
|
|
9196
9196
|
* @component OpenExpandedIcon
|
|
@@ -9220,7 +9220,7 @@
|
|
|
9220
9220
|
*/
|
|
9221
9221
|
var OpenExpandedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9222
9222
|
var gradient = _ref.gradient,
|
|
9223
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9223
|
+
props = _objectWithoutProperties(_ref, _excluded$34);
|
|
9224
9224
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9225
9225
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9226
9226
|
width: 24,
|
|
@@ -9240,7 +9240,7 @@
|
|
|
9240
9240
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
9241
9241
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
9242
9242
|
|
|
9243
|
-
var _excluded$
|
|
9243
|
+
var _excluded$33 = ["gradient"];
|
|
9244
9244
|
|
|
9245
9245
|
/**
|
|
9246
9246
|
* @component OpenSheetIcon
|
|
@@ -9270,7 +9270,7 @@
|
|
|
9270
9270
|
*/
|
|
9271
9271
|
var OpenSheetIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9272
9272
|
var gradient = _ref.gradient,
|
|
9273
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9273
|
+
props = _objectWithoutProperties(_ref, _excluded$33);
|
|
9274
9274
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9275
9275
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9276
9276
|
width: 24,
|
|
@@ -9295,7 +9295,7 @@
|
|
|
9295
9295
|
OpenSheetIcon.displayName = "OpenSheetIcon";
|
|
9296
9296
|
var OpenSheetIcon$1 = OpenSheetIcon;
|
|
9297
9297
|
|
|
9298
|
-
var _excluded$
|
|
9298
|
+
var _excluded$32 = ["gradient"];
|
|
9299
9299
|
|
|
9300
9300
|
/**
|
|
9301
9301
|
* @component OrderFirstIcon
|
|
@@ -9325,7 +9325,7 @@
|
|
|
9325
9325
|
*/
|
|
9326
9326
|
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9327
9327
|
var gradient = _ref.gradient,
|
|
9328
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9328
|
+
props = _objectWithoutProperties(_ref, _excluded$32);
|
|
9329
9329
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9330
9330
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9331
9331
|
width: 24,
|
|
@@ -9345,7 +9345,7 @@
|
|
|
9345
9345
|
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
9346
9346
|
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
9347
9347
|
|
|
9348
|
-
var _excluded$
|
|
9348
|
+
var _excluded$31 = ["gradient"];
|
|
9349
9349
|
|
|
9350
9350
|
/**
|
|
9351
9351
|
* @component PaidSmallIcon
|
|
@@ -9375,7 +9375,7 @@
|
|
|
9375
9375
|
*/
|
|
9376
9376
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9377
9377
|
var gradient = _ref.gradient,
|
|
9378
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9378
|
+
props = _objectWithoutProperties(_ref, _excluded$31);
|
|
9379
9379
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9380
9380
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9381
9381
|
width: 12,
|
|
@@ -9395,7 +9395,7 @@
|
|
|
9395
9395
|
PaidSmallIcon.displayName = "PaidSmallIcon";
|
|
9396
9396
|
var PaidSmallIcon$1 = PaidSmallIcon;
|
|
9397
9397
|
|
|
9398
|
-
var _excluded$
|
|
9398
|
+
var _excluded$30 = ["gradient"];
|
|
9399
9399
|
|
|
9400
9400
|
/**
|
|
9401
9401
|
* @component PauseCircleOutlineIcon
|
|
@@ -9425,7 +9425,7 @@
|
|
|
9425
9425
|
*/
|
|
9426
9426
|
var PauseCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9427
9427
|
var gradient = _ref.gradient,
|
|
9428
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9428
|
+
props = _objectWithoutProperties(_ref, _excluded$30);
|
|
9429
9429
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9430
9430
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9431
9431
|
width: 24,
|
|
@@ -9445,7 +9445,7 @@
|
|
|
9445
9445
|
PauseCircleOutlineIcon.displayName = "PauseCircleOutlineIcon";
|
|
9446
9446
|
var PauseCircleOutlineIcon$1 = PauseCircleOutlineIcon;
|
|
9447
9447
|
|
|
9448
|
-
var _excluded$
|
|
9448
|
+
var _excluded$2$ = ["gradient"];
|
|
9449
9449
|
|
|
9450
9450
|
/**
|
|
9451
9451
|
* @component PauseIcon
|
|
@@ -9475,7 +9475,7 @@
|
|
|
9475
9475
|
*/
|
|
9476
9476
|
var PauseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9477
9477
|
var gradient = _ref.gradient,
|
|
9478
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9478
|
+
props = _objectWithoutProperties(_ref, _excluded$2$);
|
|
9479
9479
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9480
9480
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9481
9481
|
width: 24,
|
|
@@ -9495,7 +9495,7 @@
|
|
|
9495
9495
|
PauseIcon.displayName = "PauseIcon";
|
|
9496
9496
|
var PauseIcon$1 = PauseIcon;
|
|
9497
9497
|
|
|
9498
|
-
var _excluded$
|
|
9498
|
+
var _excluded$2_ = ["gradient"];
|
|
9499
9499
|
|
|
9500
9500
|
/**
|
|
9501
9501
|
* @component PauseSmallIcon
|
|
@@ -9525,7 +9525,7 @@
|
|
|
9525
9525
|
*/
|
|
9526
9526
|
var PauseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9527
9527
|
var gradient = _ref.gradient,
|
|
9528
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9528
|
+
props = _objectWithoutProperties(_ref, _excluded$2_);
|
|
9529
9529
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9530
9530
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9531
9531
|
width: 24,
|
|
@@ -9545,7 +9545,7 @@
|
|
|
9545
9545
|
PauseSmallIcon.displayName = "PauseSmallIcon";
|
|
9546
9546
|
var PauseSmallIcon$1 = PauseSmallIcon;
|
|
9547
9547
|
|
|
9548
|
-
var _excluded$
|
|
9548
|
+
var _excluded$2Z = ["gradient"];
|
|
9549
9549
|
|
|
9550
9550
|
/**
|
|
9551
9551
|
* @component PencilSmallIcon
|
|
@@ -9575,7 +9575,7 @@
|
|
|
9575
9575
|
*/
|
|
9576
9576
|
var PencilSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9577
9577
|
var gradient = _ref.gradient,
|
|
9578
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9578
|
+
props = _objectWithoutProperties(_ref, _excluded$2Z);
|
|
9579
9579
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9580
9580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9581
9581
|
width: 12,
|
|
@@ -9594,7 +9594,7 @@
|
|
|
9594
9594
|
PencilSmallIcon.displayName = "PencilSmallIcon";
|
|
9595
9595
|
var PencilSmallIcon$1 = PencilSmallIcon;
|
|
9596
9596
|
|
|
9597
|
-
var _excluded$
|
|
9597
|
+
var _excluded$2Y = ["gradient"];
|
|
9598
9598
|
|
|
9599
9599
|
/**
|
|
9600
9600
|
* @component PencilIcon
|
|
@@ -9624,7 +9624,7 @@
|
|
|
9624
9624
|
*/
|
|
9625
9625
|
var PencilIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9626
9626
|
var gradient = _ref.gradient,
|
|
9627
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9627
|
+
props = _objectWithoutProperties(_ref, _excluded$2Y);
|
|
9628
9628
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9629
9629
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9630
9630
|
width: 24,
|
|
@@ -9643,7 +9643,7 @@
|
|
|
9643
9643
|
PencilIcon.displayName = "PencilIcon";
|
|
9644
9644
|
var PencilIcon$1 = PencilIcon;
|
|
9645
9645
|
|
|
9646
|
-
var _excluded$
|
|
9646
|
+
var _excluded$2X = ["gradient"];
|
|
9647
9647
|
|
|
9648
9648
|
/**
|
|
9649
9649
|
* @component PendingPaymentSmallIcon
|
|
@@ -9673,7 +9673,7 @@
|
|
|
9673
9673
|
*/
|
|
9674
9674
|
var PendingPaymentSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9675
9675
|
var gradient = _ref.gradient,
|
|
9676
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9676
|
+
props = _objectWithoutProperties(_ref, _excluded$2X);
|
|
9677
9677
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9678
9678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9679
9679
|
width: 12,
|
|
@@ -9693,7 +9693,7 @@
|
|
|
9693
9693
|
PendingPaymentSmallIcon.displayName = "PendingPaymentSmallIcon";
|
|
9694
9694
|
var PendingPaymentSmallIcon$1 = PendingPaymentSmallIcon;
|
|
9695
9695
|
|
|
9696
|
-
var _excluded$
|
|
9696
|
+
var _excluded$2W = ["gradient"];
|
|
9697
9697
|
|
|
9698
9698
|
/**
|
|
9699
9699
|
* @component PeopleIcon
|
|
@@ -9723,7 +9723,7 @@
|
|
|
9723
9723
|
*/
|
|
9724
9724
|
var PeopleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9725
9725
|
var gradient = _ref.gradient,
|
|
9726
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9726
|
+
props = _objectWithoutProperties(_ref, _excluded$2W);
|
|
9727
9727
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9728
9728
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9729
9729
|
width: 24,
|
|
@@ -9747,7 +9747,7 @@
|
|
|
9747
9747
|
PeopleIcon.displayName = "PeopleIcon";
|
|
9748
9748
|
var PeopleIcon$1 = PeopleIcon;
|
|
9749
9749
|
|
|
9750
|
-
var _excluded$
|
|
9750
|
+
var _excluded$2V = ["gradient"];
|
|
9751
9751
|
|
|
9752
9752
|
/**
|
|
9753
9753
|
* @component PersonArrowOutCircleIcon
|
|
@@ -9777,7 +9777,7 @@
|
|
|
9777
9777
|
*/
|
|
9778
9778
|
var PersonArrowOutCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9779
9779
|
var gradient = _ref.gradient,
|
|
9780
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9780
|
+
props = _objectWithoutProperties(_ref, _excluded$2V);
|
|
9781
9781
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9782
9782
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9783
9783
|
width: 24,
|
|
@@ -9798,7 +9798,7 @@
|
|
|
9798
9798
|
PersonArrowOutCircleIcon.displayName = "PersonArrowOutCircleIcon";
|
|
9799
9799
|
var PersonArrowOutCircleIcon$1 = PersonArrowOutCircleIcon;
|
|
9800
9800
|
|
|
9801
|
-
var _excluded$
|
|
9801
|
+
var _excluded$2U = ["gradient"];
|
|
9802
9802
|
|
|
9803
9803
|
/**
|
|
9804
9804
|
* @component PersonCircleOffIcon
|
|
@@ -9828,7 +9828,7 @@
|
|
|
9828
9828
|
*/
|
|
9829
9829
|
var PersonCircleOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9830
9830
|
var gradient = _ref.gradient,
|
|
9831
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9831
|
+
props = _objectWithoutProperties(_ref, _excluded$2U);
|
|
9832
9832
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9833
9833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9834
9834
|
width: 24,
|
|
@@ -9848,7 +9848,7 @@
|
|
|
9848
9848
|
PersonCircleOffIcon.displayName = "PersonCircleOffIcon";
|
|
9849
9849
|
var PersonCircleOffIcon$1 = PersonCircleOffIcon;
|
|
9850
9850
|
|
|
9851
|
-
var _excluded$
|
|
9851
|
+
var _excluded$2T = ["gradient"];
|
|
9852
9852
|
|
|
9853
9853
|
/**
|
|
9854
9854
|
* @component PersonCircleIcon
|
|
@@ -9878,7 +9878,7 @@
|
|
|
9878
9878
|
*/
|
|
9879
9879
|
var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9880
9880
|
var gradient = _ref.gradient,
|
|
9881
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9881
|
+
props = _objectWithoutProperties(_ref, _excluded$2T);
|
|
9882
9882
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9883
9883
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9884
9884
|
width: 24,
|
|
@@ -9898,7 +9898,7 @@
|
|
|
9898
9898
|
PersonCircleIcon.displayName = "PersonCircleIcon";
|
|
9899
9899
|
var PersonCircleIcon$1 = PersonCircleIcon;
|
|
9900
9900
|
|
|
9901
|
-
var _excluded$
|
|
9901
|
+
var _excluded$2S = ["gradient"];
|
|
9902
9902
|
|
|
9903
9903
|
/**
|
|
9904
9904
|
* @component PersonListIcon
|
|
@@ -9928,7 +9928,7 @@
|
|
|
9928
9928
|
*/
|
|
9929
9929
|
var PersonListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9930
9930
|
var gradient = _ref.gradient,
|
|
9931
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9931
|
+
props = _objectWithoutProperties(_ref, _excluded$2S);
|
|
9932
9932
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9933
9933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9934
9934
|
width: 24,
|
|
@@ -9949,7 +9949,7 @@
|
|
|
9949
9949
|
PersonListIcon.displayName = "PersonListIcon";
|
|
9950
9950
|
var PersonListIcon$1 = PersonListIcon;
|
|
9951
9951
|
|
|
9952
|
-
var _excluded$
|
|
9952
|
+
var _excluded$2R = ["gradient"];
|
|
9953
9953
|
|
|
9954
9954
|
/**
|
|
9955
9955
|
* @component PersonPlusIcon
|
|
@@ -9979,7 +9979,7 @@
|
|
|
9979
9979
|
*/
|
|
9980
9980
|
var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9981
9981
|
var gradient = _ref.gradient,
|
|
9982
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9982
|
+
props = _objectWithoutProperties(_ref, _excluded$2R);
|
|
9983
9983
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9984
9984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9985
9985
|
width: 24,
|
|
@@ -9999,7 +9999,7 @@
|
|
|
9999
9999
|
PersonPlusIcon.displayName = "PersonPlusIcon";
|
|
10000
10000
|
var PersonPlusIcon$1 = PersonPlusIcon;
|
|
10001
10001
|
|
|
10002
|
-
var _excluded$
|
|
10002
|
+
var _excluded$2Q = ["gradient"];
|
|
10003
10003
|
|
|
10004
10004
|
/**
|
|
10005
10005
|
* @component PersonIcon
|
|
@@ -10029,7 +10029,7 @@
|
|
|
10029
10029
|
*/
|
|
10030
10030
|
var PersonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10031
10031
|
var gradient = _ref.gradient,
|
|
10032
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10032
|
+
props = _objectWithoutProperties(_ref, _excluded$2Q);
|
|
10033
10033
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10034
10034
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10035
10035
|
width: 24,
|
|
@@ -10049,7 +10049,7 @@
|
|
|
10049
10049
|
PersonIcon.displayName = "PersonIcon";
|
|
10050
10050
|
var PersonIcon$1 = PersonIcon;
|
|
10051
10051
|
|
|
10052
|
-
var _excluded$
|
|
10052
|
+
var _excluded$2P = ["gradient"];
|
|
10053
10053
|
|
|
10054
10054
|
/**
|
|
10055
10055
|
* @component PinSmallIcon
|
|
@@ -10079,7 +10079,7 @@
|
|
|
10079
10079
|
*/
|
|
10080
10080
|
var PinSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10081
10081
|
var gradient = _ref.gradient,
|
|
10082
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10082
|
+
props = _objectWithoutProperties(_ref, _excluded$2P);
|
|
10083
10083
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10084
10084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10085
10085
|
width: 12,
|
|
@@ -10100,7 +10100,7 @@
|
|
|
10100
10100
|
PinSmallIcon.displayName = "PinSmallIcon";
|
|
10101
10101
|
var PinSmallIcon$1 = PinSmallIcon;
|
|
10102
10102
|
|
|
10103
|
-
var _excluded$
|
|
10103
|
+
var _excluded$2O = ["gradient"];
|
|
10104
10104
|
|
|
10105
10105
|
/**
|
|
10106
10106
|
* @component PinIcon
|
|
@@ -10130,7 +10130,7 @@
|
|
|
10130
10130
|
*/
|
|
10131
10131
|
var PinIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10132
10132
|
var gradient = _ref.gradient,
|
|
10133
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10133
|
+
props = _objectWithoutProperties(_ref, _excluded$2O);
|
|
10134
10134
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10135
10135
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10136
10136
|
width: 24,
|
|
@@ -10150,7 +10150,7 @@
|
|
|
10150
10150
|
PinIcon.displayName = "PinIcon";
|
|
10151
10151
|
var PinIcon$1 = PinIcon;
|
|
10152
10152
|
|
|
10153
|
-
var _excluded$
|
|
10153
|
+
var _excluded$2N = ["gradient"];
|
|
10154
10154
|
|
|
10155
10155
|
/**
|
|
10156
10156
|
* @component PlayCircleOutlineIcon
|
|
@@ -10180,7 +10180,7 @@
|
|
|
10180
10180
|
*/
|
|
10181
10181
|
var PlayCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10182
10182
|
var gradient = _ref.gradient,
|
|
10183
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10183
|
+
props = _objectWithoutProperties(_ref, _excluded$2N);
|
|
10184
10184
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10185
10185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10186
10186
|
width: 24,
|
|
@@ -10200,7 +10200,7 @@
|
|
|
10200
10200
|
PlayCircleOutlineIcon.displayName = "PlayCircleOutlineIcon";
|
|
10201
10201
|
var PlayCircleOutlineIcon$1 = PlayCircleOutlineIcon;
|
|
10202
10202
|
|
|
10203
|
-
var _excluded$
|
|
10203
|
+
var _excluded$2M = ["gradient"];
|
|
10204
10204
|
|
|
10205
10205
|
/**
|
|
10206
10206
|
* @component PlayIcon
|
|
@@ -10230,7 +10230,7 @@
|
|
|
10230
10230
|
*/
|
|
10231
10231
|
var PlayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10232
10232
|
var gradient = _ref.gradient,
|
|
10233
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10233
|
+
props = _objectWithoutProperties(_ref, _excluded$2M);
|
|
10234
10234
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10235
10235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10236
10236
|
width: 24,
|
|
@@ -10250,7 +10250,7 @@
|
|
|
10250
10250
|
PlayIcon.displayName = "PlayIcon";
|
|
10251
10251
|
var PlayIcon$1 = PlayIcon;
|
|
10252
10252
|
|
|
10253
|
-
var _excluded$
|
|
10253
|
+
var _excluded$2L = ["gradient"];
|
|
10254
10254
|
|
|
10255
10255
|
/**
|
|
10256
10256
|
* @component PlaySmallIcon
|
|
@@ -10280,7 +10280,7 @@
|
|
|
10280
10280
|
*/
|
|
10281
10281
|
var PlaySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10282
10282
|
var gradient = _ref.gradient,
|
|
10283
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10283
|
+
props = _objectWithoutProperties(_ref, _excluded$2L);
|
|
10284
10284
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10285
10285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10286
10286
|
width: 24,
|
|
@@ -10300,7 +10300,7 @@
|
|
|
10300
10300
|
PlaySmallIcon.displayName = "PlaySmallIcon";
|
|
10301
10301
|
var PlaySmallIcon$1 = PlaySmallIcon;
|
|
10302
10302
|
|
|
10303
|
-
var _excluded$
|
|
10303
|
+
var _excluded$2K = ["gradient"];
|
|
10304
10304
|
|
|
10305
10305
|
/**
|
|
10306
10306
|
* @component PriorityLowIcon
|
|
@@ -10330,7 +10330,7 @@
|
|
|
10330
10330
|
*/
|
|
10331
10331
|
var PriorityLowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10332
10332
|
var gradient = _ref.gradient,
|
|
10333
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10333
|
+
props = _objectWithoutProperties(_ref, _excluded$2K);
|
|
10334
10334
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10335
10335
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10336
10336
|
width: 24,
|
|
@@ -10351,7 +10351,7 @@
|
|
|
10351
10351
|
PriorityLowIcon.displayName = "PriorityLowIcon";
|
|
10352
10352
|
var PriorityLowIcon$1 = PriorityLowIcon;
|
|
10353
10353
|
|
|
10354
|
-
var _excluded$
|
|
10354
|
+
var _excluded$2J = ["gradient"];
|
|
10355
10355
|
|
|
10356
10356
|
/**
|
|
10357
10357
|
* @component ProjectAddIcon
|
|
@@ -10381,7 +10381,7 @@
|
|
|
10381
10381
|
*/
|
|
10382
10382
|
var ProjectAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10383
10383
|
var gradient = _ref.gradient,
|
|
10384
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10384
|
+
props = _objectWithoutProperties(_ref, _excluded$2J);
|
|
10385
10385
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10386
10386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10387
10387
|
width: 24,
|
|
@@ -10401,7 +10401,7 @@
|
|
|
10401
10401
|
ProjectAddIcon.displayName = "ProjectAddIcon";
|
|
10402
10402
|
var ProjectAddIcon$1 = ProjectAddIcon;
|
|
10403
10403
|
|
|
10404
|
-
var _excluded$
|
|
10404
|
+
var _excluded$2I = ["gradient"];
|
|
10405
10405
|
|
|
10406
10406
|
/**
|
|
10407
10407
|
* @component ProjectSearchIcon
|
|
@@ -10431,7 +10431,7 @@
|
|
|
10431
10431
|
*/
|
|
10432
10432
|
var ProjectSearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10433
10433
|
var gradient = _ref.gradient,
|
|
10434
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10434
|
+
props = _objectWithoutProperties(_ref, _excluded$2I);
|
|
10435
10435
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10436
10436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10437
10437
|
width: 24,
|
|
@@ -10452,7 +10452,7 @@
|
|
|
10452
10452
|
ProjectSearchIcon.displayName = "ProjectSearchIcon";
|
|
10453
10453
|
var ProjectSearchIcon$1 = ProjectSearchIcon;
|
|
10454
10454
|
|
|
10455
|
-
var _excluded$
|
|
10455
|
+
var _excluded$2H = ["gradient"];
|
|
10456
10456
|
|
|
10457
10457
|
/**
|
|
10458
10458
|
* @component ProjectStarIcon
|
|
@@ -10482,7 +10482,7 @@
|
|
|
10482
10482
|
*/
|
|
10483
10483
|
var ProjectStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10484
10484
|
var gradient = _ref.gradient,
|
|
10485
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10485
|
+
props = _objectWithoutProperties(_ref, _excluded$2H);
|
|
10486
10486
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10487
10487
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10488
10488
|
width: 24,
|
|
@@ -10505,7 +10505,7 @@
|
|
|
10505
10505
|
ProjectStarIcon.displayName = "ProjectStarIcon";
|
|
10506
10506
|
var ProjectStarIcon$1 = ProjectStarIcon;
|
|
10507
10507
|
|
|
10508
|
-
var _excluded$
|
|
10508
|
+
var _excluded$2G = ["gradient"];
|
|
10509
10509
|
|
|
10510
10510
|
/**
|
|
10511
10511
|
* @component ProjectTemplateAddIcon
|
|
@@ -10535,7 +10535,7 @@
|
|
|
10535
10535
|
*/
|
|
10536
10536
|
var ProjectTemplateAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10537
10537
|
var gradient = _ref.gradient,
|
|
10538
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10538
|
+
props = _objectWithoutProperties(_ref, _excluded$2G);
|
|
10539
10539
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10540
10540
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10541
10541
|
width: 24,
|
|
@@ -10555,7 +10555,7 @@
|
|
|
10555
10555
|
ProjectTemplateAddIcon.displayName = "ProjectTemplateAddIcon";
|
|
10556
10556
|
var ProjectTemplateAddIcon$1 = ProjectTemplateAddIcon;
|
|
10557
10557
|
|
|
10558
|
-
var _excluded$
|
|
10558
|
+
var _excluded$2F = ["gradient"];
|
|
10559
10559
|
|
|
10560
10560
|
/**
|
|
10561
10561
|
* @component ProjectTemplateConvertIcon
|
|
@@ -10585,7 +10585,7 @@
|
|
|
10585
10585
|
*/
|
|
10586
10586
|
var ProjectTemplateConvertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10587
10587
|
var gradient = _ref.gradient,
|
|
10588
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10588
|
+
props = _objectWithoutProperties(_ref, _excluded$2F);
|
|
10589
10589
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10590
10590
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10591
10591
|
width: 24,
|
|
@@ -10605,7 +10605,7 @@
|
|
|
10605
10605
|
ProjectTemplateConvertIcon.displayName = "ProjectTemplateConvertIcon";
|
|
10606
10606
|
var ProjectTemplateConvertIcon$1 = ProjectTemplateConvertIcon;
|
|
10607
10607
|
|
|
10608
|
-
var _excluded$
|
|
10608
|
+
var _excluded$2E = ["gradient"];
|
|
10609
10609
|
|
|
10610
10610
|
/**
|
|
10611
10611
|
* @component ProjectTemplateIcon
|
|
@@ -10635,7 +10635,7 @@
|
|
|
10635
10635
|
*/
|
|
10636
10636
|
var ProjectTemplateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10637
10637
|
var gradient = _ref.gradient,
|
|
10638
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10638
|
+
props = _objectWithoutProperties(_ref, _excluded$2E);
|
|
10639
10639
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10640
10640
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10641
10641
|
width: 24,
|
|
@@ -10655,7 +10655,7 @@
|
|
|
10655
10655
|
ProjectTemplateIcon.displayName = "ProjectTemplateIcon";
|
|
10656
10656
|
var ProjectTemplateIcon$1 = ProjectTemplateIcon;
|
|
10657
10657
|
|
|
10658
|
-
var _excluded$
|
|
10658
|
+
var _excluded$2D = ["gradient"];
|
|
10659
10659
|
|
|
10660
10660
|
/**
|
|
10661
10661
|
* @component ProjectsIcon
|
|
@@ -10685,7 +10685,7 @@
|
|
|
10685
10685
|
*/
|
|
10686
10686
|
var ProjectsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10687
10687
|
var gradient = _ref.gradient,
|
|
10688
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10688
|
+
props = _objectWithoutProperties(_ref, _excluded$2D);
|
|
10689
10689
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10690
10690
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10691
10691
|
width: 24,
|
|
@@ -10709,7 +10709,7 @@
|
|
|
10709
10709
|
ProjectsIcon.displayName = "ProjectsIcon";
|
|
10710
10710
|
var ProjectsIcon$1 = ProjectsIcon;
|
|
10711
10711
|
|
|
10712
|
-
var _excluded$
|
|
10712
|
+
var _excluded$2C = ["gradient"];
|
|
10713
10713
|
|
|
10714
10714
|
/**
|
|
10715
10715
|
* @component PuzzleIcon
|
|
@@ -10739,7 +10739,7 @@
|
|
|
10739
10739
|
*/
|
|
10740
10740
|
var PuzzleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10741
10741
|
var gradient = _ref.gradient,
|
|
10742
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10742
|
+
props = _objectWithoutProperties(_ref, _excluded$2C);
|
|
10743
10743
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10744
10744
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10745
10745
|
width: 24,
|
|
@@ -10760,7 +10760,7 @@
|
|
|
10760
10760
|
PuzzleIcon.displayName = "PuzzleIcon";
|
|
10761
10761
|
var PuzzleIcon$1 = PuzzleIcon;
|
|
10762
10762
|
|
|
10763
|
-
var _excluded$
|
|
10763
|
+
var _excluded$2B = ["gradient"];
|
|
10764
10764
|
|
|
10765
10765
|
/**
|
|
10766
10766
|
* @component RadioBlankIcon
|
|
@@ -10790,7 +10790,7 @@
|
|
|
10790
10790
|
*/
|
|
10791
10791
|
var RadioBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10792
10792
|
var gradient = _ref.gradient,
|
|
10793
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10793
|
+
props = _objectWithoutProperties(_ref, _excluded$2B);
|
|
10794
10794
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10795
10795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10796
10796
|
width: 24,
|
|
@@ -10810,7 +10810,7 @@
|
|
|
10810
10810
|
RadioBlankIcon.displayName = "RadioBlankIcon";
|
|
10811
10811
|
var RadioBlankIcon$1 = RadioBlankIcon;
|
|
10812
10812
|
|
|
10813
|
-
var _excluded$
|
|
10813
|
+
var _excluded$2A = ["gradient"];
|
|
10814
10814
|
|
|
10815
10815
|
/**
|
|
10816
10816
|
* @component RadioButtonIcon
|
|
@@ -10840,7 +10840,7 @@
|
|
|
10840
10840
|
*/
|
|
10841
10841
|
var RadioButtonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10842
10842
|
var gradient = _ref.gradient,
|
|
10843
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10843
|
+
props = _objectWithoutProperties(_ref, _excluded$2A);
|
|
10844
10844
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10845
10845
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10846
10846
|
width: 16,
|
|
@@ -10868,7 +10868,7 @@
|
|
|
10868
10868
|
RadioButtonIcon.displayName = "RadioButtonIcon";
|
|
10869
10869
|
var RadioButtonIcon$1 = RadioButtonIcon;
|
|
10870
10870
|
|
|
10871
|
-
var _excluded$
|
|
10871
|
+
var _excluded$2z = ["gradient"];
|
|
10872
10872
|
|
|
10873
10873
|
/**
|
|
10874
10874
|
* @component RearangeIcon
|
|
@@ -10898,7 +10898,7 @@
|
|
|
10898
10898
|
*/
|
|
10899
10899
|
var RearangeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10900
10900
|
var gradient = _ref.gradient,
|
|
10901
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10901
|
+
props = _objectWithoutProperties(_ref, _excluded$2z);
|
|
10902
10902
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10903
10903
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10904
10904
|
width: 24,
|
|
@@ -10918,7 +10918,7 @@
|
|
|
10918
10918
|
RearangeIcon.displayName = "RearangeIcon";
|
|
10919
10919
|
var RearangeIcon$1 = RearangeIcon;
|
|
10920
10920
|
|
|
10921
|
-
var _excluded$
|
|
10921
|
+
var _excluded$2y = ["gradient"];
|
|
10922
10922
|
|
|
10923
10923
|
/**
|
|
10924
10924
|
* @component RearrangeSmallIcon
|
|
@@ -10948,7 +10948,7 @@
|
|
|
10948
10948
|
*/
|
|
10949
10949
|
var RearrangeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10950
10950
|
var gradient = _ref.gradient,
|
|
10951
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10951
|
+
props = _objectWithoutProperties(_ref, _excluded$2y);
|
|
10952
10952
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10953
10953
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10954
10954
|
width: 12,
|
|
@@ -10968,7 +10968,7 @@
|
|
|
10968
10968
|
RearrangeSmallIcon.displayName = "RearrangeSmallIcon";
|
|
10969
10969
|
var RearrangeSmallIcon$1 = RearrangeSmallIcon;
|
|
10970
10970
|
|
|
10971
|
-
var _excluded$
|
|
10971
|
+
var _excluded$2x = ["gradient"];
|
|
10972
10972
|
|
|
10973
10973
|
/**
|
|
10974
10974
|
* @component RecurringCheckmarkSmallIcon
|
|
@@ -10998,7 +10998,7 @@
|
|
|
10998
10998
|
*/
|
|
10999
10999
|
var RecurringCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11000
11000
|
var gradient = _ref.gradient,
|
|
11001
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11001
|
+
props = _objectWithoutProperties(_ref, _excluded$2x);
|
|
11002
11002
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11003
11003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11004
11004
|
width: 12,
|
|
@@ -11018,7 +11018,7 @@
|
|
|
11018
11018
|
RecurringCheckmarkSmallIcon.displayName = "RecurringCheckmarkSmallIcon";
|
|
11019
11019
|
var RecurringCheckmarkSmallIcon$1 = RecurringCheckmarkSmallIcon;
|
|
11020
11020
|
|
|
11021
|
-
var _excluded$
|
|
11021
|
+
var _excluded$2w = ["gradient"];
|
|
11022
11022
|
|
|
11023
11023
|
/**
|
|
11024
11024
|
* @component RecurringCheckmarkIcon
|
|
@@ -11048,7 +11048,7 @@
|
|
|
11048
11048
|
*/
|
|
11049
11049
|
var RecurringCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11050
11050
|
var gradient = _ref.gradient,
|
|
11051
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11051
|
+
props = _objectWithoutProperties(_ref, _excluded$2w);
|
|
11052
11052
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11053
11053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11054
11054
|
width: 24,
|
|
@@ -11068,7 +11068,7 @@
|
|
|
11068
11068
|
RecurringCheckmarkIcon.displayName = "RecurringCheckmarkIcon";
|
|
11069
11069
|
var RecurringCheckmarkIcon$1 = RecurringCheckmarkIcon;
|
|
11070
11070
|
|
|
11071
|
-
var _excluded$
|
|
11071
|
+
var _excluded$2v = ["gradient"];
|
|
11072
11072
|
|
|
11073
11073
|
/**
|
|
11074
11074
|
* @component RecurringDollarIcon
|
|
@@ -11098,7 +11098,7 @@
|
|
|
11098
11098
|
*/
|
|
11099
11099
|
var RecurringDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11100
11100
|
var gradient = _ref.gradient,
|
|
11101
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11101
|
+
props = _objectWithoutProperties(_ref, _excluded$2v);
|
|
11102
11102
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11103
11103
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11104
11104
|
width: 24,
|
|
@@ -11120,7 +11120,7 @@
|
|
|
11120
11120
|
RecurringDollarIcon.displayName = "RecurringDollarIcon";
|
|
11121
11121
|
var RecurringDollarIcon$1 = RecurringDollarIcon;
|
|
11122
11122
|
|
|
11123
|
-
var _excluded$
|
|
11123
|
+
var _excluded$2u = ["gradient"];
|
|
11124
11124
|
|
|
11125
11125
|
/**
|
|
11126
11126
|
* @component RecurringSmallIcon
|
|
@@ -11150,7 +11150,7 @@
|
|
|
11150
11150
|
*/
|
|
11151
11151
|
var RecurringSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11152
11152
|
var gradient = _ref.gradient,
|
|
11153
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11153
|
+
props = _objectWithoutProperties(_ref, _excluded$2u);
|
|
11154
11154
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11155
11155
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11156
11156
|
width: 12,
|
|
@@ -11171,7 +11171,7 @@
|
|
|
11171
11171
|
RecurringSmallIcon.displayName = "RecurringSmallIcon";
|
|
11172
11172
|
var RecurringSmallIcon$1 = RecurringSmallIcon;
|
|
11173
11173
|
|
|
11174
|
-
var _excluded$
|
|
11174
|
+
var _excluded$2t = ["gradient"];
|
|
11175
11175
|
|
|
11176
11176
|
/**
|
|
11177
11177
|
* @component ReminderIcon
|
|
@@ -11201,7 +11201,7 @@
|
|
|
11201
11201
|
*/
|
|
11202
11202
|
var ReminderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11203
11203
|
var gradient = _ref.gradient,
|
|
11204
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11204
|
+
props = _objectWithoutProperties(_ref, _excluded$2t);
|
|
11205
11205
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11206
11206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11207
11207
|
width: 18,
|
|
@@ -11227,7 +11227,7 @@
|
|
|
11227
11227
|
ReminderIcon.displayName = "ReminderIcon";
|
|
11228
11228
|
var ReminderIcon$1 = ReminderIcon;
|
|
11229
11229
|
|
|
11230
|
-
var _excluded$
|
|
11230
|
+
var _excluded$2s = ["gradient"];
|
|
11231
11231
|
|
|
11232
11232
|
/**
|
|
11233
11233
|
* @component ReorderIcon
|
|
@@ -11257,7 +11257,7 @@
|
|
|
11257
11257
|
*/
|
|
11258
11258
|
var ReorderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11259
11259
|
var gradient = _ref.gradient,
|
|
11260
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11260
|
+
props = _objectWithoutProperties(_ref, _excluded$2s);
|
|
11261
11261
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11262
11262
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11263
11263
|
width: 24,
|
|
@@ -11276,7 +11276,7 @@
|
|
|
11276
11276
|
ReorderIcon.displayName = "ReorderIcon";
|
|
11277
11277
|
var ReorderIcon$1 = ReorderIcon;
|
|
11278
11278
|
|
|
11279
|
-
var _excluded$
|
|
11279
|
+
var _excluded$2r = ["gradient"];
|
|
11280
11280
|
|
|
11281
11281
|
/**
|
|
11282
11282
|
* @component ReportTimeIcon
|
|
@@ -11306,7 +11306,7 @@
|
|
|
11306
11306
|
*/
|
|
11307
11307
|
var ReportTimeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11308
11308
|
var gradient = _ref.gradient,
|
|
11309
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11309
|
+
props = _objectWithoutProperties(_ref, _excluded$2r);
|
|
11310
11310
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11311
11311
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11312
11312
|
width: 24,
|
|
@@ -11326,7 +11326,7 @@
|
|
|
11326
11326
|
ReportTimeIcon.displayName = "ReportTimeIcon";
|
|
11327
11327
|
var ReportTimeIcon$1 = ReportTimeIcon;
|
|
11328
11328
|
|
|
11329
|
-
var _excluded$
|
|
11329
|
+
var _excluded$2q = ["gradient"];
|
|
11330
11330
|
|
|
11331
11331
|
/**
|
|
11332
11332
|
* @component ReportsIcon
|
|
@@ -11356,7 +11356,7 @@
|
|
|
11356
11356
|
*/
|
|
11357
11357
|
var ReportsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11358
11358
|
var gradient = _ref.gradient,
|
|
11359
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11359
|
+
props = _objectWithoutProperties(_ref, _excluded$2q);
|
|
11360
11360
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11361
11361
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11362
11362
|
width: 24,
|
|
@@ -11380,7 +11380,7 @@
|
|
|
11380
11380
|
ReportsIcon.displayName = "ReportsIcon";
|
|
11381
11381
|
var ReportsIcon$1 = ReportsIcon;
|
|
11382
11382
|
|
|
11383
|
-
var _excluded$
|
|
11383
|
+
var _excluded$2p = ["gradient"];
|
|
11384
11384
|
|
|
11385
11385
|
/**
|
|
11386
11386
|
* @component RobotIcon
|
|
@@ -11410,7 +11410,7 @@
|
|
|
11410
11410
|
*/
|
|
11411
11411
|
var RobotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11412
11412
|
var gradient = _ref.gradient,
|
|
11413
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11413
|
+
props = _objectWithoutProperties(_ref, _excluded$2p);
|
|
11414
11414
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11415
11415
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11416
11416
|
width: 24,
|
|
@@ -11433,7 +11433,7 @@
|
|
|
11433
11433
|
RobotIcon.displayName = "RobotIcon";
|
|
11434
11434
|
var RobotIcon$1 = RobotIcon;
|
|
11435
11435
|
|
|
11436
|
-
var _excluded$
|
|
11436
|
+
var _excluded$2o = ["gradient"];
|
|
11437
11437
|
|
|
11438
11438
|
/**
|
|
11439
11439
|
* @component RocketSmallIcon
|
|
@@ -11463,7 +11463,7 @@
|
|
|
11463
11463
|
*/
|
|
11464
11464
|
var RocketSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11465
11465
|
var gradient = _ref.gradient,
|
|
11466
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11466
|
+
props = _objectWithoutProperties(_ref, _excluded$2o);
|
|
11467
11467
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11468
11468
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11469
11469
|
width: 18,
|
|
@@ -11481,7 +11481,7 @@
|
|
|
11481
11481
|
RocketSmallIcon.displayName = "RocketSmallIcon";
|
|
11482
11482
|
var RocketSmallIcon$1 = RocketSmallIcon;
|
|
11483
11483
|
|
|
11484
|
-
var _excluded$
|
|
11484
|
+
var _excluded$2n = ["gradient"];
|
|
11485
11485
|
|
|
11486
11486
|
/**
|
|
11487
11487
|
* @component RocketIcon
|
|
@@ -11511,7 +11511,7 @@
|
|
|
11511
11511
|
*/
|
|
11512
11512
|
var RocketIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11513
11513
|
var gradient = _ref.gradient,
|
|
11514
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11514
|
+
props = _objectWithoutProperties(_ref, _excluded$2n);
|
|
11515
11515
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11516
11516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11517
11517
|
width: 24,
|
|
@@ -11530,7 +11530,7 @@
|
|
|
11530
11530
|
RocketIcon.displayName = "RocketIcon";
|
|
11531
11531
|
var RocketIcon$1 = RocketIcon;
|
|
11532
11532
|
|
|
11533
|
-
var _excluded$
|
|
11533
|
+
var _excluded$2m = ["gradient"];
|
|
11534
11534
|
|
|
11535
11535
|
/**
|
|
11536
11536
|
* @component RoundedRectangleIcon
|
|
@@ -11560,7 +11560,7 @@
|
|
|
11560
11560
|
*/
|
|
11561
11561
|
var RoundedRectangleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11562
11562
|
var gradient = _ref.gradient,
|
|
11563
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11563
|
+
props = _objectWithoutProperties(_ref, _excluded$2m);
|
|
11564
11564
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11565
11565
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11566
11566
|
width: 24,
|
|
@@ -11586,7 +11586,7 @@
|
|
|
11586
11586
|
RoundedRectangleIcon.displayName = "RoundedRectangleIcon";
|
|
11587
11587
|
var RoundedRectangleIcon$1 = RoundedRectangleIcon;
|
|
11588
11588
|
|
|
11589
|
-
var _excluded$
|
|
11589
|
+
var _excluded$2l = ["gradient"];
|
|
11590
11590
|
|
|
11591
11591
|
/**
|
|
11592
11592
|
* @component SaveIcon
|
|
@@ -11616,7 +11616,7 @@
|
|
|
11616
11616
|
*/
|
|
11617
11617
|
var SaveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11618
11618
|
var gradient = _ref.gradient,
|
|
11619
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11619
|
+
props = _objectWithoutProperties(_ref, _excluded$2l);
|
|
11620
11620
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11621
11621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11622
11622
|
width: 24,
|
|
@@ -11637,7 +11637,7 @@
|
|
|
11637
11637
|
SaveIcon.displayName = "SaveIcon";
|
|
11638
11638
|
var SaveIcon$1 = SaveIcon;
|
|
11639
11639
|
|
|
11640
|
-
var _excluded$
|
|
11640
|
+
var _excluded$2k = ["gradient"];
|
|
11641
11641
|
|
|
11642
11642
|
/**
|
|
11643
11643
|
* @component SearchLargeIcon
|
|
@@ -11667,7 +11667,7 @@
|
|
|
11667
11667
|
*/
|
|
11668
11668
|
var SearchLargeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11669
11669
|
var gradient = _ref.gradient,
|
|
11670
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11670
|
+
props = _objectWithoutProperties(_ref, _excluded$2k);
|
|
11671
11671
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11672
11672
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11673
11673
|
width: 32,
|
|
@@ -11688,7 +11688,7 @@
|
|
|
11688
11688
|
SearchLargeIcon.displayName = "SearchLargeIcon";
|
|
11689
11689
|
var SearchLargeIcon$1 = SearchLargeIcon;
|
|
11690
11690
|
|
|
11691
|
-
var _excluded$
|
|
11691
|
+
var _excluded$2j = ["gradient"];
|
|
11692
11692
|
|
|
11693
11693
|
/**
|
|
11694
11694
|
* @component SearchPlusIcon
|
|
@@ -11718,7 +11718,7 @@
|
|
|
11718
11718
|
*/
|
|
11719
11719
|
var SearchPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11720
11720
|
var gradient = _ref.gradient,
|
|
11721
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11721
|
+
props = _objectWithoutProperties(_ref, _excluded$2j);
|
|
11722
11722
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11723
11723
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11724
11724
|
width: 24,
|
|
@@ -11742,7 +11742,7 @@
|
|
|
11742
11742
|
SearchPlusIcon.displayName = "SearchPlusIcon";
|
|
11743
11743
|
var SearchPlusIcon$1 = SearchPlusIcon;
|
|
11744
11744
|
|
|
11745
|
-
var _excluded$
|
|
11745
|
+
var _excluded$2i = ["gradient"];
|
|
11746
11746
|
|
|
11747
11747
|
/**
|
|
11748
11748
|
* @component SearchIcon
|
|
@@ -11772,7 +11772,7 @@
|
|
|
11772
11772
|
*/
|
|
11773
11773
|
var SearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11774
11774
|
var gradient = _ref.gradient,
|
|
11775
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11775
|
+
props = _objectWithoutProperties(_ref, _excluded$2i);
|
|
11776
11776
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11777
11777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11778
11778
|
width: 24,
|
|
@@ -11791,7 +11791,7 @@
|
|
|
11791
11791
|
SearchIcon.displayName = "SearchIcon";
|
|
11792
11792
|
var SearchIcon$1 = SearchIcon;
|
|
11793
11793
|
|
|
11794
|
-
var _excluded$
|
|
11794
|
+
var _excluded$2h = ["gradient"];
|
|
11795
11795
|
|
|
11796
11796
|
/**
|
|
11797
11797
|
* @component SendBlankIcon
|
|
@@ -11821,7 +11821,7 @@
|
|
|
11821
11821
|
*/
|
|
11822
11822
|
var SendBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11823
11823
|
var gradient = _ref.gradient,
|
|
11824
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11824
|
+
props = _objectWithoutProperties(_ref, _excluded$2h);
|
|
11825
11825
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11826
11826
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11827
11827
|
width: 24,
|
|
@@ -11840,7 +11840,7 @@
|
|
|
11840
11840
|
SendBlankIcon.displayName = "SendBlankIcon";
|
|
11841
11841
|
var SendBlankIcon$1 = SendBlankIcon;
|
|
11842
11842
|
|
|
11843
|
-
var _excluded$
|
|
11843
|
+
var _excluded$2g = ["gradient"];
|
|
11844
11844
|
|
|
11845
11845
|
/**
|
|
11846
11846
|
* @component SendFilledIcon
|
|
@@ -11870,7 +11870,7 @@
|
|
|
11870
11870
|
*/
|
|
11871
11871
|
var SendFilledIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11872
11872
|
var gradient = _ref.gradient,
|
|
11873
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11873
|
+
props = _objectWithoutProperties(_ref, _excluded$2g);
|
|
11874
11874
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11875
11875
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11876
11876
|
width: 24,
|
|
@@ -11889,7 +11889,7 @@
|
|
|
11889
11889
|
SendFilledIcon.displayName = "SendFilledIcon";
|
|
11890
11890
|
var SendFilledIcon$1 = SendFilledIcon;
|
|
11891
11891
|
|
|
11892
|
-
var _excluded$
|
|
11892
|
+
var _excluded$2f = ["gradient"];
|
|
11893
11893
|
|
|
11894
11894
|
/**
|
|
11895
11895
|
* @component SettingsIcon
|
|
@@ -11919,7 +11919,7 @@
|
|
|
11919
11919
|
*/
|
|
11920
11920
|
var SettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11921
11921
|
var gradient = _ref.gradient,
|
|
11922
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11922
|
+
props = _objectWithoutProperties(_ref, _excluded$2f);
|
|
11923
11923
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11924
11924
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11925
11925
|
width: 24,
|
|
@@ -11939,7 +11939,7 @@
|
|
|
11939
11939
|
SettingsIcon.displayName = "SettingsIcon";
|
|
11940
11940
|
var SettingsIcon$1 = SettingsIcon;
|
|
11941
11941
|
|
|
11942
|
-
var _excluded$
|
|
11942
|
+
var _excluded$2e = ["gradient"];
|
|
11943
11943
|
|
|
11944
11944
|
/**
|
|
11945
11945
|
* @component ShapesIcon
|
|
@@ -11969,7 +11969,7 @@
|
|
|
11969
11969
|
*/
|
|
11970
11970
|
var ShapesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11971
11971
|
var gradient = _ref.gradient,
|
|
11972
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11972
|
+
props = _objectWithoutProperties(_ref, _excluded$2e);
|
|
11973
11973
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11974
11974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11975
11975
|
width: 24,
|
|
@@ -11989,7 +11989,7 @@
|
|
|
11989
11989
|
ShapesIcon.displayName = "ShapesIcon";
|
|
11990
11990
|
var ShapesIcon$1 = ShapesIcon;
|
|
11991
11991
|
|
|
11992
|
-
var _excluded$
|
|
11992
|
+
var _excluded$2d = ["gradient"];
|
|
11993
11993
|
|
|
11994
11994
|
/**
|
|
11995
11995
|
* @component ShieldIcon
|
|
@@ -12019,7 +12019,7 @@
|
|
|
12019
12019
|
*/
|
|
12020
12020
|
var ShieldIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12021
12021
|
var gradient = _ref.gradient,
|
|
12022
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12022
|
+
props = _objectWithoutProperties(_ref, _excluded$2d);
|
|
12023
12023
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12024
12024
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12025
12025
|
width: 24,
|
|
@@ -12040,7 +12040,7 @@
|
|
|
12040
12040
|
ShieldIcon.displayName = "ShieldIcon";
|
|
12041
12041
|
var ShieldIcon$1 = ShieldIcon;
|
|
12042
12042
|
|
|
12043
|
-
var _excluded$
|
|
12043
|
+
var _excluded$2c = ["gradient"];
|
|
12044
12044
|
|
|
12045
12045
|
/**
|
|
12046
12046
|
* @component SidebarLeftIcon
|
|
@@ -12070,7 +12070,7 @@
|
|
|
12070
12070
|
*/
|
|
12071
12071
|
var SidebarLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12072
12072
|
var gradient = _ref.gradient,
|
|
12073
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12073
|
+
props = _objectWithoutProperties(_ref, _excluded$2c);
|
|
12074
12074
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12075
12075
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12076
12076
|
width: 24,
|
|
@@ -12095,7 +12095,7 @@
|
|
|
12095
12095
|
SidebarLeftIcon.displayName = "SidebarLeftIcon";
|
|
12096
12096
|
var SidebarLeftIcon$1 = SidebarLeftIcon;
|
|
12097
12097
|
|
|
12098
|
-
var _excluded$
|
|
12098
|
+
var _excluded$2b = ["gradient"];
|
|
12099
12099
|
|
|
12100
12100
|
/**
|
|
12101
12101
|
* @component SidebarRightIcon
|
|
@@ -12125,7 +12125,7 @@
|
|
|
12125
12125
|
*/
|
|
12126
12126
|
var SidebarRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12127
12127
|
var gradient = _ref.gradient,
|
|
12128
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12128
|
+
props = _objectWithoutProperties(_ref, _excluded$2b);
|
|
12129
12129
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12130
12130
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12131
12131
|
width: 24,
|
|
@@ -12150,7 +12150,7 @@
|
|
|
12150
12150
|
SidebarRightIcon.displayName = "SidebarRightIcon";
|
|
12151
12151
|
var SidebarRightIcon$1 = SidebarRightIcon;
|
|
12152
12152
|
|
|
12153
|
-
var _excluded$
|
|
12153
|
+
var _excluded$2a = ["gradient"];
|
|
12154
12154
|
|
|
12155
12155
|
/**
|
|
12156
12156
|
* @component SortGeneralIcon
|
|
@@ -12180,7 +12180,7 @@
|
|
|
12180
12180
|
*/
|
|
12181
12181
|
var SortGeneralIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12182
12182
|
var gradient = _ref.gradient,
|
|
12183
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12183
|
+
props = _objectWithoutProperties(_ref, _excluded$2a);
|
|
12184
12184
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12185
12185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12186
12186
|
width: 24,
|
|
@@ -12200,7 +12200,7 @@
|
|
|
12200
12200
|
SortGeneralIcon.displayName = "SortGeneralIcon";
|
|
12201
12201
|
var SortGeneralIcon$1 = SortGeneralIcon;
|
|
12202
12202
|
|
|
12203
|
-
var _excluded$
|
|
12203
|
+
var _excluded$29 = ["gradient"];
|
|
12204
12204
|
|
|
12205
12205
|
/**
|
|
12206
12206
|
* @component SortIcon
|
|
@@ -12230,7 +12230,7 @@
|
|
|
12230
12230
|
*/
|
|
12231
12231
|
var SortIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12232
12232
|
var gradient = _ref.gradient,
|
|
12233
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12233
|
+
props = _objectWithoutProperties(_ref, _excluded$29);
|
|
12234
12234
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12235
12235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12236
12236
|
width: 10,
|
|
@@ -12250,7 +12250,7 @@
|
|
|
12250
12250
|
SortIcon.displayName = "SortIcon";
|
|
12251
12251
|
var SortIcon$1 = SortIcon;
|
|
12252
12252
|
|
|
12253
|
-
var _excluded$
|
|
12253
|
+
var _excluded$28 = ["gradient"];
|
|
12254
12254
|
|
|
12255
12255
|
/**
|
|
12256
12256
|
* @component SortListIcon
|
|
@@ -12280,7 +12280,7 @@
|
|
|
12280
12280
|
*/
|
|
12281
12281
|
var SortListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12282
12282
|
var gradient = _ref.gradient,
|
|
12283
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12283
|
+
props = _objectWithoutProperties(_ref, _excluded$28);
|
|
12284
12284
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12285
12285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12286
12286
|
width: 20,
|
|
@@ -12300,7 +12300,7 @@
|
|
|
12300
12300
|
SortListIcon.displayName = "SortListIcon";
|
|
12301
12301
|
var SortListIcon$1 = SortListIcon;
|
|
12302
12302
|
|
|
12303
|
-
var _excluded$
|
|
12303
|
+
var _excluded$27 = ["gradient"];
|
|
12304
12304
|
|
|
12305
12305
|
/**
|
|
12306
12306
|
* @component SortSmallIcon
|
|
@@ -12330,7 +12330,7 @@
|
|
|
12330
12330
|
*/
|
|
12331
12331
|
var SortSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12332
12332
|
var gradient = _ref.gradient,
|
|
12333
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12333
|
+
props = _objectWithoutProperties(_ref, _excluded$27);
|
|
12334
12334
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12335
12335
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12336
12336
|
width: 10,
|
|
@@ -12351,7 +12351,7 @@
|
|
|
12351
12351
|
SortSmallIcon.displayName = "SortSmallIcon";
|
|
12352
12352
|
var SortSmallIcon$1 = SortSmallIcon;
|
|
12353
12353
|
|
|
12354
|
-
var _excluded$
|
|
12354
|
+
var _excluded$26 = ["gradient"];
|
|
12355
12355
|
|
|
12356
12356
|
/**
|
|
12357
12357
|
* @component SparkIcon
|
|
@@ -12381,7 +12381,7 @@
|
|
|
12381
12381
|
*/
|
|
12382
12382
|
var SparkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12383
12383
|
var gradient = _ref.gradient,
|
|
12384
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12384
|
+
props = _objectWithoutProperties(_ref, _excluded$26);
|
|
12385
12385
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12386
12386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12387
12387
|
width: 24,
|
|
@@ -12404,7 +12404,7 @@
|
|
|
12404
12404
|
SparkIcon.displayName = "SparkIcon";
|
|
12405
12405
|
var SparkIcon$1 = SparkIcon;
|
|
12406
12406
|
|
|
12407
|
-
var _excluded$
|
|
12407
|
+
var _excluded$25 = ["gradient"];
|
|
12408
12408
|
|
|
12409
12409
|
/**
|
|
12410
12410
|
* @component StarOutlineIcon
|
|
@@ -12434,7 +12434,7 @@
|
|
|
12434
12434
|
*/
|
|
12435
12435
|
var StarOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12436
12436
|
var gradient = _ref.gradient,
|
|
12437
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12437
|
+
props = _objectWithoutProperties(_ref, _excluded$25);
|
|
12438
12438
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12439
12439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12440
12440
|
width: 24,
|
|
@@ -12454,7 +12454,7 @@
|
|
|
12454
12454
|
StarOutlineIcon.displayName = "StarOutlineIcon";
|
|
12455
12455
|
var StarOutlineIcon$1 = StarOutlineIcon;
|
|
12456
12456
|
|
|
12457
|
-
var _excluded$
|
|
12457
|
+
var _excluded$24 = ["gradient"];
|
|
12458
12458
|
|
|
12459
12459
|
/**
|
|
12460
12460
|
* @component StarIcon
|
|
@@ -12484,7 +12484,7 @@
|
|
|
12484
12484
|
*/
|
|
12485
12485
|
var StarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12486
12486
|
var gradient = _ref.gradient,
|
|
12487
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12487
|
+
props = _objectWithoutProperties(_ref, _excluded$24);
|
|
12488
12488
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12489
12489
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12490
12490
|
width: 24,
|
|
@@ -12504,7 +12504,7 @@
|
|
|
12504
12504
|
StarIcon.displayName = "StarIcon";
|
|
12505
12505
|
var StarIcon$1 = StarIcon;
|
|
12506
12506
|
|
|
12507
|
-
var _excluded$
|
|
12507
|
+
var _excluded$23 = ["gradient"];
|
|
12508
12508
|
|
|
12509
12509
|
/**
|
|
12510
12510
|
* @component StatusIcon
|
|
@@ -12534,7 +12534,7 @@
|
|
|
12534
12534
|
*/
|
|
12535
12535
|
var StatusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12536
12536
|
var gradient = _ref.gradient,
|
|
12537
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12537
|
+
props = _objectWithoutProperties(_ref, _excluded$23);
|
|
12538
12538
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12539
12539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12540
12540
|
width: 24,
|
|
@@ -12559,7 +12559,7 @@
|
|
|
12559
12559
|
StatusIcon.displayName = "StatusIcon";
|
|
12560
12560
|
var StatusIcon$1 = StatusIcon;
|
|
12561
12561
|
|
|
12562
|
-
var _excluded$
|
|
12562
|
+
var _excluded$22 = ["gradient"];
|
|
12563
12563
|
|
|
12564
12564
|
/**
|
|
12565
12565
|
* @component StickyIcon
|
|
@@ -12589,7 +12589,7 @@
|
|
|
12589
12589
|
*/
|
|
12590
12590
|
var StickyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12591
12591
|
var gradient = _ref.gradient,
|
|
12592
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12592
|
+
props = _objectWithoutProperties(_ref, _excluded$22);
|
|
12593
12593
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12594
12594
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12595
12595
|
width: 24,
|
|
@@ -12616,7 +12616,7 @@
|
|
|
12616
12616
|
StickyIcon.displayName = "StickyIcon";
|
|
12617
12617
|
var StickyIcon$1 = StickyIcon;
|
|
12618
12618
|
|
|
12619
|
-
var _excluded$
|
|
12619
|
+
var _excluded$21 = ["gradient"];
|
|
12620
12620
|
|
|
12621
12621
|
/**
|
|
12622
12622
|
* @component StopIcon
|
|
@@ -12646,7 +12646,7 @@
|
|
|
12646
12646
|
*/
|
|
12647
12647
|
var StopIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12648
12648
|
var gradient = _ref.gradient,
|
|
12649
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12649
|
+
props = _objectWithoutProperties(_ref, _excluded$21);
|
|
12650
12650
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12651
12651
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12652
12652
|
width: 24,
|
|
@@ -12665,7 +12665,7 @@
|
|
|
12665
12665
|
StopIcon.displayName = "StopIcon";
|
|
12666
12666
|
var StopIcon$1 = StopIcon;
|
|
12667
12667
|
|
|
12668
|
-
var _excluded$
|
|
12668
|
+
var _excluded$20 = ["gradient"];
|
|
12669
12669
|
|
|
12670
12670
|
/**
|
|
12671
12671
|
* @component StopwatchIcon
|
|
@@ -12695,7 +12695,7 @@
|
|
|
12695
12695
|
*/
|
|
12696
12696
|
var StopwatchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12697
12697
|
var gradient = _ref.gradient,
|
|
12698
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12698
|
+
props = _objectWithoutProperties(_ref, _excluded$20);
|
|
12699
12699
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12700
12700
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12701
12701
|
width: 16,
|
|
@@ -12715,7 +12715,7 @@
|
|
|
12715
12715
|
StopwatchIcon.displayName = "StopwatchIcon";
|
|
12716
12716
|
var StopwatchIcon$1 = StopwatchIcon;
|
|
12717
12717
|
|
|
12718
|
-
var _excluded$
|
|
12718
|
+
var _excluded$1$ = ["gradient"];
|
|
12719
12719
|
|
|
12720
12720
|
/**
|
|
12721
12721
|
* @component SunIcon
|
|
@@ -12745,7 +12745,7 @@
|
|
|
12745
12745
|
*/
|
|
12746
12746
|
var SunIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12747
12747
|
var gradient = _ref.gradient,
|
|
12748
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12748
|
+
props = _objectWithoutProperties(_ref, _excluded$1$);
|
|
12749
12749
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12750
12750
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12751
12751
|
width: 22,
|
|
@@ -12770,7 +12770,7 @@
|
|
|
12770
12770
|
SunIcon.displayName = "SunIcon";
|
|
12771
12771
|
var SunIcon$1 = SunIcon;
|
|
12772
12772
|
|
|
12773
|
-
var _excluded$
|
|
12773
|
+
var _excluded$1_ = ["gradient"];
|
|
12774
12774
|
|
|
12775
12775
|
/**
|
|
12776
12776
|
* @component SystemSettingsIcon
|
|
@@ -12800,7 +12800,7 @@
|
|
|
12800
12800
|
*/
|
|
12801
12801
|
var SystemSettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12802
12802
|
var gradient = _ref.gradient,
|
|
12803
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12803
|
+
props = _objectWithoutProperties(_ref, _excluded$1_);
|
|
12804
12804
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12805
12805
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12806
12806
|
width: 24,
|
|
@@ -12821,7 +12821,7 @@
|
|
|
12821
12821
|
SystemSettingsIcon.displayName = "SystemSettingsIcon";
|
|
12822
12822
|
var SystemSettingsIcon$1 = SystemSettingsIcon;
|
|
12823
12823
|
|
|
12824
|
-
var _excluded$
|
|
12824
|
+
var _excluded$1Z = ["gradient"];
|
|
12825
12825
|
|
|
12826
12826
|
/**
|
|
12827
12827
|
* @component TaskAddIcon
|
|
@@ -12851,7 +12851,7 @@
|
|
|
12851
12851
|
*/
|
|
12852
12852
|
var TaskAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12853
12853
|
var gradient = _ref.gradient,
|
|
12854
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12854
|
+
props = _objectWithoutProperties(_ref, _excluded$1Z);
|
|
12855
12855
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12856
12856
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12857
12857
|
width: 24,
|
|
@@ -12871,7 +12871,7 @@
|
|
|
12871
12871
|
TaskAddIcon.displayName = "TaskAddIcon";
|
|
12872
12872
|
var TaskAddIcon$1 = TaskAddIcon;
|
|
12873
12873
|
|
|
12874
|
-
var _excluded$
|
|
12874
|
+
var _excluded$1Y = ["gradient"];
|
|
12875
12875
|
|
|
12876
12876
|
/**
|
|
12877
12877
|
* @component TaskListAddIcon
|
|
@@ -12901,7 +12901,7 @@
|
|
|
12901
12901
|
*/
|
|
12902
12902
|
var TaskListAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12903
12903
|
var gradient = _ref.gradient,
|
|
12904
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12904
|
+
props = _objectWithoutProperties(_ref, _excluded$1Y);
|
|
12905
12905
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12906
12906
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12907
12907
|
width: 24,
|
|
@@ -12921,7 +12921,7 @@
|
|
|
12921
12921
|
TaskListAddIcon.displayName = "TaskListAddIcon";
|
|
12922
12922
|
var TaskListAddIcon$1 = TaskListAddIcon;
|
|
12923
12923
|
|
|
12924
|
-
var _excluded$
|
|
12924
|
+
var _excluded$1X = ["gradient"];
|
|
12925
12925
|
|
|
12926
12926
|
/**
|
|
12927
12927
|
* @component TaskListCompleteIcon
|
|
@@ -12951,7 +12951,7 @@
|
|
|
12951
12951
|
*/
|
|
12952
12952
|
var TaskListCompleteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12953
12953
|
var gradient = _ref.gradient,
|
|
12954
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12954
|
+
props = _objectWithoutProperties(_ref, _excluded$1X);
|
|
12955
12955
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
12956
12956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12957
12957
|
width: 24,
|
|
@@ -12972,7 +12972,7 @@
|
|
|
12972
12972
|
TaskListCompleteIcon.displayName = "TaskListCompleteIcon";
|
|
12973
12973
|
var TaskListCompleteIcon$1 = TaskListCompleteIcon;
|
|
12974
12974
|
|
|
12975
|
-
var _excluded$
|
|
12975
|
+
var _excluded$1W = ["gradient"];
|
|
12976
12976
|
|
|
12977
12977
|
/**
|
|
12978
12978
|
* @component TaskListIcon
|
|
@@ -13002,7 +13002,7 @@
|
|
|
13002
13002
|
*/
|
|
13003
13003
|
var TaskListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13004
13004
|
var gradient = _ref.gradient,
|
|
13005
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13005
|
+
props = _objectWithoutProperties(_ref, _excluded$1W);
|
|
13006
13006
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13007
13007
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13008
13008
|
width: 24,
|
|
@@ -13023,7 +13023,7 @@
|
|
|
13023
13023
|
TaskListIcon.displayName = "TaskListIcon";
|
|
13024
13024
|
var TaskListIcon$1 = TaskListIcon;
|
|
13025
13025
|
|
|
13026
|
-
var _excluded$
|
|
13026
|
+
var _excluded$1V = ["gradient"];
|
|
13027
13027
|
|
|
13028
13028
|
/**
|
|
13029
13029
|
* @component TextAlignCenterIcon
|
|
@@ -13053,7 +13053,7 @@
|
|
|
13053
13053
|
*/
|
|
13054
13054
|
var TextAlignCenterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13055
13055
|
var gradient = _ref.gradient,
|
|
13056
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13056
|
+
props = _objectWithoutProperties(_ref, _excluded$1V);
|
|
13057
13057
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13058
13058
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13059
13059
|
width: 24,
|
|
@@ -13074,7 +13074,7 @@
|
|
|
13074
13074
|
TextAlignCenterIcon.displayName = "TextAlignCenterIcon";
|
|
13075
13075
|
var TextAlignCenterIcon$1 = TextAlignCenterIcon;
|
|
13076
13076
|
|
|
13077
|
-
var _excluded$
|
|
13077
|
+
var _excluded$1U = ["gradient"];
|
|
13078
13078
|
|
|
13079
13079
|
/**
|
|
13080
13080
|
* @component TextAlignJustifyIcon
|
|
@@ -13104,7 +13104,7 @@
|
|
|
13104
13104
|
*/
|
|
13105
13105
|
var TextAlignJustifyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13106
13106
|
var gradient = _ref.gradient,
|
|
13107
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13107
|
+
props = _objectWithoutProperties(_ref, _excluded$1U);
|
|
13108
13108
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13109
13109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13110
13110
|
width: 24,
|
|
@@ -13125,7 +13125,7 @@
|
|
|
13125
13125
|
TextAlignJustifyIcon.displayName = "TextAlignJustifyIcon";
|
|
13126
13126
|
var TextAlignJustifyIcon$1 = TextAlignJustifyIcon;
|
|
13127
13127
|
|
|
13128
|
-
var _excluded$
|
|
13128
|
+
var _excluded$1T = ["gradient"];
|
|
13129
13129
|
|
|
13130
13130
|
/**
|
|
13131
13131
|
* @component TextAlignLeftIcon
|
|
@@ -13155,7 +13155,7 @@
|
|
|
13155
13155
|
*/
|
|
13156
13156
|
var TextAlignLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13157
13157
|
var gradient = _ref.gradient,
|
|
13158
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13158
|
+
props = _objectWithoutProperties(_ref, _excluded$1T);
|
|
13159
13159
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13160
13160
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13161
13161
|
width: 24,
|
|
@@ -13176,7 +13176,7 @@
|
|
|
13176
13176
|
TextAlignLeftIcon.displayName = "TextAlignLeftIcon";
|
|
13177
13177
|
var TextAlignLeftIcon$1 = TextAlignLeftIcon;
|
|
13178
13178
|
|
|
13179
|
-
var _excluded$
|
|
13179
|
+
var _excluded$1S = ["gradient"];
|
|
13180
13180
|
|
|
13181
13181
|
/**
|
|
13182
13182
|
* @component TextAlignRightIcon
|
|
@@ -13206,7 +13206,7 @@
|
|
|
13206
13206
|
*/
|
|
13207
13207
|
var TextAlignRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13208
13208
|
var gradient = _ref.gradient,
|
|
13209
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13209
|
+
props = _objectWithoutProperties(_ref, _excluded$1S);
|
|
13210
13210
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13211
13211
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13212
13212
|
width: 24,
|
|
@@ -13227,7 +13227,7 @@
|
|
|
13227
13227
|
TextAlignRightIcon.displayName = "TextAlignRightIcon";
|
|
13228
13228
|
var TextAlignRightIcon$1 = TextAlignRightIcon;
|
|
13229
13229
|
|
|
13230
|
-
var _excluded$
|
|
13230
|
+
var _excluded$1R = ["gradient"];
|
|
13231
13231
|
|
|
13232
13232
|
/**
|
|
13233
13233
|
* @component TextStyleBoldIcon
|
|
@@ -13257,7 +13257,7 @@
|
|
|
13257
13257
|
*/
|
|
13258
13258
|
var TextStyleBoldIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13259
13259
|
var gradient = _ref.gradient,
|
|
13260
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13260
|
+
props = _objectWithoutProperties(_ref, _excluded$1R);
|
|
13261
13261
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13262
13262
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13263
13263
|
width: 24,
|
|
@@ -13278,7 +13278,7 @@
|
|
|
13278
13278
|
TextStyleBoldIcon.displayName = "TextStyleBoldIcon";
|
|
13279
13279
|
var TextStyleBoldIcon$1 = TextStyleBoldIcon;
|
|
13280
13280
|
|
|
13281
|
-
var _excluded$
|
|
13281
|
+
var _excluded$1Q = ["gradient"];
|
|
13282
13282
|
|
|
13283
13283
|
/**
|
|
13284
13284
|
* @component TextStyleItalicIcon
|
|
@@ -13308,7 +13308,7 @@
|
|
|
13308
13308
|
*/
|
|
13309
13309
|
var TextStyleItalicIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13310
13310
|
var gradient = _ref.gradient,
|
|
13311
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13311
|
+
props = _objectWithoutProperties(_ref, _excluded$1Q);
|
|
13312
13312
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13313
13313
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13314
13314
|
width: 24,
|
|
@@ -13329,7 +13329,7 @@
|
|
|
13329
13329
|
TextStyleItalicIcon.displayName = "TextStyleItalicIcon";
|
|
13330
13330
|
var TextStyleItalicIcon$1 = TextStyleItalicIcon;
|
|
13331
13331
|
|
|
13332
|
-
var _excluded$
|
|
13332
|
+
var _excluded$1P = ["gradient"];
|
|
13333
13333
|
|
|
13334
13334
|
/**
|
|
13335
13335
|
* @component TextStyleStrikeIcon
|
|
@@ -13359,7 +13359,7 @@
|
|
|
13359
13359
|
*/
|
|
13360
13360
|
var TextStyleStrikeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13361
13361
|
var gradient = _ref.gradient,
|
|
13362
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13362
|
+
props = _objectWithoutProperties(_ref, _excluded$1P);
|
|
13363
13363
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13364
13364
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13365
13365
|
width: 24,
|
|
@@ -13386,7 +13386,7 @@
|
|
|
13386
13386
|
TextStyleStrikeIcon.displayName = "TextStyleStrikeIcon";
|
|
13387
13387
|
var TextStyleStrikeIcon$1 = TextStyleStrikeIcon;
|
|
13388
13388
|
|
|
13389
|
-
var _excluded$
|
|
13389
|
+
var _excluded$1O = ["gradient"];
|
|
13390
13390
|
|
|
13391
13391
|
/**
|
|
13392
13392
|
* @component TextStyleUnderlineIcon
|
|
@@ -13416,7 +13416,7 @@
|
|
|
13416
13416
|
*/
|
|
13417
13417
|
var TextStyleUnderlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13418
13418
|
var gradient = _ref.gradient,
|
|
13419
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13419
|
+
props = _objectWithoutProperties(_ref, _excluded$1O);
|
|
13420
13420
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13421
13421
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13422
13422
|
width: 24,
|
|
@@ -13443,7 +13443,7 @@
|
|
|
13443
13443
|
TextStyleUnderlineIcon.displayName = "TextStyleUnderlineIcon";
|
|
13444
13444
|
var TextStyleUnderlineIcon$1 = TextStyleUnderlineIcon;
|
|
13445
13445
|
|
|
13446
|
-
var _excluded$
|
|
13446
|
+
var _excluded$1N = ["gradient"];
|
|
13447
13447
|
|
|
13448
13448
|
/**
|
|
13449
13449
|
* @component TextIcon
|
|
@@ -13473,7 +13473,7 @@
|
|
|
13473
13473
|
*/
|
|
13474
13474
|
var TextIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13475
13475
|
var gradient = _ref.gradient,
|
|
13476
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13476
|
+
props = _objectWithoutProperties(_ref, _excluded$1N);
|
|
13477
13477
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13478
13478
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13479
13479
|
width: 24,
|
|
@@ -13494,7 +13494,7 @@
|
|
|
13494
13494
|
TextIcon.displayName = "TextIcon";
|
|
13495
13495
|
var TextIcon$1 = TextIcon;
|
|
13496
13496
|
|
|
13497
|
-
var _excluded$
|
|
13497
|
+
var _excluded$1M = ["gradient"];
|
|
13498
13498
|
|
|
13499
13499
|
/**
|
|
13500
13500
|
* @component ThumbUpOutlineIcon
|
|
@@ -13524,7 +13524,7 @@
|
|
|
13524
13524
|
*/
|
|
13525
13525
|
var ThumbUpOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13526
13526
|
var gradient = _ref.gradient,
|
|
13527
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13527
|
+
props = _objectWithoutProperties(_ref, _excluded$1M);
|
|
13528
13528
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13529
13529
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13530
13530
|
width: 14,
|
|
@@ -13544,7 +13544,7 @@
|
|
|
13544
13544
|
ThumbUpOutlineIcon.displayName = "ThumbUpOutlineIcon";
|
|
13545
13545
|
var ThumbUpOutlineIcon$1 = ThumbUpOutlineIcon;
|
|
13546
13546
|
|
|
13547
|
-
var _excluded$
|
|
13547
|
+
var _excluded$1L = ["gradient"];
|
|
13548
13548
|
|
|
13549
13549
|
/**
|
|
13550
13550
|
* @component TrashIcon
|
|
@@ -13574,7 +13574,7 @@
|
|
|
13574
13574
|
*/
|
|
13575
13575
|
var TrashIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13576
13576
|
var gradient = _ref.gradient,
|
|
13577
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13577
|
+
props = _objectWithoutProperties(_ref, _excluded$1L);
|
|
13578
13578
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13579
13579
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13580
13580
|
width: 24,
|
|
@@ -13598,7 +13598,7 @@
|
|
|
13598
13598
|
TrashIcon.displayName = "TrashIcon";
|
|
13599
13599
|
var TrashIcon$1 = TrashIcon;
|
|
13600
13600
|
|
|
13601
|
-
var _excluded$
|
|
13601
|
+
var _excluded$1K = ["gradient"];
|
|
13602
13602
|
|
|
13603
13603
|
/**
|
|
13604
13604
|
* @component TreeDotsIcon
|
|
@@ -13628,7 +13628,7 @@
|
|
|
13628
13628
|
*/
|
|
13629
13629
|
var TreeDotsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13630
13630
|
var gradient = _ref.gradient,
|
|
13631
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13631
|
+
props = _objectWithoutProperties(_ref, _excluded$1K);
|
|
13632
13632
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13633
13633
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13634
13634
|
width: 24,
|
|
@@ -13648,7 +13648,7 @@
|
|
|
13648
13648
|
TreeDotsIcon.displayName = "TreeDotsIcon";
|
|
13649
13649
|
var TreeDotsIcon$1 = TreeDotsIcon;
|
|
13650
13650
|
|
|
13651
|
-
var _excluded$
|
|
13651
|
+
var _excluded$1J = ["gradient"];
|
|
13652
13652
|
|
|
13653
13653
|
/**
|
|
13654
13654
|
* @component TriangleIcon
|
|
@@ -13678,7 +13678,7 @@
|
|
|
13678
13678
|
*/
|
|
13679
13679
|
var TriangleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13680
13680
|
var gradient = _ref.gradient,
|
|
13681
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13681
|
+
props = _objectWithoutProperties(_ref, _excluded$1J);
|
|
13682
13682
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13683
13683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13684
13684
|
width: 24,
|
|
@@ -13704,7 +13704,7 @@
|
|
|
13704
13704
|
TriangleIcon.displayName = "TriangleIcon";
|
|
13705
13705
|
var TriangleIcon$1 = TriangleIcon;
|
|
13706
13706
|
|
|
13707
|
-
var _excluded$
|
|
13707
|
+
var _excluded$1I = ["gradient"];
|
|
13708
13708
|
|
|
13709
13709
|
/**
|
|
13710
13710
|
* @component UploadIcon
|
|
@@ -13734,7 +13734,7 @@
|
|
|
13734
13734
|
*/
|
|
13735
13735
|
var UploadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13736
13736
|
var gradient = _ref.gradient,
|
|
13737
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13737
|
+
props = _objectWithoutProperties(_ref, _excluded$1I);
|
|
13738
13738
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13739
13739
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13740
13740
|
width: 24,
|
|
@@ -13754,6 +13754,55 @@
|
|
|
13754
13754
|
UploadIcon.displayName = "UploadIcon";
|
|
13755
13755
|
var UploadIcon$1 = UploadIcon;
|
|
13756
13756
|
|
|
13757
|
+
var _excluded$1H = ["gradient"];
|
|
13758
|
+
|
|
13759
|
+
/**
|
|
13760
|
+
* @component ViewCombinedIcon
|
|
13761
|
+
* @description
|
|
13762
|
+
*
|
|
13763
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
13764
|
+
* The Icon component is
|
|
13765
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
13766
|
+
*
|
|
13767
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
13768
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
13769
|
+
*
|
|
13770
|
+
* @example
|
|
13771
|
+
* return (
|
|
13772
|
+
* <ViewCombinedIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
13773
|
+
* )
|
|
13774
|
+
*
|
|
13775
|
+
* @example
|
|
13776
|
+
* return (
|
|
13777
|
+
* <ViewCombinedIcon className="mr-2" />
|
|
13778
|
+
* )
|
|
13779
|
+
*
|
|
13780
|
+
* @see
|
|
13781
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
13782
|
+
* @see
|
|
13783
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
13784
|
+
*/
|
|
13785
|
+
var ViewCombinedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
13786
|
+
var gradient = _ref.gradient,
|
|
13787
|
+
props = _objectWithoutProperties(_ref, _excluded$1H);
|
|
13788
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
13789
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13790
|
+
width: 24,
|
|
13791
|
+
height: 24,
|
|
13792
|
+
viewBox: "0 0 24 24",
|
|
13793
|
+
"data-testid": "ViewCombinedIcon",
|
|
13794
|
+
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
13795
|
+
focusable: false,
|
|
13796
|
+
ref: ref
|
|
13797
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
13798
|
+
gradient: gradient
|
|
13799
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
13800
|
+
d: "M19 18a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2zm0-6a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2zm-7-8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"
|
|
13801
|
+
}));
|
|
13802
|
+
});
|
|
13803
|
+
ViewCombinedIcon.displayName = "ViewCombinedIcon";
|
|
13804
|
+
var ViewCombinedIcon$1 = ViewCombinedIcon;
|
|
13805
|
+
|
|
13757
13806
|
var _excluded$1G = ["gradient"];
|
|
13758
13807
|
|
|
13759
13808
|
/**
|
|
@@ -29473,6 +29522,7 @@
|
|
|
29473
29522
|
exports.Trigger = Trigger;
|
|
29474
29523
|
exports.UploadIcon = UploadIcon$1;
|
|
29475
29524
|
exports.ValueButton = ValueButton;
|
|
29525
|
+
exports.ViewCombinedIcon = ViewCombinedIcon$1;
|
|
29476
29526
|
exports.ViewDayIcon = ViewDayIcon$1;
|
|
29477
29527
|
exports.ViewGridIcon = ViewGridIcon$1;
|
|
29478
29528
|
exports.ViewListIcon = ViewListIcon$1;
|