@activecollab/components 2.0.248 → 2.0.250
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/Button/Styles.js +5 -1
- package/dist/cjs/components/Button/Styles.js.map +1 -1
- package/dist/cjs/components/ChooseV2/ChooseV2.js +102 -22
- package/dist/cjs/components/ChooseV2/ChooseV2.js.map +1 -1
- package/dist/cjs/components/ChooseV2/Styles.js +33 -0
- package/dist/cjs/components/ChooseV2/Styles.js.map +1 -0
- package/dist/esm/components/Button/Styles.d.ts.map +1 -1
- package/dist/esm/components/Button/Styles.js +5 -1
- package/dist/esm/components/Button/Styles.js.map +1 -1
- package/dist/esm/components/ChooseV2/ChooseV2.d.ts +1 -1
- package/dist/esm/components/ChooseV2/ChooseV2.d.ts.map +1 -1
- package/dist/esm/components/ChooseV2/ChooseV2.js +80 -18
- package/dist/esm/components/ChooseV2/ChooseV2.js.map +1 -1
- package/dist/esm/components/ChooseV2/Styles.d.ts +6 -0
- package/dist/esm/components/ChooseV2/Styles.d.ts.map +1 -0
- package/dist/esm/components/ChooseV2/Styles.js +23 -0
- package/dist/esm/components/ChooseV2/Styles.js.map +1 -0
- package/dist/index.js +670 -573
- 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
|
@@ -198,10 +198,14 @@
|
|
|
198
198
|
var StyledButtonElement = styled__default["default"].span.withConfig({
|
|
199
199
|
displayName: "Styles__StyledButtonElement",
|
|
200
200
|
componentId: "sc-vi1kcr-2"
|
|
201
|
-
})(["display:inline-flex;svg{margin:0 4px;}"]
|
|
201
|
+
})(["", " display:inline-flex;svg{margin:0 4px;}"], {
|
|
202
|
+
"overflow": "hidden",
|
|
203
|
+
"textOverflow": "ellipsis",
|
|
204
|
+
"whiteSpace": "nowrap"
|
|
205
|
+
});
|
|
202
206
|
StyledButtonElement.displayName = "StyledButtonElement";
|
|
203
207
|
|
|
204
|
-
var _excluded$
|
|
208
|
+
var _excluded$4P = ["children", "active", "variant", "size", "className"];
|
|
205
209
|
/**
|
|
206
210
|
* @component Button
|
|
207
211
|
* @description
|
|
@@ -231,7 +235,7 @@
|
|
|
231
235
|
_ref$size = _ref.size,
|
|
232
236
|
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
233
237
|
className = _ref.className,
|
|
234
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
238
|
+
args = _objectWithoutProperties(_ref, _excluded$4P);
|
|
235
239
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton$2, _extends({
|
|
236
240
|
className: classNames__default["default"]("c-btn", className, {
|
|
237
241
|
"c-btn--contained": variant === "primary" || variant === "contained",
|
|
@@ -296,7 +300,7 @@
|
|
|
296
300
|
})));
|
|
297
301
|
};
|
|
298
302
|
|
|
299
|
-
var _excluded$
|
|
303
|
+
var _excluded$4O = ["gradient"];
|
|
300
304
|
|
|
301
305
|
/**
|
|
302
306
|
* @component AddCrossTinyIcon
|
|
@@ -326,7 +330,7 @@
|
|
|
326
330
|
*/
|
|
327
331
|
var AddCrossTinyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
328
332
|
var gradient = _ref.gradient,
|
|
329
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
333
|
+
props = _objectWithoutProperties(_ref, _excluded$4O);
|
|
330
334
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
331
335
|
width: 24,
|
|
332
336
|
height: 24,
|
|
@@ -346,12 +350,12 @@
|
|
|
346
350
|
AddCrossTinyIcon.displayName = "AddCrossTinyIcon";
|
|
347
351
|
var AddCrossTinyIcon$1 = AddCrossTinyIcon;
|
|
348
352
|
|
|
349
|
-
var _excluded$
|
|
353
|
+
var _excluded$4N = ["className", "disabled"];
|
|
350
354
|
var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
351
355
|
var className = _ref.className,
|
|
352
356
|
_ref$disabled = _ref.disabled,
|
|
353
357
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
354
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
358
|
+
rest = _objectWithoutProperties(_ref, _excluded$4N);
|
|
355
359
|
return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
|
|
356
360
|
ref: ref,
|
|
357
361
|
variant: "contained",
|
|
@@ -389,12 +393,12 @@
|
|
|
389
393
|
});
|
|
390
394
|
StyledButtonGroup$1.displayName = "StyledButtonGroup";
|
|
391
395
|
|
|
392
|
-
var _excluded$
|
|
396
|
+
var _excluded$4M = ["children", "className", "invalid"];
|
|
393
397
|
var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
394
398
|
var children = _ref.children,
|
|
395
399
|
className = _ref.className,
|
|
396
400
|
invalid = _ref.invalid,
|
|
397
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
401
|
+
rest = _objectWithoutProperties(_ref, _excluded$4M);
|
|
398
402
|
return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
|
|
399
403
|
ref: ref,
|
|
400
404
|
className: classNames__default["default"]("c-btn-group", className),
|
|
@@ -419,11 +423,11 @@
|
|
|
419
423
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
420
424
|
StyledListSeparator$1.displayName = "StyledListSeparator";
|
|
421
425
|
|
|
422
|
-
var _excluded$
|
|
426
|
+
var _excluded$4L = ["children", "className"];
|
|
423
427
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
424
428
|
var children = _ref.children,
|
|
425
429
|
className = _ref.className,
|
|
426
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
430
|
+
props = _objectWithoutProperties(_ref, _excluded$4L);
|
|
427
431
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem$1, _extends({
|
|
428
432
|
className: classNames__default["default"]("c-list-item", className),
|
|
429
433
|
ref: ref,
|
|
@@ -432,21 +436,21 @@
|
|
|
432
436
|
});
|
|
433
437
|
ListItem.displayName = "ListItem";
|
|
434
438
|
|
|
435
|
-
var _excluded$
|
|
439
|
+
var _excluded$4K = ["className"];
|
|
436
440
|
var ListSeparator = function ListSeparator(_ref) {
|
|
437
441
|
var className = _ref.className,
|
|
438
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
442
|
+
props = _objectWithoutProperties(_ref, _excluded$4K);
|
|
439
443
|
return /*#__PURE__*/React__default["default"].createElement(StyledListSeparator$1, _extends({
|
|
440
444
|
className: classNames__default["default"]("c-list-separator", className)
|
|
441
445
|
}, props));
|
|
442
446
|
};
|
|
443
447
|
ListSeparator.displayName = "ListSeparator";
|
|
444
448
|
|
|
445
|
-
var _excluded$
|
|
449
|
+
var _excluded$4J = ["children", "className"];
|
|
446
450
|
var _List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
447
451
|
var children = _ref.children,
|
|
448
452
|
className = _ref.className,
|
|
449
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
453
|
+
props = _objectWithoutProperties(_ref, _excluded$4J);
|
|
450
454
|
return /*#__PURE__*/React__default["default"].createElement(StyledList$1, _extends({
|
|
451
455
|
className: className,
|
|
452
456
|
ref: ref,
|
|
@@ -959,7 +963,7 @@
|
|
|
959
963
|
return size === "big" && styled.css(["width:40px;"]);
|
|
960
964
|
});
|
|
961
965
|
|
|
962
|
-
var _excluded$
|
|
966
|
+
var _excluded$4I = ["children", "className", "variant", "size", "active"];
|
|
963
967
|
|
|
964
968
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
965
969
|
|
|
@@ -989,7 +993,7 @@
|
|
|
989
993
|
variant = _ref.variant,
|
|
990
994
|
size = _ref.size,
|
|
991
995
|
active = _ref.active,
|
|
992
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
996
|
+
args = _objectWithoutProperties(_ref, _excluded$4I);
|
|
993
997
|
return /*#__PURE__*/React__default["default"].createElement(StyledIconButton$1, _extends({
|
|
994
998
|
className: className,
|
|
995
999
|
variant: variant,
|
|
@@ -1000,7 +1004,7 @@
|
|
|
1000
1004
|
});
|
|
1001
1005
|
IconButton.displayName = "IconButton";
|
|
1002
1006
|
|
|
1003
|
-
var _excluded$
|
|
1007
|
+
var _excluded$4H = ["gradient"];
|
|
1004
1008
|
|
|
1005
1009
|
/**
|
|
1006
1010
|
* @component AccessLogIcon
|
|
@@ -1030,7 +1034,7 @@
|
|
|
1030
1034
|
*/
|
|
1031
1035
|
var AccessLogIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1032
1036
|
var gradient = _ref.gradient,
|
|
1033
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1037
|
+
props = _objectWithoutProperties(_ref, _excluded$4H);
|
|
1034
1038
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1035
1039
|
width: 24,
|
|
1036
1040
|
height: 24,
|
|
@@ -1058,7 +1062,7 @@
|
|
|
1058
1062
|
AccessLogIcon.displayName = "AccessLogIcon";
|
|
1059
1063
|
var AccessLogIcon$1 = AccessLogIcon;
|
|
1060
1064
|
|
|
1061
|
-
var _excluded$
|
|
1065
|
+
var _excluded$4G = ["gradient"];
|
|
1062
1066
|
|
|
1063
1067
|
/**
|
|
1064
1068
|
* @component ActivityIcon
|
|
@@ -1088,7 +1092,7 @@
|
|
|
1088
1092
|
*/
|
|
1089
1093
|
var ActivityIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1090
1094
|
var gradient = _ref.gradient,
|
|
1091
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1095
|
+
props = _objectWithoutProperties(_ref, _excluded$4G);
|
|
1092
1096
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1093
1097
|
width: 24,
|
|
1094
1098
|
height: 24,
|
|
@@ -1112,7 +1116,7 @@
|
|
|
1112
1116
|
ActivityIcon.displayName = "ActivityIcon";
|
|
1113
1117
|
var ActivityIcon$1 = ActivityIcon;
|
|
1114
1118
|
|
|
1115
|
-
var _excluded$
|
|
1119
|
+
var _excluded$4F = ["gradient"];
|
|
1116
1120
|
|
|
1117
1121
|
/**
|
|
1118
1122
|
* @component AddCrossIcon
|
|
@@ -1142,7 +1146,7 @@
|
|
|
1142
1146
|
*/
|
|
1143
1147
|
var AddCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1144
1148
|
var gradient = _ref.gradient,
|
|
1145
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1149
|
+
props = _objectWithoutProperties(_ref, _excluded$4F);
|
|
1146
1150
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1147
1151
|
width: 10,
|
|
1148
1152
|
height: 10,
|
|
@@ -1162,7 +1166,7 @@
|
|
|
1162
1166
|
AddCrossIcon.displayName = "AddCrossIcon";
|
|
1163
1167
|
var AddCrossIcon$1 = AddCrossIcon;
|
|
1164
1168
|
|
|
1165
|
-
var _excluded$
|
|
1169
|
+
var _excluded$4E = ["gradient"];
|
|
1166
1170
|
|
|
1167
1171
|
/**
|
|
1168
1172
|
* @component ArchiveIcon
|
|
@@ -1192,7 +1196,7 @@
|
|
|
1192
1196
|
*/
|
|
1193
1197
|
var ArchiveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1194
1198
|
var gradient = _ref.gradient,
|
|
1195
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1199
|
+
props = _objectWithoutProperties(_ref, _excluded$4E);
|
|
1196
1200
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1197
1201
|
width: 24,
|
|
1198
1202
|
height: 24,
|
|
@@ -1213,7 +1217,7 @@
|
|
|
1213
1217
|
ArchiveIcon.displayName = "ArchiveIcon";
|
|
1214
1218
|
var ArchiveIcon$1 = ArchiveIcon;
|
|
1215
1219
|
|
|
1216
|
-
var _excluded$
|
|
1220
|
+
var _excluded$4D = ["gradient"];
|
|
1217
1221
|
|
|
1218
1222
|
/**
|
|
1219
1223
|
* @component ArrowBackMobileIcon
|
|
@@ -1243,7 +1247,7 @@
|
|
|
1243
1247
|
*/
|
|
1244
1248
|
var ArrowBackMobileIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1245
1249
|
var gradient = _ref.gradient,
|
|
1246
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1250
|
+
props = _objectWithoutProperties(_ref, _excluded$4D);
|
|
1247
1251
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1248
1252
|
width: 24,
|
|
1249
1253
|
height: 24,
|
|
@@ -1264,7 +1268,7 @@
|
|
|
1264
1268
|
ArrowBackMobileIcon.displayName = "ArrowBackMobileIcon";
|
|
1265
1269
|
var ArrowBackMobileIcon$1 = ArrowBackMobileIcon;
|
|
1266
1270
|
|
|
1267
|
-
var _excluded$
|
|
1271
|
+
var _excluded$4C = ["gradient"];
|
|
1268
1272
|
|
|
1269
1273
|
/**
|
|
1270
1274
|
* @component ArrowCollapseMultipleIcon
|
|
@@ -1294,7 +1298,7 @@
|
|
|
1294
1298
|
*/
|
|
1295
1299
|
var ArrowCollapseMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1296
1300
|
var gradient = _ref.gradient,
|
|
1297
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1301
|
+
props = _objectWithoutProperties(_ref, _excluded$4C);
|
|
1298
1302
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1299
1303
|
width: 24,
|
|
1300
1304
|
height: 24,
|
|
@@ -1314,7 +1318,7 @@
|
|
|
1314
1318
|
ArrowCollapseMultipleIcon.displayName = "ArrowCollapseMultipleIcon";
|
|
1315
1319
|
var ArrowCollapseMultipleIcon$1 = ArrowCollapseMultipleIcon;
|
|
1316
1320
|
|
|
1317
|
-
var _excluded$
|
|
1321
|
+
var _excluded$4B = ["gradient"];
|
|
1318
1322
|
|
|
1319
1323
|
/**
|
|
1320
1324
|
* @component ArrowDownLongIcon
|
|
@@ -1344,7 +1348,7 @@
|
|
|
1344
1348
|
*/
|
|
1345
1349
|
var ArrowDownLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1346
1350
|
var gradient = _ref.gradient,
|
|
1347
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1351
|
+
props = _objectWithoutProperties(_ref, _excluded$4B);
|
|
1348
1352
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1349
1353
|
width: 24,
|
|
1350
1354
|
height: 24,
|
|
@@ -1364,7 +1368,7 @@
|
|
|
1364
1368
|
ArrowDownLongIcon.displayName = "ArrowDownLongIcon";
|
|
1365
1369
|
var ArrowDownLongIcon$1 = ArrowDownLongIcon;
|
|
1366
1370
|
|
|
1367
|
-
var _excluded$
|
|
1371
|
+
var _excluded$4A = ["gradient"];
|
|
1368
1372
|
|
|
1369
1373
|
/**
|
|
1370
1374
|
* @component ArrowDownSmallIcon
|
|
@@ -1394,7 +1398,7 @@
|
|
|
1394
1398
|
*/
|
|
1395
1399
|
var ArrowDownSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1396
1400
|
var gradient = _ref.gradient,
|
|
1397
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1401
|
+
props = _objectWithoutProperties(_ref, _excluded$4A);
|
|
1398
1402
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1399
1403
|
width: 16,
|
|
1400
1404
|
height: 16,
|
|
@@ -1414,7 +1418,7 @@
|
|
|
1414
1418
|
ArrowDownSmallIcon.displayName = "ArrowDownSmallIcon";
|
|
1415
1419
|
var ArrowDownSmallIcon$1 = ArrowDownSmallIcon;
|
|
1416
1420
|
|
|
1417
|
-
var _excluded$
|
|
1421
|
+
var _excluded$4z = ["gradient"];
|
|
1418
1422
|
|
|
1419
1423
|
/**
|
|
1420
1424
|
* @component ArrowDownIcon
|
|
@@ -1444,7 +1448,7 @@
|
|
|
1444
1448
|
*/
|
|
1445
1449
|
var ArrowDownIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1446
1450
|
var gradient = _ref.gradient,
|
|
1447
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1451
|
+
props = _objectWithoutProperties(_ref, _excluded$4z);
|
|
1448
1452
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1449
1453
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1450
1454
|
width: 24,
|
|
@@ -1463,7 +1467,7 @@
|
|
|
1463
1467
|
ArrowDownIcon.displayName = "ArrowDownIcon";
|
|
1464
1468
|
var ArrowDownIcon$1 = ArrowDownIcon;
|
|
1465
1469
|
|
|
1466
|
-
var _excluded$
|
|
1470
|
+
var _excluded$4y = ["gradient"];
|
|
1467
1471
|
|
|
1468
1472
|
/**
|
|
1469
1473
|
* @component ArrowExpandeMultipleIcon
|
|
@@ -1493,7 +1497,7 @@
|
|
|
1493
1497
|
*/
|
|
1494
1498
|
var ArrowExpandeMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1495
1499
|
var gradient = _ref.gradient,
|
|
1496
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1500
|
+
props = _objectWithoutProperties(_ref, _excluded$4y);
|
|
1497
1501
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1498
1502
|
width: 24,
|
|
1499
1503
|
height: 24,
|
|
@@ -1513,7 +1517,7 @@
|
|
|
1513
1517
|
ArrowExpandeMultipleIcon.displayName = "ArrowExpandeMultipleIcon";
|
|
1514
1518
|
var ArrowExpandeMultipleIcon$1 = ArrowExpandeMultipleIcon;
|
|
1515
1519
|
|
|
1516
|
-
var _excluded$
|
|
1520
|
+
var _excluded$4x = ["gradient"];
|
|
1517
1521
|
|
|
1518
1522
|
/**
|
|
1519
1523
|
* @component ArrowLeftBoxIcon
|
|
@@ -1543,7 +1547,7 @@
|
|
|
1543
1547
|
*/
|
|
1544
1548
|
var ArrowLeftBoxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1545
1549
|
var gradient = _ref.gradient,
|
|
1546
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1550
|
+
props = _objectWithoutProperties(_ref, _excluded$4x);
|
|
1547
1551
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1548
1552
|
width: 24,
|
|
1549
1553
|
height: 24,
|
|
@@ -1563,7 +1567,7 @@
|
|
|
1563
1567
|
ArrowLeftBoxIcon.displayName = "ArrowLeftBoxIcon";
|
|
1564
1568
|
var ArrowLeftBoxIcon$1 = ArrowLeftBoxIcon;
|
|
1565
1569
|
|
|
1566
|
-
var _excluded$
|
|
1570
|
+
var _excluded$4w = ["gradient"];
|
|
1567
1571
|
|
|
1568
1572
|
/**
|
|
1569
1573
|
* @component ArrowLeftIcon
|
|
@@ -1593,7 +1597,7 @@
|
|
|
1593
1597
|
*/
|
|
1594
1598
|
var ArrowLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1595
1599
|
var gradient = _ref.gradient,
|
|
1596
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1600
|
+
props = _objectWithoutProperties(_ref, _excluded$4w);
|
|
1597
1601
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1598
1602
|
width: 24,
|
|
1599
1603
|
height: 24,
|
|
@@ -1613,7 +1617,7 @@
|
|
|
1613
1617
|
ArrowLeftIcon.displayName = "ArrowLeftIcon";
|
|
1614
1618
|
var ArrowLeftIcon$1 = ArrowLeftIcon;
|
|
1615
1619
|
|
|
1616
|
-
var _excluded$
|
|
1620
|
+
var _excluded$4v = ["gradient"];
|
|
1617
1621
|
|
|
1618
1622
|
/**
|
|
1619
1623
|
* @component ArrowRefreshIcon
|
|
@@ -1643,7 +1647,7 @@
|
|
|
1643
1647
|
*/
|
|
1644
1648
|
var ArrowRefreshIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1645
1649
|
var gradient = _ref.gradient,
|
|
1646
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1650
|
+
props = _objectWithoutProperties(_ref, _excluded$4v);
|
|
1647
1651
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1648
1652
|
width: 24,
|
|
1649
1653
|
height: 24,
|
|
@@ -1664,7 +1668,7 @@
|
|
|
1664
1668
|
ArrowRefreshIcon.displayName = "ArrowRefreshIcon";
|
|
1665
1669
|
var ArrowRefreshIcon$1 = ArrowRefreshIcon;
|
|
1666
1670
|
|
|
1667
|
-
var _excluded$
|
|
1671
|
+
var _excluded$4u = ["gradient"];
|
|
1668
1672
|
|
|
1669
1673
|
/**
|
|
1670
1674
|
* @component ArrowRestoreIcon
|
|
@@ -1694,7 +1698,7 @@
|
|
|
1694
1698
|
*/
|
|
1695
1699
|
var ArrowRestoreIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1696
1700
|
var gradient = _ref.gradient,
|
|
1697
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1701
|
+
props = _objectWithoutProperties(_ref, _excluded$4u);
|
|
1698
1702
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1699
1703
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1700
1704
|
width: 24,
|
|
@@ -1714,7 +1718,7 @@
|
|
|
1714
1718
|
ArrowRestoreIcon.displayName = "ArrowRestoreIcon";
|
|
1715
1719
|
var ArrowRestoreIcon$1 = ArrowRestoreIcon;
|
|
1716
1720
|
|
|
1717
|
-
var _excluded$
|
|
1721
|
+
var _excluded$4t = ["gradient"];
|
|
1718
1722
|
|
|
1719
1723
|
/**
|
|
1720
1724
|
* @component ArrowRightIcon
|
|
@@ -1744,7 +1748,7 @@
|
|
|
1744
1748
|
*/
|
|
1745
1749
|
var ArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1746
1750
|
var gradient = _ref.gradient,
|
|
1747
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1751
|
+
props = _objectWithoutProperties(_ref, _excluded$4t);
|
|
1748
1752
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1749
1753
|
width: 24,
|
|
1750
1754
|
height: 24,
|
|
@@ -1764,7 +1768,7 @@
|
|
|
1764
1768
|
ArrowRightIcon.displayName = "ArrowRightIcon";
|
|
1765
1769
|
var ArrowRightIcon$1 = ArrowRightIcon;
|
|
1766
1770
|
|
|
1767
|
-
var _excluded$
|
|
1771
|
+
var _excluded$4s = ["gradient"];
|
|
1768
1772
|
|
|
1769
1773
|
/**
|
|
1770
1774
|
* @component ArrowUpLongIcon
|
|
@@ -1794,7 +1798,7 @@
|
|
|
1794
1798
|
*/
|
|
1795
1799
|
var ArrowUpLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1796
1800
|
var gradient = _ref.gradient,
|
|
1797
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1801
|
+
props = _objectWithoutProperties(_ref, _excluded$4s);
|
|
1798
1802
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1799
1803
|
width: 24,
|
|
1800
1804
|
height: 24,
|
|
@@ -1814,7 +1818,7 @@
|
|
|
1814
1818
|
ArrowUpLongIcon.displayName = "ArrowUpLongIcon";
|
|
1815
1819
|
var ArrowUpLongIcon$1 = ArrowUpLongIcon;
|
|
1816
1820
|
|
|
1817
|
-
var _excluded$
|
|
1821
|
+
var _excluded$4r = ["gradient"];
|
|
1818
1822
|
|
|
1819
1823
|
/**
|
|
1820
1824
|
* @component ArrowUpIcon
|
|
@@ -1844,7 +1848,7 @@
|
|
|
1844
1848
|
*/
|
|
1845
1849
|
var ArrowUpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1846
1850
|
var gradient = _ref.gradient,
|
|
1847
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1851
|
+
props = _objectWithoutProperties(_ref, _excluded$4r);
|
|
1848
1852
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1849
1853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1850
1854
|
width: 24,
|
|
@@ -1863,7 +1867,7 @@
|
|
|
1863
1867
|
ArrowUpIcon.displayName = "ArrowUpIcon";
|
|
1864
1868
|
var ArrowUpIcon$1 = ArrowUpIcon;
|
|
1865
1869
|
|
|
1866
|
-
var _excluded$
|
|
1870
|
+
var _excluded$4q = ["gradient"];
|
|
1867
1871
|
|
|
1868
1872
|
/**
|
|
1869
1873
|
* @component AssignIcon
|
|
@@ -1893,7 +1897,7 @@
|
|
|
1893
1897
|
*/
|
|
1894
1898
|
var AssignIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1895
1899
|
var gradient = _ref.gradient,
|
|
1896
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1900
|
+
props = _objectWithoutProperties(_ref, _excluded$4q);
|
|
1897
1901
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1898
1902
|
width: 24,
|
|
1899
1903
|
height: 24,
|
|
@@ -1913,7 +1917,7 @@
|
|
|
1913
1917
|
AssignIcon.displayName = "AssignIcon";
|
|
1914
1918
|
var AssignIcon$1 = AssignIcon;
|
|
1915
1919
|
|
|
1916
|
-
var _excluded$
|
|
1920
|
+
var _excluded$4p = ["gradient"];
|
|
1917
1921
|
|
|
1918
1922
|
/**
|
|
1919
1923
|
* @component AttachmentIcon
|
|
@@ -1943,7 +1947,7 @@
|
|
|
1943
1947
|
*/
|
|
1944
1948
|
var AttachmentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1945
1949
|
var gradient = _ref.gradient,
|
|
1946
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1950
|
+
props = _objectWithoutProperties(_ref, _excluded$4p);
|
|
1947
1951
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1948
1952
|
width: 24,
|
|
1949
1953
|
height: 24,
|
|
@@ -1963,7 +1967,7 @@
|
|
|
1963
1967
|
AttachmentIcon.displayName = "AttachmentIcon";
|
|
1964
1968
|
var AttachmentIcon$1 = AttachmentIcon;
|
|
1965
1969
|
|
|
1966
|
-
var _excluded$
|
|
1970
|
+
var _excluded$4o = ["gradient"];
|
|
1967
1971
|
|
|
1968
1972
|
/**
|
|
1969
1973
|
* @component BellOffSmallIcon
|
|
@@ -1993,7 +1997,7 @@
|
|
|
1993
1997
|
*/
|
|
1994
1998
|
var BellOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1995
1999
|
var gradient = _ref.gradient,
|
|
1996
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2000
|
+
props = _objectWithoutProperties(_ref, _excluded$4o);
|
|
1997
2001
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1998
2002
|
width: 12,
|
|
1999
2003
|
height: 12,
|
|
@@ -2013,7 +2017,7 @@
|
|
|
2013
2017
|
BellOffSmallIcon.displayName = "BellOffSmallIcon";
|
|
2014
2018
|
var BellOffSmallIcon$1 = BellOffSmallIcon;
|
|
2015
2019
|
|
|
2016
|
-
var _excluded$
|
|
2020
|
+
var _excluded$4n = ["gradient"];
|
|
2017
2021
|
|
|
2018
2022
|
/**
|
|
2019
2023
|
* @component BellOffIcon
|
|
@@ -2043,7 +2047,7 @@
|
|
|
2043
2047
|
*/
|
|
2044
2048
|
var BellOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2045
2049
|
var gradient = _ref.gradient,
|
|
2046
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2050
|
+
props = _objectWithoutProperties(_ref, _excluded$4n);
|
|
2047
2051
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2048
2052
|
width: 24,
|
|
2049
2053
|
height: 24,
|
|
@@ -2063,7 +2067,7 @@
|
|
|
2063
2067
|
BellOffIcon.displayName = "BellOffIcon";
|
|
2064
2068
|
var BellOffIcon$1 = BellOffIcon;
|
|
2065
2069
|
|
|
2066
|
-
var _excluded$
|
|
2070
|
+
var _excluded$4m = ["gradient"];
|
|
2067
2071
|
|
|
2068
2072
|
/**
|
|
2069
2073
|
* @component BillingIcon
|
|
@@ -2093,7 +2097,7 @@
|
|
|
2093
2097
|
*/
|
|
2094
2098
|
var BillingIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2095
2099
|
var gradient = _ref.gradient,
|
|
2096
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2100
|
+
props = _objectWithoutProperties(_ref, _excluded$4m);
|
|
2097
2101
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2098
2102
|
width: 24,
|
|
2099
2103
|
height: 24,
|
|
@@ -2114,7 +2118,7 @@
|
|
|
2114
2118
|
BillingIcon.displayName = "BillingIcon";
|
|
2115
2119
|
var BillingIcon$1 = BillingIcon;
|
|
2116
2120
|
|
|
2117
|
-
var _excluded$
|
|
2121
|
+
var _excluded$4l = ["gradient"];
|
|
2118
2122
|
|
|
2119
2123
|
/**
|
|
2120
2124
|
* @component BudgetAlertIcon
|
|
@@ -2144,7 +2148,7 @@
|
|
|
2144
2148
|
*/
|
|
2145
2149
|
var BudgetAlertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2146
2150
|
var gradient = _ref.gradient,
|
|
2147
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2151
|
+
props = _objectWithoutProperties(_ref, _excluded$4l);
|
|
2148
2152
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2149
2153
|
width: 24,
|
|
2150
2154
|
height: 24,
|
|
@@ -2164,7 +2168,7 @@
|
|
|
2164
2168
|
BudgetAlertIcon.displayName = "BudgetAlertIcon";
|
|
2165
2169
|
var BudgetAlertIcon$1 = BudgetAlertIcon;
|
|
2166
2170
|
|
|
2167
|
-
var _excluded$
|
|
2171
|
+
var _excluded$4k = ["gradient"];
|
|
2168
2172
|
|
|
2169
2173
|
/**
|
|
2170
2174
|
* @component CalendarAddXIcon
|
|
@@ -2194,7 +2198,7 @@
|
|
|
2194
2198
|
*/
|
|
2195
2199
|
var CalendarAddXIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2196
2200
|
var gradient = _ref.gradient,
|
|
2197
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2201
|
+
props = _objectWithoutProperties(_ref, _excluded$4k);
|
|
2198
2202
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2199
2203
|
width: 24,
|
|
2200
2204
|
height: 24,
|
|
@@ -2214,7 +2218,7 @@
|
|
|
2214
2218
|
CalendarAddXIcon.displayName = "CalendarAddXIcon";
|
|
2215
2219
|
var CalendarAddXIcon$1 = CalendarAddXIcon;
|
|
2216
2220
|
|
|
2217
|
-
var _excluded$
|
|
2221
|
+
var _excluded$4j = ["gradient"];
|
|
2218
2222
|
|
|
2219
2223
|
/**
|
|
2220
2224
|
* @component CalendarImportIcon
|
|
@@ -2244,7 +2248,7 @@
|
|
|
2244
2248
|
*/
|
|
2245
2249
|
var CalendarImportIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2246
2250
|
var gradient = _ref.gradient,
|
|
2247
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2251
|
+
props = _objectWithoutProperties(_ref, _excluded$4j);
|
|
2248
2252
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2249
2253
|
width: 18,
|
|
2250
2254
|
height: 18,
|
|
@@ -2267,7 +2271,7 @@
|
|
|
2267
2271
|
CalendarImportIcon.displayName = "CalendarImportIcon";
|
|
2268
2272
|
var CalendarImportIcon$1 = CalendarImportIcon;
|
|
2269
2273
|
|
|
2270
|
-
var _excluded$
|
|
2274
|
+
var _excluded$4i = ["gradient"];
|
|
2271
2275
|
|
|
2272
2276
|
/**
|
|
2273
2277
|
* @component CalendarIcon
|
|
@@ -2297,7 +2301,7 @@
|
|
|
2297
2301
|
*/
|
|
2298
2302
|
var CalendarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2299
2303
|
var gradient = _ref.gradient,
|
|
2300
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2304
|
+
props = _objectWithoutProperties(_ref, _excluded$4i);
|
|
2301
2305
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2302
2306
|
width: 24,
|
|
2303
2307
|
height: 24,
|
|
@@ -2317,7 +2321,7 @@
|
|
|
2317
2321
|
CalendarIcon.displayName = "CalendarIcon";
|
|
2318
2322
|
var CalendarIcon$1 = CalendarIcon;
|
|
2319
2323
|
|
|
2320
|
-
var _excluded$
|
|
2324
|
+
var _excluded$4h = ["gradient"];
|
|
2321
2325
|
|
|
2322
2326
|
/**
|
|
2323
2327
|
* @component CancelCrossIcon
|
|
@@ -2347,7 +2351,7 @@
|
|
|
2347
2351
|
*/
|
|
2348
2352
|
var CancelCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2349
2353
|
var gradient = _ref.gradient,
|
|
2350
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2354
|
+
props = _objectWithoutProperties(_ref, _excluded$4h);
|
|
2351
2355
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2352
2356
|
width: 24,
|
|
2353
2357
|
height: 24,
|
|
@@ -2367,7 +2371,7 @@
|
|
|
2367
2371
|
CancelCrossIcon.displayName = "CancelCrossIcon";
|
|
2368
2372
|
var CancelCrossIcon$1 = CancelCrossIcon;
|
|
2369
2373
|
|
|
2370
|
-
var _excluded$
|
|
2374
|
+
var _excluded$4g = ["gradient"];
|
|
2371
2375
|
|
|
2372
2376
|
/**
|
|
2373
2377
|
* @component CaretLeftIcon
|
|
@@ -2397,7 +2401,7 @@
|
|
|
2397
2401
|
*/
|
|
2398
2402
|
var CaretLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2399
2403
|
var gradient = _ref.gradient,
|
|
2400
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2404
|
+
props = _objectWithoutProperties(_ref, _excluded$4g);
|
|
2401
2405
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2402
2406
|
width: 18,
|
|
2403
2407
|
height: 18,
|
|
@@ -2417,7 +2421,7 @@
|
|
|
2417
2421
|
CaretLeftIcon.displayName = "CaretLeftIcon";
|
|
2418
2422
|
var CaretLeftIcon$1 = CaretLeftIcon;
|
|
2419
2423
|
|
|
2420
|
-
var _excluded$
|
|
2424
|
+
var _excluded$4f = ["gradient"];
|
|
2421
2425
|
|
|
2422
2426
|
/**
|
|
2423
2427
|
* @component CaretRightIcon
|
|
@@ -2447,7 +2451,7 @@
|
|
|
2447
2451
|
*/
|
|
2448
2452
|
var CaretRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2449
2453
|
var gradient = _ref.gradient,
|
|
2450
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2454
|
+
props = _objectWithoutProperties(_ref, _excluded$4f);
|
|
2451
2455
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2452
2456
|
width: 18,
|
|
2453
2457
|
height: 18,
|
|
@@ -2467,7 +2471,7 @@
|
|
|
2467
2471
|
CaretRightIcon.displayName = "CaretRightIcon";
|
|
2468
2472
|
var CaretRightIcon$1 = CaretRightIcon;
|
|
2469
2473
|
|
|
2470
|
-
var _excluded$
|
|
2474
|
+
var _excluded$4e = ["gradient"];
|
|
2471
2475
|
|
|
2472
2476
|
/**
|
|
2473
2477
|
* @component ChatIcon
|
|
@@ -2497,7 +2501,7 @@
|
|
|
2497
2501
|
*/
|
|
2498
2502
|
var ChatIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2499
2503
|
var gradient = _ref.gradient,
|
|
2500
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2504
|
+
props = _objectWithoutProperties(_ref, _excluded$4e);
|
|
2501
2505
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2502
2506
|
width: 24,
|
|
2503
2507
|
height: 24,
|
|
@@ -2517,7 +2521,7 @@
|
|
|
2517
2521
|
ChatIcon.displayName = "ChatIcon";
|
|
2518
2522
|
var ChatIcon$1 = ChatIcon;
|
|
2519
2523
|
|
|
2520
|
-
var _excluded$
|
|
2524
|
+
var _excluded$4d = ["gradient"];
|
|
2521
2525
|
|
|
2522
2526
|
/**
|
|
2523
2527
|
* @component CheckIcon
|
|
@@ -2547,7 +2551,7 @@
|
|
|
2547
2551
|
*/
|
|
2548
2552
|
var CheckIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2549
2553
|
var gradient = _ref.gradient,
|
|
2550
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2554
|
+
props = _objectWithoutProperties(_ref, _excluded$4d);
|
|
2551
2555
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2552
2556
|
width: 24,
|
|
2553
2557
|
height: 24,
|
|
@@ -2567,7 +2571,7 @@
|
|
|
2567
2571
|
CheckIcon.displayName = "CheckIcon";
|
|
2568
2572
|
var CheckIcon$1 = CheckIcon;
|
|
2569
2573
|
|
|
2570
|
-
var _excluded$
|
|
2574
|
+
var _excluded$4c = ["gradient"];
|
|
2571
2575
|
|
|
2572
2576
|
/**
|
|
2573
2577
|
* @component CheckboxBlankTogglerIcon
|
|
@@ -2597,7 +2601,7 @@
|
|
|
2597
2601
|
*/
|
|
2598
2602
|
var CheckboxBlankTogglerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2599
2603
|
var gradient = _ref.gradient,
|
|
2600
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2604
|
+
props = _objectWithoutProperties(_ref, _excluded$4c);
|
|
2601
2605
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2602
2606
|
width: 24,
|
|
2603
2607
|
height: 24,
|
|
@@ -2617,7 +2621,7 @@
|
|
|
2617
2621
|
CheckboxBlankTogglerIcon.displayName = "CheckboxBlankTogglerIcon";
|
|
2618
2622
|
var CheckboxBlankTogglerIcon$1 = CheckboxBlankTogglerIcon;
|
|
2619
2623
|
|
|
2620
|
-
var _excluded$
|
|
2624
|
+
var _excluded$4b = ["gradient"];
|
|
2621
2625
|
|
|
2622
2626
|
/**
|
|
2623
2627
|
* @component CheckboxCircleArrowIcon
|
|
@@ -2647,7 +2651,7 @@
|
|
|
2647
2651
|
*/
|
|
2648
2652
|
var CheckboxCircleArrowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2649
2653
|
var gradient = _ref.gradient,
|
|
2650
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2654
|
+
props = _objectWithoutProperties(_ref, _excluded$4b);
|
|
2651
2655
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2652
2656
|
width: 24,
|
|
2653
2657
|
height: 24,
|
|
@@ -2667,7 +2671,7 @@
|
|
|
2667
2671
|
CheckboxCircleArrowIcon.displayName = "CheckboxCircleArrowIcon";
|
|
2668
2672
|
var CheckboxCircleArrowIcon$1 = CheckboxCircleArrowIcon;
|
|
2669
2673
|
|
|
2670
|
-
var _excluded$
|
|
2674
|
+
var _excluded$4a = ["gradient"];
|
|
2671
2675
|
|
|
2672
2676
|
/**
|
|
2673
2677
|
* @component CheckboxDocumentsIcon
|
|
@@ -2697,7 +2701,7 @@
|
|
|
2697
2701
|
*/
|
|
2698
2702
|
var CheckboxDocumentsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2699
2703
|
var gradient = _ref.gradient,
|
|
2700
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2704
|
+
props = _objectWithoutProperties(_ref, _excluded$4a);
|
|
2701
2705
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2702
2706
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2703
2707
|
width: 24,
|
|
@@ -2717,7 +2721,7 @@
|
|
|
2717
2721
|
CheckboxDocumentsIcon.displayName = "CheckboxDocumentsIcon";
|
|
2718
2722
|
var CheckboxDocumentsIcon$1 = CheckboxDocumentsIcon;
|
|
2719
2723
|
|
|
2720
|
-
var _excluded$
|
|
2724
|
+
var _excluded$49 = ["gradient"];
|
|
2721
2725
|
|
|
2722
2726
|
/**
|
|
2723
2727
|
* @component CheckboxIcon
|
|
@@ -2747,7 +2751,7 @@
|
|
|
2747
2751
|
*/
|
|
2748
2752
|
var CheckboxIcon$2 = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2749
2753
|
var gradient = _ref.gradient,
|
|
2750
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2754
|
+
props = _objectWithoutProperties(_ref, _excluded$49);
|
|
2751
2755
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2752
2756
|
width: 16,
|
|
2753
2757
|
height: 16,
|
|
@@ -2777,7 +2781,7 @@
|
|
|
2777
2781
|
CheckboxIcon$2.displayName = "CheckboxIcon";
|
|
2778
2782
|
var CheckboxIcon$3 = CheckboxIcon$2;
|
|
2779
2783
|
|
|
2780
|
-
var _excluded$
|
|
2784
|
+
var _excluded$48 = ["gradient"];
|
|
2781
2785
|
|
|
2782
2786
|
/**
|
|
2783
2787
|
* @component ChecklistSmallIcon
|
|
@@ -2807,7 +2811,7 @@
|
|
|
2807
2811
|
*/
|
|
2808
2812
|
var ChecklistSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2809
2813
|
var gradient = _ref.gradient,
|
|
2810
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2814
|
+
props = _objectWithoutProperties(_ref, _excluded$48);
|
|
2811
2815
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2812
2816
|
width: 12,
|
|
2813
2817
|
height: 12,
|
|
@@ -2827,7 +2831,7 @@
|
|
|
2827
2831
|
ChecklistSmallIcon.displayName = "ChecklistSmallIcon";
|
|
2828
2832
|
var ChecklistSmallIcon$1 = ChecklistSmallIcon;
|
|
2829
2833
|
|
|
2830
|
-
var _excluded$
|
|
2834
|
+
var _excluded$47 = ["gradient"];
|
|
2831
2835
|
|
|
2832
2836
|
/**
|
|
2833
2837
|
* @component ChecklistIcon
|
|
@@ -2857,7 +2861,7 @@
|
|
|
2857
2861
|
*/
|
|
2858
2862
|
var ChecklistIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2859
2863
|
var gradient = _ref.gradient,
|
|
2860
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2864
|
+
props = _objectWithoutProperties(_ref, _excluded$47);
|
|
2861
2865
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2862
2866
|
width: 24,
|
|
2863
2867
|
height: 24,
|
|
@@ -2877,7 +2881,7 @@
|
|
|
2877
2881
|
ChecklistIcon.displayName = "ChecklistIcon";
|
|
2878
2882
|
var ChecklistIcon$1 = ChecklistIcon;
|
|
2879
2883
|
|
|
2880
|
-
var _excluded$
|
|
2884
|
+
var _excluded$46 = ["gradient"];
|
|
2881
2885
|
|
|
2882
2886
|
/**
|
|
2883
2887
|
* @component CircleMultipleIcon
|
|
@@ -2907,7 +2911,7 @@
|
|
|
2907
2911
|
*/
|
|
2908
2912
|
var CircleMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2909
2913
|
var gradient = _ref.gradient,
|
|
2910
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2914
|
+
props = _objectWithoutProperties(_ref, _excluded$46);
|
|
2911
2915
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2912
2916
|
width: 24,
|
|
2913
2917
|
height: 24,
|
|
@@ -2927,7 +2931,7 @@
|
|
|
2927
2931
|
CircleMultipleIcon.displayName = "CircleMultipleIcon";
|
|
2928
2932
|
var CircleMultipleIcon$1 = CircleMultipleIcon;
|
|
2929
2933
|
|
|
2930
|
-
var _excluded$
|
|
2934
|
+
var _excluded$45 = ["gradient"];
|
|
2931
2935
|
|
|
2932
2936
|
/**
|
|
2933
2937
|
* @component ClockAddIcon
|
|
@@ -2957,7 +2961,7 @@
|
|
|
2957
2961
|
*/
|
|
2958
2962
|
var ClockAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
2959
2963
|
var gradient = _ref.gradient,
|
|
2960
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2964
|
+
props = _objectWithoutProperties(_ref, _excluded$45);
|
|
2961
2965
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2962
2966
|
width: 24,
|
|
2963
2967
|
height: 24,
|
|
@@ -2977,7 +2981,7 @@
|
|
|
2977
2981
|
ClockAddIcon.displayName = "ClockAddIcon";
|
|
2978
2982
|
var ClockAddIcon$1 = ClockAddIcon;
|
|
2979
2983
|
|
|
2980
|
-
var _excluded$
|
|
2984
|
+
var _excluded$44 = ["gradient"];
|
|
2981
2985
|
|
|
2982
2986
|
/**
|
|
2983
2987
|
* @component ClockDollarIcon
|
|
@@ -3007,7 +3011,7 @@
|
|
|
3007
3011
|
*/
|
|
3008
3012
|
var ClockDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3009
3013
|
var gradient = _ref.gradient,
|
|
3010
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3014
|
+
props = _objectWithoutProperties(_ref, _excluded$44);
|
|
3011
3015
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3012
3016
|
width: 24,
|
|
3013
3017
|
height: 24,
|
|
@@ -3030,7 +3034,7 @@
|
|
|
3030
3034
|
ClockDollarIcon.displayName = "ClockDollarIcon";
|
|
3031
3035
|
var ClockDollarIcon$1 = ClockDollarIcon;
|
|
3032
3036
|
|
|
3033
|
-
var _excluded$
|
|
3037
|
+
var _excluded$43 = ["gradient"];
|
|
3034
3038
|
|
|
3035
3039
|
/**
|
|
3036
3040
|
* @component ClockSmallIcon
|
|
@@ -3060,7 +3064,7 @@
|
|
|
3060
3064
|
*/
|
|
3061
3065
|
var ClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3062
3066
|
var gradient = _ref.gradient,
|
|
3063
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3067
|
+
props = _objectWithoutProperties(_ref, _excluded$43);
|
|
3064
3068
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3065
3069
|
width: 12,
|
|
3066
3070
|
height: 12,
|
|
@@ -3080,7 +3084,7 @@
|
|
|
3080
3084
|
ClockSmallIcon.displayName = "ClockSmallIcon";
|
|
3081
3085
|
var ClockSmallIcon$1 = ClockSmallIcon;
|
|
3082
3086
|
|
|
3083
|
-
var _excluded$
|
|
3087
|
+
var _excluded$42 = ["gradient"];
|
|
3084
3088
|
|
|
3085
3089
|
/**
|
|
3086
3090
|
* @component ClockStopwatchIndicatorIcon
|
|
@@ -3110,7 +3114,7 @@
|
|
|
3110
3114
|
*/
|
|
3111
3115
|
var ClockStopwatchIndicatorIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3112
3116
|
var gradient = _ref.gradient,
|
|
3113
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3117
|
+
props = _objectWithoutProperties(_ref, _excluded$42);
|
|
3114
3118
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3115
3119
|
width: 24,
|
|
3116
3120
|
height: 24,
|
|
@@ -3131,7 +3135,7 @@
|
|
|
3131
3135
|
ClockStopwatchIndicatorIcon.displayName = "ClockStopwatchIndicatorIcon";
|
|
3132
3136
|
var ClockStopwatchIndicatorIcon$1 = ClockStopwatchIndicatorIcon;
|
|
3133
3137
|
|
|
3134
|
-
var _excluded$
|
|
3138
|
+
var _excluded$41 = ["gradient"];
|
|
3135
3139
|
|
|
3136
3140
|
/**
|
|
3137
3141
|
* @component ClockStopwatchSmallIcon
|
|
@@ -3161,7 +3165,7 @@
|
|
|
3161
3165
|
*/
|
|
3162
3166
|
var ClockStopwatchSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3163
3167
|
var gradient = _ref.gradient,
|
|
3164
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3168
|
+
props = _objectWithoutProperties(_ref, _excluded$41);
|
|
3165
3169
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3166
3170
|
width: 12,
|
|
3167
3171
|
height: 12,
|
|
@@ -3181,7 +3185,7 @@
|
|
|
3181
3185
|
ClockStopwatchSmallIcon.displayName = "ClockStopwatchSmallIcon";
|
|
3182
3186
|
var ClockStopwatchSmallIcon$1 = ClockStopwatchSmallIcon;
|
|
3183
3187
|
|
|
3184
|
-
var _excluded$
|
|
3188
|
+
var _excluded$40 = ["gradient"];
|
|
3185
3189
|
|
|
3186
3190
|
/**
|
|
3187
3191
|
* @component ClockStopwatchIcon
|
|
@@ -3211,7 +3215,7 @@
|
|
|
3211
3215
|
*/
|
|
3212
3216
|
var ClockStopwatchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3213
3217
|
var gradient = _ref.gradient,
|
|
3214
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3218
|
+
props = _objectWithoutProperties(_ref, _excluded$40);
|
|
3215
3219
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3216
3220
|
width: 24,
|
|
3217
3221
|
height: 24,
|
|
@@ -3231,7 +3235,7 @@
|
|
|
3231
3235
|
ClockStopwatchIcon.displayName = "ClockStopwatchIcon";
|
|
3232
3236
|
var ClockStopwatchIcon$1 = ClockStopwatchIcon;
|
|
3233
3237
|
|
|
3234
|
-
var _excluded$
|
|
3238
|
+
var _excluded$3$ = ["gradient"];
|
|
3235
3239
|
|
|
3236
3240
|
/**
|
|
3237
3241
|
* @component ClockIcon
|
|
@@ -3261,7 +3265,7 @@
|
|
|
3261
3265
|
*/
|
|
3262
3266
|
var ClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3263
3267
|
var gradient = _ref.gradient,
|
|
3264
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3268
|
+
props = _objectWithoutProperties(_ref, _excluded$3$);
|
|
3265
3269
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3266
3270
|
width: 24,
|
|
3267
3271
|
height: 24,
|
|
@@ -3281,7 +3285,7 @@
|
|
|
3281
3285
|
ClockIcon.displayName = "ClockIcon";
|
|
3282
3286
|
var ClockIcon$1 = ClockIcon;
|
|
3283
3287
|
|
|
3284
|
-
var _excluded$
|
|
3288
|
+
var _excluded$3_ = ["gradient"];
|
|
3285
3289
|
|
|
3286
3290
|
/**
|
|
3287
3291
|
* @component CloseCircleIcon
|
|
@@ -3311,7 +3315,7 @@
|
|
|
3311
3315
|
*/
|
|
3312
3316
|
var CloseCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3313
3317
|
var gradient = _ref.gradient,
|
|
3314
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3318
|
+
props = _objectWithoutProperties(_ref, _excluded$3_);
|
|
3315
3319
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3316
3320
|
width: 24,
|
|
3317
3321
|
height: 24,
|
|
@@ -3332,7 +3336,7 @@
|
|
|
3332
3336
|
CloseCircleIcon.displayName = "CloseCircleIcon";
|
|
3333
3337
|
var CloseCircleIcon$1 = CloseCircleIcon;
|
|
3334
3338
|
|
|
3335
|
-
var _excluded$
|
|
3339
|
+
var _excluded$3Z = ["gradient"];
|
|
3336
3340
|
|
|
3337
3341
|
/**
|
|
3338
3342
|
* @component CloseDocumentIcon
|
|
@@ -3362,7 +3366,7 @@
|
|
|
3362
3366
|
*/
|
|
3363
3367
|
var CloseDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3364
3368
|
var gradient = _ref.gradient,
|
|
3365
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3369
|
+
props = _objectWithoutProperties(_ref, _excluded$3Z);
|
|
3366
3370
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3367
3371
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3368
3372
|
width: 24,
|
|
@@ -3382,7 +3386,7 @@
|
|
|
3382
3386
|
CloseDocumentIcon.displayName = "CloseDocumentIcon";
|
|
3383
3387
|
var CloseDocumentIcon$1 = CloseDocumentIcon;
|
|
3384
3388
|
|
|
3385
|
-
var _excluded$
|
|
3389
|
+
var _excluded$3Y = ["gradient"];
|
|
3386
3390
|
|
|
3387
3391
|
/**
|
|
3388
3392
|
* @component CloseSmallIcon
|
|
@@ -3412,7 +3416,7 @@
|
|
|
3412
3416
|
*/
|
|
3413
3417
|
var CloseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3414
3418
|
var gradient = _ref.gradient,
|
|
3415
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3419
|
+
props = _objectWithoutProperties(_ref, _excluded$3Y);
|
|
3416
3420
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3417
3421
|
width: 24,
|
|
3418
3422
|
height: 24,
|
|
@@ -3432,7 +3436,7 @@
|
|
|
3432
3436
|
CloseSmallIcon.displayName = "CloseSmallIcon";
|
|
3433
3437
|
var CloseSmallIcon$1 = CloseSmallIcon;
|
|
3434
3438
|
|
|
3435
|
-
var _excluded$
|
|
3439
|
+
var _excluded$3X = ["gradient"];
|
|
3436
3440
|
|
|
3437
3441
|
/**
|
|
3438
3442
|
* @component CloseIcon
|
|
@@ -3462,7 +3466,7 @@
|
|
|
3462
3466
|
*/
|
|
3463
3467
|
var CloseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3464
3468
|
var gradient = _ref.gradient,
|
|
3465
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3469
|
+
props = _objectWithoutProperties(_ref, _excluded$3X);
|
|
3466
3470
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3467
3471
|
width: 24,
|
|
3468
3472
|
height: 24,
|
|
@@ -3483,7 +3487,7 @@
|
|
|
3483
3487
|
CloseIcon.displayName = "CloseIcon";
|
|
3484
3488
|
var CloseIcon$1 = CloseIcon;
|
|
3485
3489
|
|
|
3486
|
-
var _excluded$
|
|
3490
|
+
var _excluded$3W = ["gradient"];
|
|
3487
3491
|
|
|
3488
3492
|
/**
|
|
3489
3493
|
* @component CollapsIcon
|
|
@@ -3513,7 +3517,7 @@
|
|
|
3513
3517
|
*/
|
|
3514
3518
|
var CollapsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3515
3519
|
var gradient = _ref.gradient,
|
|
3516
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3520
|
+
props = _objectWithoutProperties(_ref, _excluded$3W);
|
|
3517
3521
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3518
3522
|
width: 6,
|
|
3519
3523
|
height: 9,
|
|
@@ -3533,7 +3537,7 @@
|
|
|
3533
3537
|
CollapsIcon.displayName = "CollapsIcon";
|
|
3534
3538
|
var CollapsIcon$1 = CollapsIcon;
|
|
3535
3539
|
|
|
3536
|
-
var _excluded$
|
|
3540
|
+
var _excluded$3V = ["gradient"];
|
|
3537
3541
|
|
|
3538
3542
|
/**
|
|
3539
3543
|
* @component CollapseAllIcon
|
|
@@ -3563,7 +3567,7 @@
|
|
|
3563
3567
|
*/
|
|
3564
3568
|
var CollapseAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3565
3569
|
var gradient = _ref.gradient,
|
|
3566
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3570
|
+
props = _objectWithoutProperties(_ref, _excluded$3V);
|
|
3567
3571
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3568
3572
|
width: 24,
|
|
3569
3573
|
height: 24,
|
|
@@ -3583,7 +3587,7 @@
|
|
|
3583
3587
|
CollapseAllIcon.displayName = "CollapseAllIcon";
|
|
3584
3588
|
var CollapseAllIcon$1 = CollapseAllIcon;
|
|
3585
3589
|
|
|
3586
|
-
var _excluded$
|
|
3590
|
+
var _excluded$3U = ["gradient"];
|
|
3587
3591
|
|
|
3588
3592
|
/**
|
|
3589
3593
|
* @component CollapseExpandSingleIcon
|
|
@@ -3613,7 +3617,7 @@
|
|
|
3613
3617
|
*/
|
|
3614
3618
|
var CollapseExpandSingleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3615
3619
|
var gradient = _ref.gradient,
|
|
3616
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3620
|
+
props = _objectWithoutProperties(_ref, _excluded$3U);
|
|
3617
3621
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3618
3622
|
width: 24,
|
|
3619
3623
|
height: 24,
|
|
@@ -3633,7 +3637,7 @@
|
|
|
3633
3637
|
CollapseExpandSingleIcon.displayName = "CollapseExpandSingleIcon";
|
|
3634
3638
|
var CollapseExpandSingleIcon$1 = CollapseExpandSingleIcon;
|
|
3635
3639
|
|
|
3636
|
-
var _excluded$
|
|
3640
|
+
var _excluded$3T = ["gradient"];
|
|
3637
3641
|
|
|
3638
3642
|
/**
|
|
3639
3643
|
* @component CompanyAddIcon
|
|
@@ -3663,7 +3667,7 @@
|
|
|
3663
3667
|
*/
|
|
3664
3668
|
var CompanyAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3665
3669
|
var gradient = _ref.gradient,
|
|
3666
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3670
|
+
props = _objectWithoutProperties(_ref, _excluded$3T);
|
|
3667
3671
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3668
3672
|
width: 18,
|
|
3669
3673
|
height: 20,
|
|
@@ -3684,7 +3688,7 @@
|
|
|
3684
3688
|
CompanyAddIcon.displayName = "CompanyAddIcon";
|
|
3685
3689
|
var CompanyAddIcon$1 = CompanyAddIcon;
|
|
3686
3690
|
|
|
3687
|
-
var _excluded$
|
|
3691
|
+
var _excluded$3S = ["gradient"];
|
|
3688
3692
|
|
|
3689
3693
|
/**
|
|
3690
3694
|
* @component CompanyIcon
|
|
@@ -3714,7 +3718,7 @@
|
|
|
3714
3718
|
*/
|
|
3715
3719
|
var CompanyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3716
3720
|
var gradient = _ref.gradient,
|
|
3717
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3721
|
+
props = _objectWithoutProperties(_ref, _excluded$3S);
|
|
3718
3722
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3719
3723
|
width: 24,
|
|
3720
3724
|
height: 24,
|
|
@@ -3735,7 +3739,7 @@
|
|
|
3735
3739
|
CompanyIcon.displayName = "CompanyIcon";
|
|
3736
3740
|
var CompanyIcon$1 = CompanyIcon;
|
|
3737
3741
|
|
|
3738
|
-
var _excluded$
|
|
3742
|
+
var _excluded$3R = ["gradient"];
|
|
3739
3743
|
|
|
3740
3744
|
/**
|
|
3741
3745
|
* @component ComputerIcon
|
|
@@ -3765,7 +3769,7 @@
|
|
|
3765
3769
|
*/
|
|
3766
3770
|
var ComputerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3767
3771
|
var gradient = _ref.gradient,
|
|
3768
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3772
|
+
props = _objectWithoutProperties(_ref, _excluded$3R);
|
|
3769
3773
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3770
3774
|
width: 24,
|
|
3771
3775
|
height: 24,
|
|
@@ -3785,7 +3789,7 @@
|
|
|
3785
3789
|
ComputerIcon.displayName = "ComputerIcon";
|
|
3786
3790
|
var ComputerIcon$1 = ComputerIcon;
|
|
3787
3791
|
|
|
3788
|
-
var _excluded$
|
|
3792
|
+
var _excluded$3Q = ["gradient"];
|
|
3789
3793
|
|
|
3790
3794
|
/**
|
|
3791
3795
|
* @component CopyIcon
|
|
@@ -3815,7 +3819,7 @@
|
|
|
3815
3819
|
*/
|
|
3816
3820
|
var CopyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3817
3821
|
var gradient = _ref.gradient,
|
|
3818
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3822
|
+
props = _objectWithoutProperties(_ref, _excluded$3Q);
|
|
3819
3823
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3820
3824
|
width: 24,
|
|
3821
3825
|
height: 24,
|
|
@@ -3835,7 +3839,7 @@
|
|
|
3835
3839
|
CopyIcon.displayName = "CopyIcon";
|
|
3836
3840
|
var CopyIcon$1 = CopyIcon;
|
|
3837
3841
|
|
|
3838
|
-
var _excluded$
|
|
3842
|
+
var _excluded$3P = ["gradient"];
|
|
3839
3843
|
|
|
3840
3844
|
/**
|
|
3841
3845
|
* @component CrownBlankIcon
|
|
@@ -3865,7 +3869,7 @@
|
|
|
3865
3869
|
*/
|
|
3866
3870
|
var CrownBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3867
3871
|
var gradient = _ref.gradient,
|
|
3868
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3872
|
+
props = _objectWithoutProperties(_ref, _excluded$3P);
|
|
3869
3873
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3870
3874
|
width: 24,
|
|
3871
3875
|
height: 24,
|
|
@@ -3885,7 +3889,7 @@
|
|
|
3885
3889
|
CrownBlankIcon.displayName = "CrownBlankIcon";
|
|
3886
3890
|
var CrownBlankIcon$1 = CrownBlankIcon;
|
|
3887
3891
|
|
|
3888
|
-
var _excluded$
|
|
3892
|
+
var _excluded$3O = ["gradient"];
|
|
3889
3893
|
|
|
3890
3894
|
/**
|
|
3891
3895
|
* @component CrownSelectedIcon
|
|
@@ -3915,7 +3919,7 @@
|
|
|
3915
3919
|
*/
|
|
3916
3920
|
var CrownSelectedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3917
3921
|
var gradient = _ref.gradient,
|
|
3918
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3922
|
+
props = _objectWithoutProperties(_ref, _excluded$3O);
|
|
3919
3923
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3920
3924
|
width: 24,
|
|
3921
3925
|
height: 24,
|
|
@@ -3935,7 +3939,7 @@
|
|
|
3935
3939
|
CrownSelectedIcon.displayName = "CrownSelectedIcon";
|
|
3936
3940
|
var CrownSelectedIcon$1 = CrownSelectedIcon;
|
|
3937
3941
|
|
|
3938
|
-
var _excluded$
|
|
3942
|
+
var _excluded$3N = ["gradient"];
|
|
3939
3943
|
|
|
3940
3944
|
/**
|
|
3941
3945
|
* @component DependencySmallIcon
|
|
@@ -3965,7 +3969,7 @@
|
|
|
3965
3969
|
*/
|
|
3966
3970
|
var DependencySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
3967
3971
|
var gradient = _ref.gradient,
|
|
3968
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3972
|
+
props = _objectWithoutProperties(_ref, _excluded$3N);
|
|
3969
3973
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3970
3974
|
width: 12,
|
|
3971
3975
|
height: 12,
|
|
@@ -3985,7 +3989,7 @@
|
|
|
3985
3989
|
DependencySmallIcon.displayName = "DependencySmallIcon";
|
|
3986
3990
|
var DependencySmallIcon$1 = DependencySmallIcon;
|
|
3987
3991
|
|
|
3988
|
-
var _excluded$
|
|
3992
|
+
var _excluded$3M = ["gradient"];
|
|
3989
3993
|
|
|
3990
3994
|
/**
|
|
3991
3995
|
* @component DependencyIcon
|
|
@@ -4015,7 +4019,7 @@
|
|
|
4015
4019
|
*/
|
|
4016
4020
|
var DependencyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4017
4021
|
var gradient = _ref.gradient,
|
|
4018
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4022
|
+
props = _objectWithoutProperties(_ref, _excluded$3M);
|
|
4019
4023
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4020
4024
|
width: 24,
|
|
4021
4025
|
height: 24,
|
|
@@ -4035,7 +4039,7 @@
|
|
|
4035
4039
|
DependencyIcon.displayName = "DependencyIcon";
|
|
4036
4040
|
var DependencyIcon$1 = DependencyIcon;
|
|
4037
4041
|
|
|
4038
|
-
var _excluded$
|
|
4042
|
+
var _excluded$3L = ["gradient"];
|
|
4039
4043
|
|
|
4040
4044
|
/**
|
|
4041
4045
|
* @component DescriptionSmallIcon
|
|
@@ -4065,7 +4069,7 @@
|
|
|
4065
4069
|
*/
|
|
4066
4070
|
var DescriptionSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4067
4071
|
var gradient = _ref.gradient,
|
|
4068
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4072
|
+
props = _objectWithoutProperties(_ref, _excluded$3L);
|
|
4069
4073
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4070
4074
|
width: 18,
|
|
4071
4075
|
height: 18,
|
|
@@ -4086,7 +4090,7 @@
|
|
|
4086
4090
|
DescriptionSmallIcon.displayName = "DescriptionSmallIcon";
|
|
4087
4091
|
var DescriptionSmallIcon$1 = DescriptionSmallIcon;
|
|
4088
4092
|
|
|
4089
|
-
var _excluded$
|
|
4093
|
+
var _excluded$3K = ["gradient"];
|
|
4090
4094
|
|
|
4091
4095
|
/**
|
|
4092
4096
|
* @component DescriptionIcon
|
|
@@ -4116,7 +4120,7 @@
|
|
|
4116
4120
|
*/
|
|
4117
4121
|
var DescriptionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4118
4122
|
var gradient = _ref.gradient,
|
|
4119
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4123
|
+
props = _objectWithoutProperties(_ref, _excluded$3K);
|
|
4120
4124
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4121
4125
|
width: 24,
|
|
4122
4126
|
height: 24,
|
|
@@ -4136,7 +4140,7 @@
|
|
|
4136
4140
|
DescriptionIcon.displayName = "DescriptionIcon";
|
|
4137
4141
|
var DescriptionIcon$1 = DescriptionIcon;
|
|
4138
4142
|
|
|
4139
|
-
var _excluded$
|
|
4143
|
+
var _excluded$3J = ["gradient"];
|
|
4140
4144
|
|
|
4141
4145
|
/**
|
|
4142
4146
|
* @component DiscussionAddIcon
|
|
@@ -4166,7 +4170,7 @@
|
|
|
4166
4170
|
*/
|
|
4167
4171
|
var DiscussionAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4168
4172
|
var gradient = _ref.gradient,
|
|
4169
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4173
|
+
props = _objectWithoutProperties(_ref, _excluded$3J);
|
|
4170
4174
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4171
4175
|
width: 24,
|
|
4172
4176
|
height: 24,
|
|
@@ -4186,7 +4190,7 @@
|
|
|
4186
4190
|
DiscussionAddIcon.displayName = "DiscussionAddIcon";
|
|
4187
4191
|
var DiscussionAddIcon$1 = DiscussionAddIcon;
|
|
4188
4192
|
|
|
4189
|
-
var _excluded$
|
|
4193
|
+
var _excluded$3I = ["gradient"];
|
|
4190
4194
|
|
|
4191
4195
|
/**
|
|
4192
4196
|
* @component DiscussionIcon
|
|
@@ -4216,7 +4220,7 @@
|
|
|
4216
4220
|
*/
|
|
4217
4221
|
var DiscussionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4218
4222
|
var gradient = _ref.gradient,
|
|
4219
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4223
|
+
props = _objectWithoutProperties(_ref, _excluded$3I);
|
|
4220
4224
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4221
4225
|
width: 24,
|
|
4222
4226
|
height: 24,
|
|
@@ -4237,7 +4241,7 @@
|
|
|
4237
4241
|
DiscussionIcon.displayName = "DiscussionIcon";
|
|
4238
4242
|
var DiscussionIcon$1 = DiscussionIcon;
|
|
4239
4243
|
|
|
4240
|
-
var _excluded$
|
|
4244
|
+
var _excluded$3H = ["gradient"];
|
|
4241
4245
|
|
|
4242
4246
|
/**
|
|
4243
4247
|
* @component DollarCheckmarkSmallIcon
|
|
@@ -4267,7 +4271,7 @@
|
|
|
4267
4271
|
*/
|
|
4268
4272
|
var DollarCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4269
4273
|
var gradient = _ref.gradient,
|
|
4270
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4274
|
+
props = _objectWithoutProperties(_ref, _excluded$3H);
|
|
4271
4275
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4272
4276
|
width: 12,
|
|
4273
4277
|
height: 12,
|
|
@@ -4287,7 +4291,7 @@
|
|
|
4287
4291
|
DollarCheckmarkSmallIcon.displayName = "DollarCheckmarkSmallIcon";
|
|
4288
4292
|
var DollarCheckmarkSmallIcon$1 = DollarCheckmarkSmallIcon;
|
|
4289
4293
|
|
|
4290
|
-
var _excluded$
|
|
4294
|
+
var _excluded$3G = ["gradient"];
|
|
4291
4295
|
|
|
4292
4296
|
/**
|
|
4293
4297
|
* @component DollarCheckmarkIcon
|
|
@@ -4317,7 +4321,7 @@
|
|
|
4317
4321
|
*/
|
|
4318
4322
|
var DollarCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4319
4323
|
var gradient = _ref.gradient,
|
|
4320
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4324
|
+
props = _objectWithoutProperties(_ref, _excluded$3G);
|
|
4321
4325
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4322
4326
|
width: 24,
|
|
4323
4327
|
height: 24,
|
|
@@ -4337,7 +4341,7 @@
|
|
|
4337
4341
|
DollarCheckmarkIcon.displayName = "DollarCheckmarkIcon";
|
|
4338
4342
|
var DollarCheckmarkIcon$1 = DollarCheckmarkIcon;
|
|
4339
4343
|
|
|
4340
|
-
var _excluded$
|
|
4344
|
+
var _excluded$3F = ["gradient"];
|
|
4341
4345
|
|
|
4342
4346
|
/**
|
|
4343
4347
|
* @component DollarClockSmallIcon
|
|
@@ -4367,7 +4371,7 @@
|
|
|
4367
4371
|
*/
|
|
4368
4372
|
var DollarClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4369
4373
|
var gradient = _ref.gradient,
|
|
4370
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4374
|
+
props = _objectWithoutProperties(_ref, _excluded$3F);
|
|
4371
4375
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4372
4376
|
width: 12,
|
|
4373
4377
|
height: 12,
|
|
@@ -4387,7 +4391,7 @@
|
|
|
4387
4391
|
DollarClockSmallIcon.displayName = "DollarClockSmallIcon";
|
|
4388
4392
|
var DollarClockSmallIcon$1 = DollarClockSmallIcon;
|
|
4389
4393
|
|
|
4390
|
-
var _excluded$
|
|
4394
|
+
var _excluded$3E = ["gradient"];
|
|
4391
4395
|
|
|
4392
4396
|
/**
|
|
4393
4397
|
* @component DollarClockIcon
|
|
@@ -4417,7 +4421,7 @@
|
|
|
4417
4421
|
*/
|
|
4418
4422
|
var DollarClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4419
4423
|
var gradient = _ref.gradient,
|
|
4420
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4424
|
+
props = _objectWithoutProperties(_ref, _excluded$3E);
|
|
4421
4425
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4422
4426
|
width: 24,
|
|
4423
4427
|
height: 24,
|
|
@@ -4437,7 +4441,7 @@
|
|
|
4437
4441
|
DollarClockIcon.displayName = "DollarClockIcon";
|
|
4438
4442
|
var DollarClockIcon$1 = DollarClockIcon;
|
|
4439
4443
|
|
|
4440
|
-
var _excluded$
|
|
4444
|
+
var _excluded$3D = ["gradient"];
|
|
4441
4445
|
|
|
4442
4446
|
/**
|
|
4443
4447
|
* @component DollarDocumentPlusIcon
|
|
@@ -4467,7 +4471,7 @@
|
|
|
4467
4471
|
*/
|
|
4468
4472
|
var DollarDocumentPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4469
4473
|
var gradient = _ref.gradient,
|
|
4470
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4474
|
+
props = _objectWithoutProperties(_ref, _excluded$3D);
|
|
4471
4475
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4472
4476
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4473
4477
|
width: 24,
|
|
@@ -4487,7 +4491,7 @@
|
|
|
4487
4491
|
DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
|
|
4488
4492
|
var DollarDocumentPlusIcon$1 = DollarDocumentPlusIcon;
|
|
4489
4493
|
|
|
4490
|
-
var _excluded$
|
|
4494
|
+
var _excluded$3C = ["gradient"];
|
|
4491
4495
|
|
|
4492
4496
|
/**
|
|
4493
4497
|
* @component DollarDocumentIcon
|
|
@@ -4517,7 +4521,7 @@
|
|
|
4517
4521
|
*/
|
|
4518
4522
|
var DollarDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4519
4523
|
var gradient = _ref.gradient,
|
|
4520
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4524
|
+
props = _objectWithoutProperties(_ref, _excluded$3C);
|
|
4521
4525
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4522
4526
|
width: 24,
|
|
4523
4527
|
height: 24,
|
|
@@ -4538,7 +4542,7 @@
|
|
|
4538
4542
|
DollarDocumentIcon.displayName = "DollarDocumentIcon";
|
|
4539
4543
|
var DollarDocumentIcon$1 = DollarDocumentIcon;
|
|
4540
4544
|
|
|
4541
|
-
var _excluded$
|
|
4545
|
+
var _excluded$3B = ["gradient"];
|
|
4542
4546
|
|
|
4543
4547
|
/**
|
|
4544
4548
|
* @component DollarOffSmallIcon
|
|
@@ -4568,7 +4572,7 @@
|
|
|
4568
4572
|
*/
|
|
4569
4573
|
var DollarOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4570
4574
|
var gradient = _ref.gradient,
|
|
4571
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4575
|
+
props = _objectWithoutProperties(_ref, _excluded$3B);
|
|
4572
4576
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4573
4577
|
width: 12,
|
|
4574
4578
|
height: 12,
|
|
@@ -4588,7 +4592,7 @@
|
|
|
4588
4592
|
DollarOffSmallIcon.displayName = "DollarOffSmallIcon";
|
|
4589
4593
|
var DollarOffSmallIcon$1 = DollarOffSmallIcon;
|
|
4590
4594
|
|
|
4591
|
-
var _excluded$
|
|
4595
|
+
var _excluded$3A = ["gradient"];
|
|
4592
4596
|
|
|
4593
4597
|
/**
|
|
4594
4598
|
* @component DollarOffIcon
|
|
@@ -4618,7 +4622,7 @@
|
|
|
4618
4622
|
*/
|
|
4619
4623
|
var DollarOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4620
4624
|
var gradient = _ref.gradient,
|
|
4621
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4625
|
+
props = _objectWithoutProperties(_ref, _excluded$3A);
|
|
4622
4626
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4623
4627
|
width: 24,
|
|
4624
4628
|
height: 24,
|
|
@@ -4638,7 +4642,7 @@
|
|
|
4638
4642
|
DollarOffIcon.displayName = "DollarOffIcon";
|
|
4639
4643
|
var DollarOffIcon$1 = DollarOffIcon;
|
|
4640
4644
|
|
|
4641
|
-
var _excluded$
|
|
4645
|
+
var _excluded$3z = ["gradient"];
|
|
4642
4646
|
|
|
4643
4647
|
/**
|
|
4644
4648
|
* @component DollarSmallIcon
|
|
@@ -4668,7 +4672,7 @@
|
|
|
4668
4672
|
*/
|
|
4669
4673
|
var DollarSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4670
4674
|
var gradient = _ref.gradient,
|
|
4671
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4675
|
+
props = _objectWithoutProperties(_ref, _excluded$3z);
|
|
4672
4676
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4673
4677
|
width: 12,
|
|
4674
4678
|
height: 12,
|
|
@@ -4688,7 +4692,7 @@
|
|
|
4688
4692
|
DollarSmallIcon.displayName = "DollarSmallIcon";
|
|
4689
4693
|
var DollarSmallIcon$1 = DollarSmallIcon;
|
|
4690
4694
|
|
|
4691
|
-
var _excluded$
|
|
4695
|
+
var _excluded$3y = ["gradient"];
|
|
4692
4696
|
|
|
4693
4697
|
/**
|
|
4694
4698
|
* @component DollarIcon
|
|
@@ -4718,7 +4722,7 @@
|
|
|
4718
4722
|
*/
|
|
4719
4723
|
var DollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4720
4724
|
var gradient = _ref.gradient,
|
|
4721
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4725
|
+
props = _objectWithoutProperties(_ref, _excluded$3y);
|
|
4722
4726
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4723
4727
|
width: 24,
|
|
4724
4728
|
height: 24,
|
|
@@ -4738,7 +4742,7 @@
|
|
|
4738
4742
|
DollarIcon.displayName = "DollarIcon";
|
|
4739
4743
|
var DollarIcon$1 = DollarIcon;
|
|
4740
4744
|
|
|
4741
|
-
var _excluded$
|
|
4745
|
+
var _excluded$3x = ["gradient"];
|
|
4742
4746
|
|
|
4743
4747
|
/**
|
|
4744
4748
|
* @component DownloadIcon
|
|
@@ -4768,7 +4772,7 @@
|
|
|
4768
4772
|
*/
|
|
4769
4773
|
var DownloadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4770
4774
|
var gradient = _ref.gradient,
|
|
4771
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4775
|
+
props = _objectWithoutProperties(_ref, _excluded$3x);
|
|
4772
4776
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4773
4777
|
width: 24,
|
|
4774
4778
|
height: 24,
|
|
@@ -4788,7 +4792,7 @@
|
|
|
4788
4792
|
DownloadIcon.displayName = "DownloadIcon";
|
|
4789
4793
|
var DownloadIcon$1 = DownloadIcon;
|
|
4790
4794
|
|
|
4791
|
-
var _excluded$
|
|
4795
|
+
var _excluded$3w = ["gradient"];
|
|
4792
4796
|
|
|
4793
4797
|
/**
|
|
4794
4798
|
* @component DriveIcon
|
|
@@ -4818,7 +4822,7 @@
|
|
|
4818
4822
|
*/
|
|
4819
4823
|
var DriveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4820
4824
|
var gradient = _ref.gradient,
|
|
4821
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4825
|
+
props = _objectWithoutProperties(_ref, _excluded$3w);
|
|
4822
4826
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4823
4827
|
width: 24,
|
|
4824
4828
|
height: 24,
|
|
@@ -4838,7 +4842,7 @@
|
|
|
4838
4842
|
DriveIcon.displayName = "DriveIcon";
|
|
4839
4843
|
var DriveIcon$1 = DriveIcon;
|
|
4840
4844
|
|
|
4841
|
-
var _excluded$
|
|
4845
|
+
var _excluded$3v = ["gradient"];
|
|
4842
4846
|
|
|
4843
4847
|
/**
|
|
4844
4848
|
* @component DropboxIcon
|
|
@@ -4868,7 +4872,7 @@
|
|
|
4868
4872
|
*/
|
|
4869
4873
|
var DropboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4870
4874
|
var gradient = _ref.gradient,
|
|
4871
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4875
|
+
props = _objectWithoutProperties(_ref, _excluded$3v);
|
|
4872
4876
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4873
4877
|
width: 24,
|
|
4874
4878
|
height: 24,
|
|
@@ -4888,7 +4892,7 @@
|
|
|
4888
4892
|
DropboxIcon.displayName = "DropboxIcon";
|
|
4889
4893
|
var DropboxIcon$1 = DropboxIcon;
|
|
4890
4894
|
|
|
4891
|
-
var _excluded$
|
|
4895
|
+
var _excluded$3u = ["gradient"];
|
|
4892
4896
|
|
|
4893
4897
|
/**
|
|
4894
4898
|
* @component DuplicateIcon
|
|
@@ -4918,7 +4922,7 @@
|
|
|
4918
4922
|
*/
|
|
4919
4923
|
var DuplicateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4920
4924
|
var gradient = _ref.gradient,
|
|
4921
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4925
|
+
props = _objectWithoutProperties(_ref, _excluded$3u);
|
|
4922
4926
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4923
4927
|
width: 24,
|
|
4924
4928
|
height: 24,
|
|
@@ -4938,7 +4942,7 @@
|
|
|
4938
4942
|
DuplicateIcon.displayName = "DuplicateIcon";
|
|
4939
4943
|
var DuplicateIcon$1 = DuplicateIcon;
|
|
4940
4944
|
|
|
4941
|
-
var _excluded$
|
|
4945
|
+
var _excluded$3t = ["gradient"];
|
|
4942
4946
|
|
|
4943
4947
|
/**
|
|
4944
4948
|
* @component EditMultipleIcon
|
|
@@ -4968,7 +4972,7 @@
|
|
|
4968
4972
|
*/
|
|
4969
4973
|
var EditMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
4970
4974
|
var gradient = _ref.gradient,
|
|
4971
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4975
|
+
props = _objectWithoutProperties(_ref, _excluded$3t);
|
|
4972
4976
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4973
4977
|
width: 24,
|
|
4974
4978
|
height: 24,
|
|
@@ -4988,7 +4992,7 @@
|
|
|
4988
4992
|
EditMultipleIcon.displayName = "EditMultipleIcon";
|
|
4989
4993
|
var EditMultipleIcon$1 = EditMultipleIcon;
|
|
4990
4994
|
|
|
4991
|
-
var _excluded$
|
|
4995
|
+
var _excluded$3s = ["gradient"];
|
|
4992
4996
|
|
|
4993
4997
|
/**
|
|
4994
4998
|
* @component EditIcon
|
|
@@ -5018,7 +5022,7 @@
|
|
|
5018
5022
|
*/
|
|
5019
5023
|
var EditIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5020
5024
|
var gradient = _ref.gradient,
|
|
5021
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5025
|
+
props = _objectWithoutProperties(_ref, _excluded$3s);
|
|
5022
5026
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5023
5027
|
width: 24,
|
|
5024
5028
|
height: 24,
|
|
@@ -5038,7 +5042,7 @@
|
|
|
5038
5042
|
EditIcon.displayName = "EditIcon";
|
|
5039
5043
|
var EditIcon$1 = EditIcon;
|
|
5040
5044
|
|
|
5041
|
-
var _excluded$
|
|
5045
|
+
var _excluded$3r = ["gradient"];
|
|
5042
5046
|
|
|
5043
5047
|
/**
|
|
5044
5048
|
* @component EmojiIcon
|
|
@@ -5068,7 +5072,7 @@
|
|
|
5068
5072
|
*/
|
|
5069
5073
|
var EmojiIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5070
5074
|
var gradient = _ref.gradient,
|
|
5071
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5075
|
+
props = _objectWithoutProperties(_ref, _excluded$3r);
|
|
5072
5076
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5073
5077
|
width: 24,
|
|
5074
5078
|
height: 24,
|
|
@@ -5088,7 +5092,7 @@
|
|
|
5088
5092
|
EmojiIcon.displayName = "EmojiIcon";
|
|
5089
5093
|
var EmojiIcon$1 = EmojiIcon;
|
|
5090
5094
|
|
|
5091
|
-
var _excluded$
|
|
5095
|
+
var _excluded$3q = ["gradient"];
|
|
5092
5096
|
|
|
5093
5097
|
/**
|
|
5094
5098
|
* @component EstimatePlusIcon
|
|
@@ -5118,7 +5122,7 @@
|
|
|
5118
5122
|
*/
|
|
5119
5123
|
var EstimatePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5120
5124
|
var gradient = _ref.gradient,
|
|
5121
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5125
|
+
props = _objectWithoutProperties(_ref, _excluded$3q);
|
|
5122
5126
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5123
5127
|
width: 24,
|
|
5124
5128
|
height: 24,
|
|
@@ -5139,7 +5143,7 @@
|
|
|
5139
5143
|
EstimatePlusIcon.displayName = "EstimatePlusIcon";
|
|
5140
5144
|
var EstimatePlusIcon$1 = EstimatePlusIcon;
|
|
5141
5145
|
|
|
5142
|
-
var _excluded$
|
|
5146
|
+
var _excluded$3p = ["gradient"];
|
|
5143
5147
|
|
|
5144
5148
|
/**
|
|
5145
5149
|
* @component EstimatesIcon
|
|
@@ -5169,7 +5173,7 @@
|
|
|
5169
5173
|
*/
|
|
5170
5174
|
var EstimatesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5171
5175
|
var gradient = _ref.gradient,
|
|
5172
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5176
|
+
props = _objectWithoutProperties(_ref, _excluded$3p);
|
|
5173
5177
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5174
5178
|
width: 24,
|
|
5175
5179
|
height: 24,
|
|
@@ -5193,7 +5197,7 @@
|
|
|
5193
5197
|
EstimatesIcon.displayName = "EstimatesIcon";
|
|
5194
5198
|
var EstimatesIcon$1 = EstimatesIcon;
|
|
5195
5199
|
|
|
5196
|
-
var _excluded$
|
|
5200
|
+
var _excluded$3o = ["gradient"];
|
|
5197
5201
|
|
|
5198
5202
|
/**
|
|
5199
5203
|
* @component ExpandAllIcon
|
|
@@ -5223,7 +5227,7 @@
|
|
|
5223
5227
|
*/
|
|
5224
5228
|
var ExpandAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5225
5229
|
var gradient = _ref.gradient,
|
|
5226
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5230
|
+
props = _objectWithoutProperties(_ref, _excluded$3o);
|
|
5227
5231
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5228
5232
|
width: 24,
|
|
5229
5233
|
height: 24,
|
|
@@ -5243,7 +5247,7 @@
|
|
|
5243
5247
|
ExpandAllIcon.displayName = "ExpandAllIcon";
|
|
5244
5248
|
var ExpandAllIcon$1 = ExpandAllIcon;
|
|
5245
5249
|
|
|
5246
|
-
var _excluded$
|
|
5250
|
+
var _excluded$3n = ["gradient"];
|
|
5247
5251
|
|
|
5248
5252
|
/**
|
|
5249
5253
|
* @component ExpenseAddIcon
|
|
@@ -5273,7 +5277,7 @@
|
|
|
5273
5277
|
*/
|
|
5274
5278
|
var ExpenseAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5275
5279
|
var gradient = _ref.gradient,
|
|
5276
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5280
|
+
props = _objectWithoutProperties(_ref, _excluded$3n);
|
|
5277
5281
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5278
5282
|
width: 24,
|
|
5279
5283
|
height: 24,
|
|
@@ -5293,7 +5297,7 @@
|
|
|
5293
5297
|
ExpenseAddIcon.displayName = "ExpenseAddIcon";
|
|
5294
5298
|
var ExpenseAddIcon$1 = ExpenseAddIcon;
|
|
5295
5299
|
|
|
5296
|
-
var _excluded$
|
|
5300
|
+
var _excluded$3m = ["gradient"];
|
|
5297
5301
|
|
|
5298
5302
|
/**
|
|
5299
5303
|
* @component ExpensePlusIcon
|
|
@@ -5323,7 +5327,7 @@
|
|
|
5323
5327
|
*/
|
|
5324
5328
|
var ExpensePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5325
5329
|
var gradient = _ref.gradient,
|
|
5326
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5330
|
+
props = _objectWithoutProperties(_ref, _excluded$3m);
|
|
5327
5331
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5328
5332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5329
5333
|
width: 24,
|
|
@@ -5345,7 +5349,7 @@
|
|
|
5345
5349
|
ExpensePlusIcon.displayName = "ExpensePlusIcon";
|
|
5346
5350
|
var ExpensePlusIcon$1 = ExpensePlusIcon;
|
|
5347
5351
|
|
|
5348
|
-
var _excluded$
|
|
5352
|
+
var _excluded$3l = ["gradient"];
|
|
5349
5353
|
|
|
5350
5354
|
/**
|
|
5351
5355
|
* @component EyeOffSmallIcon
|
|
@@ -5375,7 +5379,7 @@
|
|
|
5375
5379
|
*/
|
|
5376
5380
|
var EyeOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5377
5381
|
var gradient = _ref.gradient,
|
|
5378
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5382
|
+
props = _objectWithoutProperties(_ref, _excluded$3l);
|
|
5379
5383
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5380
5384
|
width: 12,
|
|
5381
5385
|
height: 12,
|
|
@@ -5395,7 +5399,7 @@
|
|
|
5395
5399
|
EyeOffSmallIcon.displayName = "EyeOffSmallIcon";
|
|
5396
5400
|
var EyeOffSmallIcon$1 = EyeOffSmallIcon;
|
|
5397
5401
|
|
|
5398
|
-
var _excluded$
|
|
5402
|
+
var _excluded$3k = ["gradient"];
|
|
5399
5403
|
|
|
5400
5404
|
/**
|
|
5401
5405
|
* @component EyeOffIcon
|
|
@@ -5425,7 +5429,7 @@
|
|
|
5425
5429
|
*/
|
|
5426
5430
|
var EyeOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5427
5431
|
var gradient = _ref.gradient,
|
|
5428
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5432
|
+
props = _objectWithoutProperties(_ref, _excluded$3k);
|
|
5429
5433
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5430
5434
|
width: 24,
|
|
5431
5435
|
height: 24,
|
|
@@ -5445,7 +5449,7 @@
|
|
|
5445
5449
|
EyeOffIcon.displayName = "EyeOffIcon";
|
|
5446
5450
|
var EyeOffIcon$1 = EyeOffIcon;
|
|
5447
5451
|
|
|
5448
|
-
var _excluded$
|
|
5452
|
+
var _excluded$3j = ["gradient"];
|
|
5449
5453
|
|
|
5450
5454
|
/**
|
|
5451
5455
|
* @component EyeSmallIcon
|
|
@@ -5475,7 +5479,7 @@
|
|
|
5475
5479
|
*/
|
|
5476
5480
|
var EyeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5477
5481
|
var gradient = _ref.gradient,
|
|
5478
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5482
|
+
props = _objectWithoutProperties(_ref, _excluded$3j);
|
|
5479
5483
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5480
5484
|
width: 12,
|
|
5481
5485
|
height: 12,
|
|
@@ -5495,7 +5499,7 @@
|
|
|
5495
5499
|
EyeSmallIcon.displayName = "EyeSmallIcon";
|
|
5496
5500
|
var EyeSmallIcon$1 = EyeSmallIcon;
|
|
5497
5501
|
|
|
5498
|
-
var _excluded$
|
|
5502
|
+
var _excluded$3i = ["gradient"];
|
|
5499
5503
|
|
|
5500
5504
|
/**
|
|
5501
5505
|
* @component EyeIcon
|
|
@@ -5525,7 +5529,7 @@
|
|
|
5525
5529
|
*/
|
|
5526
5530
|
var EyeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5527
5531
|
var gradient = _ref.gradient,
|
|
5528
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5532
|
+
props = _objectWithoutProperties(_ref, _excluded$3i);
|
|
5529
5533
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5530
5534
|
width: 24,
|
|
5531
5535
|
height: 24,
|
|
@@ -5545,7 +5549,7 @@
|
|
|
5545
5549
|
EyeIcon.displayName = "EyeIcon";
|
|
5546
5550
|
var EyeIcon$1 = EyeIcon;
|
|
5547
5551
|
|
|
5548
|
-
var _excluded$
|
|
5552
|
+
var _excluded$3h = ["gradient"];
|
|
5549
5553
|
|
|
5550
5554
|
/**
|
|
5551
5555
|
* @component FilterIcon
|
|
@@ -5575,7 +5579,7 @@
|
|
|
5575
5579
|
*/
|
|
5576
5580
|
var FilterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5577
5581
|
var gradient = _ref.gradient,
|
|
5578
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5582
|
+
props = _objectWithoutProperties(_ref, _excluded$3h);
|
|
5579
5583
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5580
5584
|
width: 24,
|
|
5581
5585
|
height: 24,
|
|
@@ -5595,7 +5599,7 @@
|
|
|
5595
5599
|
FilterIcon.displayName = "FilterIcon";
|
|
5596
5600
|
var FilterIcon$1 = FilterIcon;
|
|
5597
5601
|
|
|
5598
|
-
var _excluded$
|
|
5602
|
+
var _excluded$3g = ["gradient"];
|
|
5599
5603
|
|
|
5600
5604
|
/**
|
|
5601
5605
|
* @component FolderMoveIcon
|
|
@@ -5625,7 +5629,7 @@
|
|
|
5625
5629
|
*/
|
|
5626
5630
|
var FolderMoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5627
5631
|
var gradient = _ref.gradient,
|
|
5628
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5632
|
+
props = _objectWithoutProperties(_ref, _excluded$3g);
|
|
5629
5633
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5630
5634
|
width: 24,
|
|
5631
5635
|
height: 24,
|
|
@@ -5645,7 +5649,7 @@
|
|
|
5645
5649
|
FolderMoveIcon.displayName = "FolderMoveIcon";
|
|
5646
5650
|
var FolderMoveIcon$1 = FolderMoveIcon;
|
|
5647
5651
|
|
|
5648
|
-
var _excluded$
|
|
5652
|
+
var _excluded$3f = ["gradient"];
|
|
5649
5653
|
|
|
5650
5654
|
/**
|
|
5651
5655
|
* @component FolderOutlineIcon
|
|
@@ -5675,7 +5679,7 @@
|
|
|
5675
5679
|
*/
|
|
5676
5680
|
var FolderOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5677
5681
|
var gradient = _ref.gradient,
|
|
5678
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5682
|
+
props = _objectWithoutProperties(_ref, _excluded$3f);
|
|
5679
5683
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5680
5684
|
width: 24,
|
|
5681
5685
|
height: 24,
|
|
@@ -5695,7 +5699,7 @@
|
|
|
5695
5699
|
FolderOutlineIcon.displayName = "FolderOutlineIcon";
|
|
5696
5700
|
var FolderOutlineIcon$1 = FolderOutlineIcon;
|
|
5697
5701
|
|
|
5698
|
-
var _excluded$
|
|
5702
|
+
var _excluded$3e = ["gradient"];
|
|
5699
5703
|
|
|
5700
5704
|
/**
|
|
5701
5705
|
* @component GiftIcon
|
|
@@ -5725,7 +5729,7 @@
|
|
|
5725
5729
|
*/
|
|
5726
5730
|
var GiftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5727
5731
|
var gradient = _ref.gradient,
|
|
5728
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5732
|
+
props = _objectWithoutProperties(_ref, _excluded$3e);
|
|
5729
5733
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5730
5734
|
width: 24,
|
|
5731
5735
|
height: 24,
|
|
@@ -5746,7 +5750,7 @@
|
|
|
5746
5750
|
GiftIcon.displayName = "GiftIcon";
|
|
5747
5751
|
var GiftIcon$1 = GiftIcon;
|
|
5748
5752
|
|
|
5749
|
-
var _excluded$
|
|
5753
|
+
var _excluded$3d = ["gradient"];
|
|
5750
5754
|
|
|
5751
5755
|
/**
|
|
5752
5756
|
* @component GroupByIcon
|
|
@@ -5776,7 +5780,7 @@
|
|
|
5776
5780
|
*/
|
|
5777
5781
|
var GroupByIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5778
5782
|
var gradient = _ref.gradient,
|
|
5779
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5783
|
+
props = _objectWithoutProperties(_ref, _excluded$3d);
|
|
5780
5784
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5781
5785
|
width: 24,
|
|
5782
5786
|
height: 24,
|
|
@@ -5795,7 +5799,7 @@
|
|
|
5795
5799
|
GroupByIcon.displayName = "GroupByIcon";
|
|
5796
5800
|
var GroupByIcon$1 = GroupByIcon;
|
|
5797
5801
|
|
|
5798
|
-
var _excluded$
|
|
5802
|
+
var _excluded$3c = ["gradient"];
|
|
5799
5803
|
|
|
5800
5804
|
/**
|
|
5801
5805
|
* @component HashtagIcon
|
|
@@ -5825,7 +5829,7 @@
|
|
|
5825
5829
|
*/
|
|
5826
5830
|
var HashtagIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5827
5831
|
var gradient = _ref.gradient,
|
|
5828
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5832
|
+
props = _objectWithoutProperties(_ref, _excluded$3c);
|
|
5829
5833
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5830
5834
|
width: 24,
|
|
5831
5835
|
height: 24,
|
|
@@ -5846,7 +5850,7 @@
|
|
|
5846
5850
|
HashtagIcon.displayName = "HashtagIcon";
|
|
5847
5851
|
var HashtagIcon$1 = HashtagIcon;
|
|
5848
5852
|
|
|
5849
|
-
var _excluded$
|
|
5853
|
+
var _excluded$3b = ["gradient"];
|
|
5850
5854
|
|
|
5851
5855
|
/**
|
|
5852
5856
|
* @component HelpIcon
|
|
@@ -5876,7 +5880,7 @@
|
|
|
5876
5880
|
*/
|
|
5877
5881
|
var HelpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5878
5882
|
var gradient = _ref.gradient,
|
|
5879
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5883
|
+
props = _objectWithoutProperties(_ref, _excluded$3b);
|
|
5880
5884
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5881
5885
|
width: 24,
|
|
5882
5886
|
height: 24,
|
|
@@ -5896,7 +5900,7 @@
|
|
|
5896
5900
|
HelpIcon.displayName = "HelpIcon";
|
|
5897
5901
|
var HelpIcon$1 = HelpIcon;
|
|
5898
5902
|
|
|
5899
|
-
var _excluded$
|
|
5903
|
+
var _excluded$3a = ["gradient"];
|
|
5900
5904
|
|
|
5901
5905
|
/**
|
|
5902
5906
|
* @component HistoryOfChangesIcon
|
|
@@ -5926,7 +5930,7 @@
|
|
|
5926
5930
|
*/
|
|
5927
5931
|
var HistoryOfChangesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5928
5932
|
var gradient = _ref.gradient,
|
|
5929
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5933
|
+
props = _objectWithoutProperties(_ref, _excluded$3a);
|
|
5930
5934
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5931
5935
|
width: 24,
|
|
5932
5936
|
height: 24,
|
|
@@ -5947,7 +5951,7 @@
|
|
|
5947
5951
|
HistoryOfChangesIcon.displayName = "HistoryOfChangesIcon";
|
|
5948
5952
|
var HistoryOfChangesIcon$1 = HistoryOfChangesIcon;
|
|
5949
5953
|
|
|
5950
|
-
var _excluded$
|
|
5954
|
+
var _excluded$39 = ["gradient"];
|
|
5951
5955
|
|
|
5952
5956
|
/**
|
|
5953
5957
|
* @component ImageIcon
|
|
@@ -5977,7 +5981,7 @@
|
|
|
5977
5981
|
*/
|
|
5978
5982
|
var ImageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
5979
5983
|
var gradient = _ref.gradient,
|
|
5980
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5984
|
+
props = _objectWithoutProperties(_ref, _excluded$39);
|
|
5981
5985
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5982
5986
|
width: 24,
|
|
5983
5987
|
height: 24,
|
|
@@ -5998,7 +6002,7 @@
|
|
|
5998
6002
|
ImageIcon.displayName = "ImageIcon";
|
|
5999
6003
|
var ImageIcon$1 = ImageIcon;
|
|
6000
6004
|
|
|
6001
|
-
var _excluded$
|
|
6005
|
+
var _excluded$38 = ["gradient"];
|
|
6002
6006
|
|
|
6003
6007
|
/**
|
|
6004
6008
|
* @component InfoSmallIcon
|
|
@@ -6028,7 +6032,7 @@
|
|
|
6028
6032
|
*/
|
|
6029
6033
|
var InfoSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6030
6034
|
var gradient = _ref.gradient,
|
|
6031
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6035
|
+
props = _objectWithoutProperties(_ref, _excluded$38);
|
|
6032
6036
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6033
6037
|
width: 15,
|
|
6034
6038
|
height: 15,
|
|
@@ -6048,7 +6052,7 @@
|
|
|
6048
6052
|
InfoSmallIcon.displayName = "InfoSmallIcon";
|
|
6049
6053
|
var InfoSmallIcon$1 = InfoSmallIcon;
|
|
6050
6054
|
|
|
6051
|
-
var _excluded$
|
|
6055
|
+
var _excluded$37 = ["gradient"];
|
|
6052
6056
|
|
|
6053
6057
|
/**
|
|
6054
6058
|
* @component InfoIcon
|
|
@@ -6078,7 +6082,7 @@
|
|
|
6078
6082
|
*/
|
|
6079
6083
|
var InfoIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6080
6084
|
var gradient = _ref.gradient,
|
|
6081
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6085
|
+
props = _objectWithoutProperties(_ref, _excluded$37);
|
|
6082
6086
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6083
6087
|
width: 24,
|
|
6084
6088
|
height: 24,
|
|
@@ -6098,7 +6102,7 @@
|
|
|
6098
6102
|
InfoIcon.displayName = "InfoIcon";
|
|
6099
6103
|
var InfoIcon$1 = InfoIcon;
|
|
6100
6104
|
|
|
6101
|
-
var _excluded$
|
|
6105
|
+
var _excluded$36 = ["gradient"];
|
|
6102
6106
|
|
|
6103
6107
|
/**
|
|
6104
6108
|
* @component InsertLinkIcon
|
|
@@ -6128,7 +6132,7 @@
|
|
|
6128
6132
|
*/
|
|
6129
6133
|
var InsertLinkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6130
6134
|
var gradient = _ref.gradient,
|
|
6131
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6135
|
+
props = _objectWithoutProperties(_ref, _excluded$36);
|
|
6132
6136
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6133
6137
|
width: 24,
|
|
6134
6138
|
height: 24,
|
|
@@ -6148,7 +6152,7 @@
|
|
|
6148
6152
|
InsertLinkIcon.displayName = "InsertLinkIcon";
|
|
6149
6153
|
var InsertLinkIcon$1 = InsertLinkIcon;
|
|
6150
6154
|
|
|
6151
|
-
var _excluded$
|
|
6155
|
+
var _excluded$35 = ["gradient"];
|
|
6152
6156
|
|
|
6153
6157
|
/**
|
|
6154
6158
|
* @component IntegrationsIcon
|
|
@@ -6178,7 +6182,7 @@
|
|
|
6178
6182
|
*/
|
|
6179
6183
|
var IntegrationsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6180
6184
|
var gradient = _ref.gradient,
|
|
6181
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6185
|
+
props = _objectWithoutProperties(_ref, _excluded$35);
|
|
6182
6186
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6183
6187
|
width: 24,
|
|
6184
6188
|
height: 24,
|
|
@@ -6202,7 +6206,7 @@
|
|
|
6202
6206
|
IntegrationsIcon.displayName = "IntegrationsIcon";
|
|
6203
6207
|
var IntegrationsIcon$1 = IntegrationsIcon;
|
|
6204
6208
|
|
|
6205
|
-
var _excluded$
|
|
6209
|
+
var _excluded$34 = ["gradient"];
|
|
6206
6210
|
|
|
6207
6211
|
/**
|
|
6208
6212
|
* @component InvoicesIcon
|
|
@@ -6232,7 +6236,7 @@
|
|
|
6232
6236
|
*/
|
|
6233
6237
|
var InvoicesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6234
6238
|
var gradient = _ref.gradient,
|
|
6235
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6239
|
+
props = _objectWithoutProperties(_ref, _excluded$34);
|
|
6236
6240
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6237
6241
|
width: 24,
|
|
6238
6242
|
height: 24,
|
|
@@ -6256,7 +6260,7 @@
|
|
|
6256
6260
|
InvoicesIcon.displayName = "InvoicesIcon";
|
|
6257
6261
|
var InvoicesIcon$1 = InvoicesIcon;
|
|
6258
6262
|
|
|
6259
|
-
var _excluded$
|
|
6263
|
+
var _excluded$33 = ["gradient"];
|
|
6260
6264
|
|
|
6261
6265
|
/**
|
|
6262
6266
|
* @component LabelsIcon
|
|
@@ -6286,7 +6290,7 @@
|
|
|
6286
6290
|
*/
|
|
6287
6291
|
var LabelsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6288
6292
|
var gradient = _ref.gradient,
|
|
6289
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6293
|
+
props = _objectWithoutProperties(_ref, _excluded$33);
|
|
6290
6294
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6291
6295
|
width: 24,
|
|
6292
6296
|
height: 24,
|
|
@@ -6306,7 +6310,7 @@
|
|
|
6306
6310
|
LabelsIcon.displayName = "LabelsIcon";
|
|
6307
6311
|
var LabelsIcon$1 = LabelsIcon;
|
|
6308
6312
|
|
|
6309
|
-
var _excluded$
|
|
6313
|
+
var _excluded$32 = ["gradient"];
|
|
6310
6314
|
|
|
6311
6315
|
/**
|
|
6312
6316
|
* @component LetterArrowRightIcon
|
|
@@ -6336,7 +6340,7 @@
|
|
|
6336
6340
|
*/
|
|
6337
6341
|
var LetterArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6338
6342
|
var gradient = _ref.gradient,
|
|
6339
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6343
|
+
props = _objectWithoutProperties(_ref, _excluded$32);
|
|
6340
6344
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6341
6345
|
width: 24,
|
|
6342
6346
|
height: 24,
|
|
@@ -6357,7 +6361,7 @@
|
|
|
6357
6361
|
LetterArrowRightIcon.displayName = "LetterArrowRightIcon";
|
|
6358
6362
|
var LetterArrowRightIcon$1 = LetterArrowRightIcon;
|
|
6359
6363
|
|
|
6360
|
-
var _excluded$
|
|
6364
|
+
var _excluded$31 = ["gradient"];
|
|
6361
6365
|
|
|
6362
6366
|
/**
|
|
6363
6367
|
* @component LetterFastIcon
|
|
@@ -6387,7 +6391,7 @@
|
|
|
6387
6391
|
*/
|
|
6388
6392
|
var LetterFastIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6389
6393
|
var gradient = _ref.gradient,
|
|
6390
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6394
|
+
props = _objectWithoutProperties(_ref, _excluded$31);
|
|
6391
6395
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6392
6396
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6393
6397
|
width: 24,
|
|
@@ -6407,7 +6411,7 @@
|
|
|
6407
6411
|
LetterFastIcon.displayName = "LetterFastIcon";
|
|
6408
6412
|
var LetterFastIcon$1 = LetterFastIcon;
|
|
6409
6413
|
|
|
6410
|
-
var _excluded$
|
|
6414
|
+
var _excluded$30 = ["gradient"];
|
|
6411
6415
|
|
|
6412
6416
|
/**
|
|
6413
6417
|
* @component LetterIcon
|
|
@@ -6437,7 +6441,7 @@
|
|
|
6437
6441
|
*/
|
|
6438
6442
|
var LetterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6439
6443
|
var gradient = _ref.gradient,
|
|
6440
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6444
|
+
props = _objectWithoutProperties(_ref, _excluded$30);
|
|
6441
6445
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6442
6446
|
width: 24,
|
|
6443
6447
|
height: 24,
|
|
@@ -6458,7 +6462,7 @@
|
|
|
6458
6462
|
LetterIcon.displayName = "LetterIcon";
|
|
6459
6463
|
var LetterIcon$1 = LetterIcon;
|
|
6460
6464
|
|
|
6461
|
-
var _excluded$
|
|
6465
|
+
var _excluded$2$ = ["gradient"];
|
|
6462
6466
|
|
|
6463
6467
|
/**
|
|
6464
6468
|
* @component LockSmallIcon
|
|
@@ -6488,7 +6492,7 @@
|
|
|
6488
6492
|
*/
|
|
6489
6493
|
var LockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6490
6494
|
var gradient = _ref.gradient,
|
|
6491
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6495
|
+
props = _objectWithoutProperties(_ref, _excluded$2$);
|
|
6492
6496
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6493
6497
|
width: 12,
|
|
6494
6498
|
height: 12,
|
|
@@ -6508,7 +6512,7 @@
|
|
|
6508
6512
|
LockSmallIcon.displayName = "LockSmallIcon";
|
|
6509
6513
|
var LockSmallIcon$1 = LockSmallIcon;
|
|
6510
6514
|
|
|
6511
|
-
var _excluded$
|
|
6515
|
+
var _excluded$2_ = ["gradient"];
|
|
6512
6516
|
|
|
6513
6517
|
/**
|
|
6514
6518
|
* @component LockIcon
|
|
@@ -6538,7 +6542,7 @@
|
|
|
6538
6542
|
*/
|
|
6539
6543
|
var LockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6540
6544
|
var gradient = _ref.gradient,
|
|
6541
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6545
|
+
props = _objectWithoutProperties(_ref, _excluded$2_);
|
|
6542
6546
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6543
6547
|
width: 24,
|
|
6544
6548
|
height: 24,
|
|
@@ -6558,7 +6562,7 @@
|
|
|
6558
6562
|
LockIcon.displayName = "LockIcon";
|
|
6559
6563
|
var LockIcon$1 = LockIcon;
|
|
6560
6564
|
|
|
6561
|
-
var _excluded$
|
|
6565
|
+
var _excluded$2Z = ["gradient"];
|
|
6562
6566
|
|
|
6563
6567
|
/**
|
|
6564
6568
|
* @component MarkerIcon
|
|
@@ -6588,7 +6592,7 @@
|
|
|
6588
6592
|
*/
|
|
6589
6593
|
var MarkerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6590
6594
|
var gradient = _ref.gradient,
|
|
6591
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6595
|
+
props = _objectWithoutProperties(_ref, _excluded$2Z);
|
|
6592
6596
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6593
6597
|
width: 24,
|
|
6594
6598
|
height: 24,
|
|
@@ -6608,7 +6612,7 @@
|
|
|
6608
6612
|
MarkerIcon.displayName = "MarkerIcon";
|
|
6609
6613
|
var MarkerIcon$1 = MarkerIcon;
|
|
6610
6614
|
|
|
6611
|
-
var _excluded$
|
|
6615
|
+
var _excluded$2Y = ["gradient"];
|
|
6612
6616
|
|
|
6613
6617
|
/**
|
|
6614
6618
|
* @component MessageAddIcon
|
|
@@ -6638,7 +6642,7 @@
|
|
|
6638
6642
|
*/
|
|
6639
6643
|
var MessageAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6640
6644
|
var gradient = _ref.gradient,
|
|
6641
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6645
|
+
props = _objectWithoutProperties(_ref, _excluded$2Y);
|
|
6642
6646
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6643
6647
|
width: 24,
|
|
6644
6648
|
height: 24,
|
|
@@ -6657,7 +6661,7 @@
|
|
|
6657
6661
|
MessageAddIcon.displayName = "MessageAddIcon";
|
|
6658
6662
|
var MessageAddIcon$1 = MessageAddIcon;
|
|
6659
6663
|
|
|
6660
|
-
var _excluded$
|
|
6664
|
+
var _excluded$2X = ["gradient"];
|
|
6661
6665
|
|
|
6662
6666
|
/**
|
|
6663
6667
|
* @component MessageEmptyIcon
|
|
@@ -6687,7 +6691,7 @@
|
|
|
6687
6691
|
*/
|
|
6688
6692
|
var MessageEmptyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6689
6693
|
var gradient = _ref.gradient,
|
|
6690
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6694
|
+
props = _objectWithoutProperties(_ref, _excluded$2X);
|
|
6691
6695
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6692
6696
|
width: 24,
|
|
6693
6697
|
height: 24,
|
|
@@ -6707,7 +6711,7 @@
|
|
|
6707
6711
|
MessageEmptyIcon.displayName = "MessageEmptyIcon";
|
|
6708
6712
|
var MessageEmptyIcon$1 = MessageEmptyIcon;
|
|
6709
6713
|
|
|
6710
|
-
var _excluded$
|
|
6714
|
+
var _excluded$2W = ["gradient"];
|
|
6711
6715
|
|
|
6712
6716
|
/**
|
|
6713
6717
|
* @component MessageSmallIcon
|
|
@@ -6737,7 +6741,7 @@
|
|
|
6737
6741
|
*/
|
|
6738
6742
|
var MessageSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6739
6743
|
var gradient = _ref.gradient,
|
|
6740
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6744
|
+
props = _objectWithoutProperties(_ref, _excluded$2W);
|
|
6741
6745
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6742
6746
|
width: 12,
|
|
6743
6747
|
height: 12,
|
|
@@ -6757,7 +6761,7 @@
|
|
|
6757
6761
|
MessageSmallIcon.displayName = "MessageSmallIcon";
|
|
6758
6762
|
var MessageSmallIcon$1 = MessageSmallIcon;
|
|
6759
6763
|
|
|
6760
|
-
var _excluded$
|
|
6764
|
+
var _excluded$2V = ["gradient"];
|
|
6761
6765
|
|
|
6762
6766
|
/**
|
|
6763
6767
|
* @component MessageSolidIcon
|
|
@@ -6787,7 +6791,7 @@
|
|
|
6787
6791
|
*/
|
|
6788
6792
|
var MessageSolidIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6789
6793
|
var gradient = _ref.gradient,
|
|
6790
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6794
|
+
props = _objectWithoutProperties(_ref, _excluded$2V);
|
|
6791
6795
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6792
6796
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6793
6797
|
width: 24,
|
|
@@ -6807,7 +6811,7 @@
|
|
|
6807
6811
|
MessageSolidIcon.displayName = "MessageSolidIcon";
|
|
6808
6812
|
var MessageSolidIcon$1 = MessageSolidIcon;
|
|
6809
6813
|
|
|
6810
|
-
var _excluded$
|
|
6814
|
+
var _excluded$2U = ["gradient"];
|
|
6811
6815
|
|
|
6812
6816
|
/**
|
|
6813
6817
|
* @component MessageIcon
|
|
@@ -6837,7 +6841,7 @@
|
|
|
6837
6841
|
*/
|
|
6838
6842
|
var MessageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6839
6843
|
var gradient = _ref.gradient,
|
|
6840
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6844
|
+
props = _objectWithoutProperties(_ref, _excluded$2U);
|
|
6841
6845
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6842
6846
|
width: 24,
|
|
6843
6847
|
height: 24,
|
|
@@ -6857,7 +6861,7 @@
|
|
|
6857
6861
|
MessageIcon.displayName = "MessageIcon";
|
|
6858
6862
|
var MessageIcon$1 = MessageIcon;
|
|
6859
6863
|
|
|
6860
|
-
var _excluded$
|
|
6864
|
+
var _excluded$2T = ["gradient"];
|
|
6861
6865
|
|
|
6862
6866
|
/**
|
|
6863
6867
|
* @component MinusIcon
|
|
@@ -6887,7 +6891,7 @@
|
|
|
6887
6891
|
*/
|
|
6888
6892
|
var MinusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6889
6893
|
var gradient = _ref.gradient,
|
|
6890
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6894
|
+
props = _objectWithoutProperties(_ref, _excluded$2T);
|
|
6891
6895
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6892
6896
|
width: 24,
|
|
6893
6897
|
height: 24,
|
|
@@ -6911,7 +6915,7 @@
|
|
|
6911
6915
|
MinusIcon.displayName = "MinusIcon";
|
|
6912
6916
|
var MinusIcon$1 = MinusIcon;
|
|
6913
6917
|
|
|
6914
|
-
var _excluded$
|
|
6918
|
+
var _excluded$2S = ["gradient"];
|
|
6915
6919
|
|
|
6916
6920
|
/**
|
|
6917
6921
|
* @component MobileMenuIcon
|
|
@@ -6941,7 +6945,7 @@
|
|
|
6941
6945
|
*/
|
|
6942
6946
|
var MobileMenuIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6943
6947
|
var gradient = _ref.gradient,
|
|
6944
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6948
|
+
props = _objectWithoutProperties(_ref, _excluded$2S);
|
|
6945
6949
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6946
6950
|
width: 24,
|
|
6947
6951
|
height: 24,
|
|
@@ -6962,7 +6966,7 @@
|
|
|
6962
6966
|
MobileMenuIcon.displayName = "MobileMenuIcon";
|
|
6963
6967
|
var MobileMenuIcon$1 = MobileMenuIcon;
|
|
6964
6968
|
|
|
6965
|
-
var _excluded$
|
|
6969
|
+
var _excluded$2R = ["gradient"];
|
|
6966
6970
|
|
|
6967
6971
|
/**
|
|
6968
6972
|
* @component MoonIcon
|
|
@@ -6992,7 +6996,7 @@
|
|
|
6992
6996
|
*/
|
|
6993
6997
|
var MoonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6994
6998
|
var gradient = _ref.gradient,
|
|
6995
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6999
|
+
props = _objectWithoutProperties(_ref, _excluded$2R);
|
|
6996
7000
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6997
7001
|
width: 20,
|
|
6998
7002
|
height: 20,
|
|
@@ -7013,7 +7017,7 @@
|
|
|
7013
7017
|
MoonIcon.displayName = "MoonIcon";
|
|
7014
7018
|
var MoonIcon$1 = MoonIcon;
|
|
7015
7019
|
|
|
7016
|
-
var _excluded$
|
|
7020
|
+
var _excluded$2Q = ["gradient"];
|
|
7017
7021
|
|
|
7018
7022
|
/**
|
|
7019
7023
|
* @component MoveTriggerIcon
|
|
@@ -7043,7 +7047,7 @@
|
|
|
7043
7047
|
*/
|
|
7044
7048
|
var MoveTriggerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7045
7049
|
var gradient = _ref.gradient,
|
|
7046
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7050
|
+
props = _objectWithoutProperties(_ref, _excluded$2Q);
|
|
7047
7051
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7048
7052
|
width: 10,
|
|
7049
7053
|
height: 10,
|
|
@@ -7063,7 +7067,7 @@
|
|
|
7063
7067
|
MoveTriggerIcon.displayName = "MoveTriggerIcon";
|
|
7064
7068
|
var MoveTriggerIcon$1 = MoveTriggerIcon;
|
|
7065
7069
|
|
|
7066
|
-
var _excluded$
|
|
7070
|
+
var _excluded$2P = ["gradient"];
|
|
7067
7071
|
|
|
7068
7072
|
/**
|
|
7069
7073
|
* @component MoveIcon
|
|
@@ -7093,7 +7097,7 @@
|
|
|
7093
7097
|
*/
|
|
7094
7098
|
var MoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7095
7099
|
var gradient = _ref.gradient,
|
|
7096
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7100
|
+
props = _objectWithoutProperties(_ref, _excluded$2P);
|
|
7097
7101
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7098
7102
|
width: 24,
|
|
7099
7103
|
height: 24,
|
|
@@ -7114,7 +7118,7 @@
|
|
|
7114
7118
|
MoveIcon.displayName = "MoveIcon";
|
|
7115
7119
|
var MoveIcon$1 = MoveIcon;
|
|
7116
7120
|
|
|
7117
|
-
var _excluded$
|
|
7121
|
+
var _excluded$2O = ["gradient"];
|
|
7118
7122
|
|
|
7119
7123
|
/**
|
|
7120
7124
|
* @component MyWorkIcon
|
|
@@ -7144,7 +7148,7 @@
|
|
|
7144
7148
|
*/
|
|
7145
7149
|
var MyWorkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7146
7150
|
var gradient = _ref.gradient,
|
|
7147
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7151
|
+
props = _objectWithoutProperties(_ref, _excluded$2O);
|
|
7148
7152
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7149
7153
|
width: 24,
|
|
7150
7154
|
height: 24,
|
|
@@ -7168,7 +7172,7 @@
|
|
|
7168
7172
|
MyWorkIcon.displayName = "MyWorkIcon";
|
|
7169
7173
|
var MyWorkIcon$1 = MyWorkIcon;
|
|
7170
7174
|
|
|
7171
|
-
var _excluded$
|
|
7175
|
+
var _excluded$2N = ["gradient"];
|
|
7172
7176
|
|
|
7173
7177
|
/**
|
|
7174
7178
|
* @component NoteAddIcon
|
|
@@ -7198,7 +7202,7 @@
|
|
|
7198
7202
|
*/
|
|
7199
7203
|
var NoteAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7200
7204
|
var gradient = _ref.gradient,
|
|
7201
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7205
|
+
props = _objectWithoutProperties(_ref, _excluded$2N);
|
|
7202
7206
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7203
7207
|
width: 24,
|
|
7204
7208
|
height: 24,
|
|
@@ -7218,7 +7222,7 @@
|
|
|
7218
7222
|
NoteAddIcon.displayName = "NoteAddIcon";
|
|
7219
7223
|
var NoteAddIcon$1 = NoteAddIcon;
|
|
7220
7224
|
|
|
7221
|
-
var _excluded$
|
|
7225
|
+
var _excluded$2M = ["gradient"];
|
|
7222
7226
|
|
|
7223
7227
|
/**
|
|
7224
7228
|
* @component NoteIcon
|
|
@@ -7248,7 +7252,7 @@
|
|
|
7248
7252
|
*/
|
|
7249
7253
|
var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7250
7254
|
var gradient = _ref.gradient,
|
|
7251
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7255
|
+
props = _objectWithoutProperties(_ref, _excluded$2M);
|
|
7252
7256
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7253
7257
|
width: 24,
|
|
7254
7258
|
height: 24,
|
|
@@ -7268,7 +7272,7 @@
|
|
|
7268
7272
|
NoteIcon.displayName = "NoteIcon";
|
|
7269
7273
|
var NoteIcon$1 = NoteIcon;
|
|
7270
7274
|
|
|
7271
|
-
var _excluded$
|
|
7275
|
+
var _excluded$2L = ["gradient"];
|
|
7272
7276
|
|
|
7273
7277
|
/**
|
|
7274
7278
|
* @component NotebookIcon
|
|
@@ -7298,7 +7302,7 @@
|
|
|
7298
7302
|
*/
|
|
7299
7303
|
var NotebookIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7300
7304
|
var gradient = _ref.gradient,
|
|
7301
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7305
|
+
props = _objectWithoutProperties(_ref, _excluded$2L);
|
|
7302
7306
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7303
7307
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7304
7308
|
width: 24,
|
|
@@ -7318,7 +7322,7 @@
|
|
|
7318
7322
|
NotebookIcon.displayName = "NotebookIcon";
|
|
7319
7323
|
var NotebookIcon$1 = NotebookIcon;
|
|
7320
7324
|
|
|
7321
|
-
var _excluded$
|
|
7325
|
+
var _excluded$2K = ["gradient"];
|
|
7322
7326
|
|
|
7323
7327
|
/**
|
|
7324
7328
|
* @component NotificationBellIcon
|
|
@@ -7348,7 +7352,7 @@
|
|
|
7348
7352
|
*/
|
|
7349
7353
|
var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7350
7354
|
var gradient = _ref.gradient,
|
|
7351
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7355
|
+
props = _objectWithoutProperties(_ref, _excluded$2K);
|
|
7352
7356
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7353
7357
|
width: 24,
|
|
7354
7358
|
height: 24,
|
|
@@ -7367,7 +7371,7 @@
|
|
|
7367
7371
|
NotificationBellIcon.displayName = "NotificationBellIcon";
|
|
7368
7372
|
var NotificationBellIcon$1 = NotificationBellIcon;
|
|
7369
7373
|
|
|
7370
|
-
var _excluded$
|
|
7374
|
+
var _excluded$2J = ["gradient"];
|
|
7371
7375
|
|
|
7372
7376
|
/**
|
|
7373
7377
|
* @component OpenExpandedIcon
|
|
@@ -7397,7 +7401,7 @@
|
|
|
7397
7401
|
*/
|
|
7398
7402
|
var OpenExpandedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7399
7403
|
var gradient = _ref.gradient,
|
|
7400
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7404
|
+
props = _objectWithoutProperties(_ref, _excluded$2J);
|
|
7401
7405
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7402
7406
|
width: 24,
|
|
7403
7407
|
height: 24,
|
|
@@ -7417,7 +7421,7 @@
|
|
|
7417
7421
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
7418
7422
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
7419
7423
|
|
|
7420
|
-
var _excluded$
|
|
7424
|
+
var _excluded$2I = ["gradient"];
|
|
7421
7425
|
|
|
7422
7426
|
/**
|
|
7423
7427
|
* @component OpenSheetIcon
|
|
@@ -7447,7 +7451,7 @@
|
|
|
7447
7451
|
*/
|
|
7448
7452
|
var OpenSheetIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7449
7453
|
var gradient = _ref.gradient,
|
|
7450
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7454
|
+
props = _objectWithoutProperties(_ref, _excluded$2I);
|
|
7451
7455
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7452
7456
|
width: 24,
|
|
7453
7457
|
height: 24,
|
|
@@ -7472,7 +7476,7 @@
|
|
|
7472
7476
|
OpenSheetIcon.displayName = "OpenSheetIcon";
|
|
7473
7477
|
var OpenSheetIcon$1 = OpenSheetIcon;
|
|
7474
7478
|
|
|
7475
|
-
var _excluded$
|
|
7479
|
+
var _excluded$2H = ["gradient"];
|
|
7476
7480
|
|
|
7477
7481
|
/**
|
|
7478
7482
|
* @component OrderFirstIcon
|
|
@@ -7502,7 +7506,7 @@
|
|
|
7502
7506
|
*/
|
|
7503
7507
|
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7504
7508
|
var gradient = _ref.gradient,
|
|
7505
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7509
|
+
props = _objectWithoutProperties(_ref, _excluded$2H);
|
|
7506
7510
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7507
7511
|
width: 24,
|
|
7508
7512
|
height: 24,
|
|
@@ -7522,7 +7526,7 @@
|
|
|
7522
7526
|
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
7523
7527
|
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
7524
7528
|
|
|
7525
|
-
var _excluded$
|
|
7529
|
+
var _excluded$2G = ["gradient"];
|
|
7526
7530
|
|
|
7527
7531
|
/**
|
|
7528
7532
|
* @component PaidSmallIcon
|
|
@@ -7552,7 +7556,7 @@
|
|
|
7552
7556
|
*/
|
|
7553
7557
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7554
7558
|
var gradient = _ref.gradient,
|
|
7555
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7559
|
+
props = _objectWithoutProperties(_ref, _excluded$2G);
|
|
7556
7560
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7557
7561
|
width: 12,
|
|
7558
7562
|
height: 12,
|
|
@@ -7572,7 +7576,7 @@
|
|
|
7572
7576
|
PaidSmallIcon.displayName = "PaidSmallIcon";
|
|
7573
7577
|
var PaidSmallIcon$1 = PaidSmallIcon;
|
|
7574
7578
|
|
|
7575
|
-
var _excluded$
|
|
7579
|
+
var _excluded$2F = ["gradient"];
|
|
7576
7580
|
|
|
7577
7581
|
/**
|
|
7578
7582
|
* @component PauseCircleOutlineIcon
|
|
@@ -7602,7 +7606,7 @@
|
|
|
7602
7606
|
*/
|
|
7603
7607
|
var PauseCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7604
7608
|
var gradient = _ref.gradient,
|
|
7605
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7609
|
+
props = _objectWithoutProperties(_ref, _excluded$2F);
|
|
7606
7610
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7607
7611
|
width: 24,
|
|
7608
7612
|
height: 24,
|
|
@@ -7622,7 +7626,7 @@
|
|
|
7622
7626
|
PauseCircleOutlineIcon.displayName = "PauseCircleOutlineIcon";
|
|
7623
7627
|
var PauseCircleOutlineIcon$1 = PauseCircleOutlineIcon;
|
|
7624
7628
|
|
|
7625
|
-
var _excluded$
|
|
7629
|
+
var _excluded$2E = ["gradient"];
|
|
7626
7630
|
|
|
7627
7631
|
/**
|
|
7628
7632
|
* @component PauseIcon
|
|
@@ -7652,7 +7656,7 @@
|
|
|
7652
7656
|
*/
|
|
7653
7657
|
var PauseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7654
7658
|
var gradient = _ref.gradient,
|
|
7655
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7659
|
+
props = _objectWithoutProperties(_ref, _excluded$2E);
|
|
7656
7660
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7657
7661
|
width: 24,
|
|
7658
7662
|
height: 24,
|
|
@@ -7672,7 +7676,7 @@
|
|
|
7672
7676
|
PauseIcon.displayName = "PauseIcon";
|
|
7673
7677
|
var PauseIcon$1 = PauseIcon;
|
|
7674
7678
|
|
|
7675
|
-
var _excluded$
|
|
7679
|
+
var _excluded$2D = ["gradient"];
|
|
7676
7680
|
|
|
7677
7681
|
/**
|
|
7678
7682
|
* @component PauseSmallIcon
|
|
@@ -7702,7 +7706,7 @@
|
|
|
7702
7706
|
*/
|
|
7703
7707
|
var PauseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7704
7708
|
var gradient = _ref.gradient,
|
|
7705
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7709
|
+
props = _objectWithoutProperties(_ref, _excluded$2D);
|
|
7706
7710
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7707
7711
|
width: 24,
|
|
7708
7712
|
height: 24,
|
|
@@ -7722,7 +7726,7 @@
|
|
|
7722
7726
|
PauseSmallIcon.displayName = "PauseSmallIcon";
|
|
7723
7727
|
var PauseSmallIcon$1 = PauseSmallIcon;
|
|
7724
7728
|
|
|
7725
|
-
var _excluded$
|
|
7729
|
+
var _excluded$2C = ["gradient"];
|
|
7726
7730
|
|
|
7727
7731
|
/**
|
|
7728
7732
|
* @component PencilSmallIcon
|
|
@@ -7752,7 +7756,7 @@
|
|
|
7752
7756
|
*/
|
|
7753
7757
|
var PencilSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7754
7758
|
var gradient = _ref.gradient,
|
|
7755
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7759
|
+
props = _objectWithoutProperties(_ref, _excluded$2C);
|
|
7756
7760
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7757
7761
|
width: 12,
|
|
7758
7762
|
height: 12,
|
|
@@ -7771,7 +7775,7 @@
|
|
|
7771
7775
|
PencilSmallIcon.displayName = "PencilSmallIcon";
|
|
7772
7776
|
var PencilSmallIcon$1 = PencilSmallIcon;
|
|
7773
7777
|
|
|
7774
|
-
var _excluded$
|
|
7778
|
+
var _excluded$2B = ["gradient"];
|
|
7775
7779
|
|
|
7776
7780
|
/**
|
|
7777
7781
|
* @component PencilIcon
|
|
@@ -7801,7 +7805,7 @@
|
|
|
7801
7805
|
*/
|
|
7802
7806
|
var PencilIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7803
7807
|
var gradient = _ref.gradient,
|
|
7804
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7808
|
+
props = _objectWithoutProperties(_ref, _excluded$2B);
|
|
7805
7809
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7806
7810
|
width: 24,
|
|
7807
7811
|
height: 24,
|
|
@@ -7820,7 +7824,7 @@
|
|
|
7820
7824
|
PencilIcon.displayName = "PencilIcon";
|
|
7821
7825
|
var PencilIcon$1 = PencilIcon;
|
|
7822
7826
|
|
|
7823
|
-
var _excluded$
|
|
7827
|
+
var _excluded$2A = ["gradient"];
|
|
7824
7828
|
|
|
7825
7829
|
/**
|
|
7826
7830
|
* @component PendingPaymentSmallIcon
|
|
@@ -7850,7 +7854,7 @@
|
|
|
7850
7854
|
*/
|
|
7851
7855
|
var PendingPaymentSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7852
7856
|
var gradient = _ref.gradient,
|
|
7853
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7857
|
+
props = _objectWithoutProperties(_ref, _excluded$2A);
|
|
7854
7858
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7855
7859
|
width: 12,
|
|
7856
7860
|
height: 12,
|
|
@@ -7870,7 +7874,7 @@
|
|
|
7870
7874
|
PendingPaymentSmallIcon.displayName = "PendingPaymentSmallIcon";
|
|
7871
7875
|
var PendingPaymentSmallIcon$1 = PendingPaymentSmallIcon;
|
|
7872
7876
|
|
|
7873
|
-
var _excluded$
|
|
7877
|
+
var _excluded$2z = ["gradient"];
|
|
7874
7878
|
|
|
7875
7879
|
/**
|
|
7876
7880
|
* @component PeopleIcon
|
|
@@ -7900,7 +7904,7 @@
|
|
|
7900
7904
|
*/
|
|
7901
7905
|
var PeopleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7902
7906
|
var gradient = _ref.gradient,
|
|
7903
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7907
|
+
props = _objectWithoutProperties(_ref, _excluded$2z);
|
|
7904
7908
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7905
7909
|
width: 24,
|
|
7906
7910
|
height: 24,
|
|
@@ -7924,7 +7928,7 @@
|
|
|
7924
7928
|
PeopleIcon.displayName = "PeopleIcon";
|
|
7925
7929
|
var PeopleIcon$1 = PeopleIcon;
|
|
7926
7930
|
|
|
7927
|
-
var _excluded$
|
|
7931
|
+
var _excluded$2y = ["gradient"];
|
|
7928
7932
|
|
|
7929
7933
|
/**
|
|
7930
7934
|
* @component PersonArrowOutCircleIcon
|
|
@@ -7954,7 +7958,7 @@
|
|
|
7954
7958
|
*/
|
|
7955
7959
|
var PersonArrowOutCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7956
7960
|
var gradient = _ref.gradient,
|
|
7957
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7961
|
+
props = _objectWithoutProperties(_ref, _excluded$2y);
|
|
7958
7962
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7959
7963
|
width: 24,
|
|
7960
7964
|
height: 24,
|
|
@@ -7975,7 +7979,7 @@
|
|
|
7975
7979
|
PersonArrowOutCircleIcon.displayName = "PersonArrowOutCircleIcon";
|
|
7976
7980
|
var PersonArrowOutCircleIcon$1 = PersonArrowOutCircleIcon;
|
|
7977
7981
|
|
|
7978
|
-
var _excluded$
|
|
7982
|
+
var _excluded$2x = ["gradient"];
|
|
7979
7983
|
|
|
7980
7984
|
/**
|
|
7981
7985
|
* @component PersonCircleOffIcon
|
|
@@ -8005,7 +8009,7 @@
|
|
|
8005
8009
|
*/
|
|
8006
8010
|
var PersonCircleOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8007
8011
|
var gradient = _ref.gradient,
|
|
8008
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8012
|
+
props = _objectWithoutProperties(_ref, _excluded$2x);
|
|
8009
8013
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8010
8014
|
width: 24,
|
|
8011
8015
|
height: 24,
|
|
@@ -8025,7 +8029,7 @@
|
|
|
8025
8029
|
PersonCircleOffIcon.displayName = "PersonCircleOffIcon";
|
|
8026
8030
|
var PersonCircleOffIcon$1 = PersonCircleOffIcon;
|
|
8027
8031
|
|
|
8028
|
-
var _excluded$
|
|
8032
|
+
var _excluded$2w = ["gradient"];
|
|
8029
8033
|
|
|
8030
8034
|
/**
|
|
8031
8035
|
* @component PersonCircleIcon
|
|
@@ -8055,7 +8059,7 @@
|
|
|
8055
8059
|
*/
|
|
8056
8060
|
var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8057
8061
|
var gradient = _ref.gradient,
|
|
8058
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8062
|
+
props = _objectWithoutProperties(_ref, _excluded$2w);
|
|
8059
8063
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8060
8064
|
width: 24,
|
|
8061
8065
|
height: 24,
|
|
@@ -8075,7 +8079,7 @@
|
|
|
8075
8079
|
PersonCircleIcon.displayName = "PersonCircleIcon";
|
|
8076
8080
|
var PersonCircleIcon$1 = PersonCircleIcon;
|
|
8077
8081
|
|
|
8078
|
-
var _excluded$
|
|
8082
|
+
var _excluded$2v = ["gradient"];
|
|
8079
8083
|
|
|
8080
8084
|
/**
|
|
8081
8085
|
* @component PersonListIcon
|
|
@@ -8105,7 +8109,7 @@
|
|
|
8105
8109
|
*/
|
|
8106
8110
|
var PersonListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8107
8111
|
var gradient = _ref.gradient,
|
|
8108
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8112
|
+
props = _objectWithoutProperties(_ref, _excluded$2v);
|
|
8109
8113
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8110
8114
|
width: 24,
|
|
8111
8115
|
height: 24,
|
|
@@ -8126,7 +8130,7 @@
|
|
|
8126
8130
|
PersonListIcon.displayName = "PersonListIcon";
|
|
8127
8131
|
var PersonListIcon$1 = PersonListIcon;
|
|
8128
8132
|
|
|
8129
|
-
var _excluded$
|
|
8133
|
+
var _excluded$2u = ["gradient"];
|
|
8130
8134
|
|
|
8131
8135
|
/**
|
|
8132
8136
|
* @component PersonPlusIcon
|
|
@@ -8156,7 +8160,7 @@
|
|
|
8156
8160
|
*/
|
|
8157
8161
|
var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8158
8162
|
var gradient = _ref.gradient,
|
|
8159
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8163
|
+
props = _objectWithoutProperties(_ref, _excluded$2u);
|
|
8160
8164
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8161
8165
|
width: 24,
|
|
8162
8166
|
height: 24,
|
|
@@ -8176,7 +8180,7 @@
|
|
|
8176
8180
|
PersonPlusIcon.displayName = "PersonPlusIcon";
|
|
8177
8181
|
var PersonPlusIcon$1 = PersonPlusIcon;
|
|
8178
8182
|
|
|
8179
|
-
var _excluded$
|
|
8183
|
+
var _excluded$2t = ["gradient"];
|
|
8180
8184
|
|
|
8181
8185
|
/**
|
|
8182
8186
|
* @component PersonIcon
|
|
@@ -8206,7 +8210,7 @@
|
|
|
8206
8210
|
*/
|
|
8207
8211
|
var PersonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8208
8212
|
var gradient = _ref.gradient,
|
|
8209
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8213
|
+
props = _objectWithoutProperties(_ref, _excluded$2t);
|
|
8210
8214
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8211
8215
|
width: 24,
|
|
8212
8216
|
height: 24,
|
|
@@ -8226,7 +8230,7 @@
|
|
|
8226
8230
|
PersonIcon.displayName = "PersonIcon";
|
|
8227
8231
|
var PersonIcon$1 = PersonIcon;
|
|
8228
8232
|
|
|
8229
|
-
var _excluded$
|
|
8233
|
+
var _excluded$2s = ["gradient"];
|
|
8230
8234
|
|
|
8231
8235
|
/**
|
|
8232
8236
|
* @component PinIcon
|
|
@@ -8256,7 +8260,7 @@
|
|
|
8256
8260
|
*/
|
|
8257
8261
|
var PinIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8258
8262
|
var gradient = _ref.gradient,
|
|
8259
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8263
|
+
props = _objectWithoutProperties(_ref, _excluded$2s);
|
|
8260
8264
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8261
8265
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8262
8266
|
width: 24,
|
|
@@ -8276,7 +8280,7 @@
|
|
|
8276
8280
|
PinIcon.displayName = "PinIcon";
|
|
8277
8281
|
var PinIcon$1 = PinIcon;
|
|
8278
8282
|
|
|
8279
|
-
var _excluded$
|
|
8283
|
+
var _excluded$2r = ["gradient"];
|
|
8280
8284
|
|
|
8281
8285
|
/**
|
|
8282
8286
|
* @component PlayCircleOutlineIcon
|
|
@@ -8306,7 +8310,7 @@
|
|
|
8306
8310
|
*/
|
|
8307
8311
|
var PlayCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8308
8312
|
var gradient = _ref.gradient,
|
|
8309
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8313
|
+
props = _objectWithoutProperties(_ref, _excluded$2r);
|
|
8310
8314
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8311
8315
|
width: 24,
|
|
8312
8316
|
height: 24,
|
|
@@ -8326,7 +8330,7 @@
|
|
|
8326
8330
|
PlayCircleOutlineIcon.displayName = "PlayCircleOutlineIcon";
|
|
8327
8331
|
var PlayCircleOutlineIcon$1 = PlayCircleOutlineIcon;
|
|
8328
8332
|
|
|
8329
|
-
var _excluded$
|
|
8333
|
+
var _excluded$2q = ["gradient"];
|
|
8330
8334
|
|
|
8331
8335
|
/**
|
|
8332
8336
|
* @component PlayIcon
|
|
@@ -8356,7 +8360,7 @@
|
|
|
8356
8360
|
*/
|
|
8357
8361
|
var PlayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8358
8362
|
var gradient = _ref.gradient,
|
|
8359
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8363
|
+
props = _objectWithoutProperties(_ref, _excluded$2q);
|
|
8360
8364
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8361
8365
|
width: 24,
|
|
8362
8366
|
height: 24,
|
|
@@ -8376,7 +8380,7 @@
|
|
|
8376
8380
|
PlayIcon.displayName = "PlayIcon";
|
|
8377
8381
|
var PlayIcon$1 = PlayIcon;
|
|
8378
8382
|
|
|
8379
|
-
var _excluded$
|
|
8383
|
+
var _excluded$2p = ["gradient"];
|
|
8380
8384
|
|
|
8381
8385
|
/**
|
|
8382
8386
|
* @component PlaySmallIcon
|
|
@@ -8406,7 +8410,7 @@
|
|
|
8406
8410
|
*/
|
|
8407
8411
|
var PlaySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8408
8412
|
var gradient = _ref.gradient,
|
|
8409
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8413
|
+
props = _objectWithoutProperties(_ref, _excluded$2p);
|
|
8410
8414
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8411
8415
|
width: 24,
|
|
8412
8416
|
height: 24,
|
|
@@ -8426,7 +8430,7 @@
|
|
|
8426
8430
|
PlaySmallIcon.displayName = "PlaySmallIcon";
|
|
8427
8431
|
var PlaySmallIcon$1 = PlaySmallIcon;
|
|
8428
8432
|
|
|
8429
|
-
var _excluded$
|
|
8433
|
+
var _excluded$2o = ["gradient"];
|
|
8430
8434
|
|
|
8431
8435
|
/**
|
|
8432
8436
|
* @component PriorityLowIcon
|
|
@@ -8456,7 +8460,7 @@
|
|
|
8456
8460
|
*/
|
|
8457
8461
|
var PriorityLowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8458
8462
|
var gradient = _ref.gradient,
|
|
8459
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8463
|
+
props = _objectWithoutProperties(_ref, _excluded$2o);
|
|
8460
8464
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8461
8465
|
width: 24,
|
|
8462
8466
|
height: 24,
|
|
@@ -8477,7 +8481,7 @@
|
|
|
8477
8481
|
PriorityLowIcon.displayName = "PriorityLowIcon";
|
|
8478
8482
|
var PriorityLowIcon$1 = PriorityLowIcon;
|
|
8479
8483
|
|
|
8480
|
-
var _excluded$
|
|
8484
|
+
var _excluded$2n = ["gradient"];
|
|
8481
8485
|
|
|
8482
8486
|
/**
|
|
8483
8487
|
* @component ProjectAddIcon
|
|
@@ -8507,7 +8511,7 @@
|
|
|
8507
8511
|
*/
|
|
8508
8512
|
var ProjectAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8509
8513
|
var gradient = _ref.gradient,
|
|
8510
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8514
|
+
props = _objectWithoutProperties(_ref, _excluded$2n);
|
|
8511
8515
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8512
8516
|
width: 24,
|
|
8513
8517
|
height: 24,
|
|
@@ -8527,7 +8531,7 @@
|
|
|
8527
8531
|
ProjectAddIcon.displayName = "ProjectAddIcon";
|
|
8528
8532
|
var ProjectAddIcon$1 = ProjectAddIcon;
|
|
8529
8533
|
|
|
8530
|
-
var _excluded$
|
|
8534
|
+
var _excluded$2m = ["gradient"];
|
|
8531
8535
|
|
|
8532
8536
|
/**
|
|
8533
8537
|
* @component ProjectSearchIcon
|
|
@@ -8557,7 +8561,7 @@
|
|
|
8557
8561
|
*/
|
|
8558
8562
|
var ProjectSearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8559
8563
|
var gradient = _ref.gradient,
|
|
8560
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8564
|
+
props = _objectWithoutProperties(_ref, _excluded$2m);
|
|
8561
8565
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8562
8566
|
width: 24,
|
|
8563
8567
|
height: 24,
|
|
@@ -8578,7 +8582,7 @@
|
|
|
8578
8582
|
ProjectSearchIcon.displayName = "ProjectSearchIcon";
|
|
8579
8583
|
var ProjectSearchIcon$1 = ProjectSearchIcon;
|
|
8580
8584
|
|
|
8581
|
-
var _excluded$
|
|
8585
|
+
var _excluded$2l = ["gradient"];
|
|
8582
8586
|
|
|
8583
8587
|
/**
|
|
8584
8588
|
* @component ProjectStarIcon
|
|
@@ -8608,7 +8612,7 @@
|
|
|
8608
8612
|
*/
|
|
8609
8613
|
var ProjectStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8610
8614
|
var gradient = _ref.gradient,
|
|
8611
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8615
|
+
props = _objectWithoutProperties(_ref, _excluded$2l);
|
|
8612
8616
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8613
8617
|
width: 24,
|
|
8614
8618
|
height: 24,
|
|
@@ -8631,7 +8635,7 @@
|
|
|
8631
8635
|
ProjectStarIcon.displayName = "ProjectStarIcon";
|
|
8632
8636
|
var ProjectStarIcon$1 = ProjectStarIcon;
|
|
8633
8637
|
|
|
8634
|
-
var _excluded$
|
|
8638
|
+
var _excluded$2k = ["gradient"];
|
|
8635
8639
|
|
|
8636
8640
|
/**
|
|
8637
8641
|
* @component ProjectTemplateAddIcon
|
|
@@ -8661,7 +8665,7 @@
|
|
|
8661
8665
|
*/
|
|
8662
8666
|
var ProjectTemplateAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8663
8667
|
var gradient = _ref.gradient,
|
|
8664
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8668
|
+
props = _objectWithoutProperties(_ref, _excluded$2k);
|
|
8665
8669
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8666
8670
|
width: 24,
|
|
8667
8671
|
height: 24,
|
|
@@ -8681,7 +8685,7 @@
|
|
|
8681
8685
|
ProjectTemplateAddIcon.displayName = "ProjectTemplateAddIcon";
|
|
8682
8686
|
var ProjectTemplateAddIcon$1 = ProjectTemplateAddIcon;
|
|
8683
8687
|
|
|
8684
|
-
var _excluded$
|
|
8688
|
+
var _excluded$2j = ["gradient"];
|
|
8685
8689
|
|
|
8686
8690
|
/**
|
|
8687
8691
|
* @component ProjectTemplateConvertIcon
|
|
@@ -8711,7 +8715,7 @@
|
|
|
8711
8715
|
*/
|
|
8712
8716
|
var ProjectTemplateConvertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8713
8717
|
var gradient = _ref.gradient,
|
|
8714
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8718
|
+
props = _objectWithoutProperties(_ref, _excluded$2j);
|
|
8715
8719
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8716
8720
|
width: 24,
|
|
8717
8721
|
height: 24,
|
|
@@ -8731,7 +8735,7 @@
|
|
|
8731
8735
|
ProjectTemplateConvertIcon.displayName = "ProjectTemplateConvertIcon";
|
|
8732
8736
|
var ProjectTemplateConvertIcon$1 = ProjectTemplateConvertIcon;
|
|
8733
8737
|
|
|
8734
|
-
var _excluded$
|
|
8738
|
+
var _excluded$2i = ["gradient"];
|
|
8735
8739
|
|
|
8736
8740
|
/**
|
|
8737
8741
|
* @component ProjectTemplateIcon
|
|
@@ -8761,7 +8765,7 @@
|
|
|
8761
8765
|
*/
|
|
8762
8766
|
var ProjectTemplateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8763
8767
|
var gradient = _ref.gradient,
|
|
8764
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8768
|
+
props = _objectWithoutProperties(_ref, _excluded$2i);
|
|
8765
8769
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8766
8770
|
width: 24,
|
|
8767
8771
|
height: 24,
|
|
@@ -8781,7 +8785,7 @@
|
|
|
8781
8785
|
ProjectTemplateIcon.displayName = "ProjectTemplateIcon";
|
|
8782
8786
|
var ProjectTemplateIcon$1 = ProjectTemplateIcon;
|
|
8783
8787
|
|
|
8784
|
-
var _excluded$
|
|
8788
|
+
var _excluded$2h = ["gradient"];
|
|
8785
8789
|
|
|
8786
8790
|
/**
|
|
8787
8791
|
* @component ProjectsIcon
|
|
@@ -8811,7 +8815,7 @@
|
|
|
8811
8815
|
*/
|
|
8812
8816
|
var ProjectsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8813
8817
|
var gradient = _ref.gradient,
|
|
8814
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8818
|
+
props = _objectWithoutProperties(_ref, _excluded$2h);
|
|
8815
8819
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8816
8820
|
width: 24,
|
|
8817
8821
|
height: 24,
|
|
@@ -8835,7 +8839,7 @@
|
|
|
8835
8839
|
ProjectsIcon.displayName = "ProjectsIcon";
|
|
8836
8840
|
var ProjectsIcon$1 = ProjectsIcon;
|
|
8837
8841
|
|
|
8838
|
-
var _excluded$
|
|
8842
|
+
var _excluded$2g = ["gradient"];
|
|
8839
8843
|
|
|
8840
8844
|
/**
|
|
8841
8845
|
* @component RadioBlankIcon
|
|
@@ -8865,7 +8869,7 @@
|
|
|
8865
8869
|
*/
|
|
8866
8870
|
var RadioBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8867
8871
|
var gradient = _ref.gradient,
|
|
8868
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8872
|
+
props = _objectWithoutProperties(_ref, _excluded$2g);
|
|
8869
8873
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8870
8874
|
width: 24,
|
|
8871
8875
|
height: 24,
|
|
@@ -8885,7 +8889,7 @@
|
|
|
8885
8889
|
RadioBlankIcon.displayName = "RadioBlankIcon";
|
|
8886
8890
|
var RadioBlankIcon$1 = RadioBlankIcon;
|
|
8887
8891
|
|
|
8888
|
-
var _excluded$
|
|
8892
|
+
var _excluded$2f = ["gradient"];
|
|
8889
8893
|
|
|
8890
8894
|
/**
|
|
8891
8895
|
* @component RadioButtonIcon
|
|
@@ -8915,7 +8919,7 @@
|
|
|
8915
8919
|
*/
|
|
8916
8920
|
var RadioButtonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8917
8921
|
var gradient = _ref.gradient,
|
|
8918
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8922
|
+
props = _objectWithoutProperties(_ref, _excluded$2f);
|
|
8919
8923
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8920
8924
|
width: 16,
|
|
8921
8925
|
height: 16,
|
|
@@ -8943,7 +8947,7 @@
|
|
|
8943
8947
|
RadioButtonIcon.displayName = "RadioButtonIcon";
|
|
8944
8948
|
var RadioButtonIcon$1 = RadioButtonIcon;
|
|
8945
8949
|
|
|
8946
|
-
var _excluded$
|
|
8950
|
+
var _excluded$2e = ["gradient"];
|
|
8947
8951
|
|
|
8948
8952
|
/**
|
|
8949
8953
|
* @component RearangeIcon
|
|
@@ -8973,7 +8977,7 @@
|
|
|
8973
8977
|
*/
|
|
8974
8978
|
var RearangeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8975
8979
|
var gradient = _ref.gradient,
|
|
8976
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8980
|
+
props = _objectWithoutProperties(_ref, _excluded$2e);
|
|
8977
8981
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8978
8982
|
width: 24,
|
|
8979
8983
|
height: 24,
|
|
@@ -8993,7 +8997,7 @@
|
|
|
8993
8997
|
RearangeIcon.displayName = "RearangeIcon";
|
|
8994
8998
|
var RearangeIcon$1 = RearangeIcon;
|
|
8995
8999
|
|
|
8996
|
-
var _excluded$
|
|
9000
|
+
var _excluded$2d = ["gradient"];
|
|
8997
9001
|
|
|
8998
9002
|
/**
|
|
8999
9003
|
* @component RearrangeSmallIcon
|
|
@@ -9023,7 +9027,7 @@
|
|
|
9023
9027
|
*/
|
|
9024
9028
|
var RearrangeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9025
9029
|
var gradient = _ref.gradient,
|
|
9026
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9030
|
+
props = _objectWithoutProperties(_ref, _excluded$2d);
|
|
9027
9031
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9028
9032
|
width: 12,
|
|
9029
9033
|
height: 12,
|
|
@@ -9043,7 +9047,7 @@
|
|
|
9043
9047
|
RearrangeSmallIcon.displayName = "RearrangeSmallIcon";
|
|
9044
9048
|
var RearrangeSmallIcon$1 = RearrangeSmallIcon;
|
|
9045
9049
|
|
|
9046
|
-
var _excluded$
|
|
9050
|
+
var _excluded$2c = ["gradient"];
|
|
9047
9051
|
|
|
9048
9052
|
/**
|
|
9049
9053
|
* @component RecurringCheckmarkSmallIcon
|
|
@@ -9073,7 +9077,7 @@
|
|
|
9073
9077
|
*/
|
|
9074
9078
|
var RecurringCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9075
9079
|
var gradient = _ref.gradient,
|
|
9076
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9080
|
+
props = _objectWithoutProperties(_ref, _excluded$2c);
|
|
9077
9081
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9078
9082
|
width: 12,
|
|
9079
9083
|
height: 12,
|
|
@@ -9093,7 +9097,7 @@
|
|
|
9093
9097
|
RecurringCheckmarkSmallIcon.displayName = "RecurringCheckmarkSmallIcon";
|
|
9094
9098
|
var RecurringCheckmarkSmallIcon$1 = RecurringCheckmarkSmallIcon;
|
|
9095
9099
|
|
|
9096
|
-
var _excluded$
|
|
9100
|
+
var _excluded$2b = ["gradient"];
|
|
9097
9101
|
|
|
9098
9102
|
/**
|
|
9099
9103
|
* @component RecurringCheckmarkIcon
|
|
@@ -9123,7 +9127,7 @@
|
|
|
9123
9127
|
*/
|
|
9124
9128
|
var RecurringCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9125
9129
|
var gradient = _ref.gradient,
|
|
9126
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9130
|
+
props = _objectWithoutProperties(_ref, _excluded$2b);
|
|
9127
9131
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9128
9132
|
width: 24,
|
|
9129
9133
|
height: 24,
|
|
@@ -9143,7 +9147,7 @@
|
|
|
9143
9147
|
RecurringCheckmarkIcon.displayName = "RecurringCheckmarkIcon";
|
|
9144
9148
|
var RecurringCheckmarkIcon$1 = RecurringCheckmarkIcon;
|
|
9145
9149
|
|
|
9146
|
-
var _excluded$
|
|
9150
|
+
var _excluded$2a = ["gradient"];
|
|
9147
9151
|
|
|
9148
9152
|
/**
|
|
9149
9153
|
* @component RecurringDollarIcon
|
|
@@ -9173,7 +9177,7 @@
|
|
|
9173
9177
|
*/
|
|
9174
9178
|
var RecurringDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9175
9179
|
var gradient = _ref.gradient,
|
|
9176
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9180
|
+
props = _objectWithoutProperties(_ref, _excluded$2a);
|
|
9177
9181
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9178
9182
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9179
9183
|
width: 24,
|
|
@@ -9195,7 +9199,7 @@
|
|
|
9195
9199
|
RecurringDollarIcon.displayName = "RecurringDollarIcon";
|
|
9196
9200
|
var RecurringDollarIcon$1 = RecurringDollarIcon;
|
|
9197
9201
|
|
|
9198
|
-
var _excluded$
|
|
9202
|
+
var _excluded$29 = ["gradient"];
|
|
9199
9203
|
|
|
9200
9204
|
/**
|
|
9201
9205
|
* @component RecurringSmallIcon
|
|
@@ -9225,7 +9229,7 @@
|
|
|
9225
9229
|
*/
|
|
9226
9230
|
var RecurringSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9227
9231
|
var gradient = _ref.gradient,
|
|
9228
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9232
|
+
props = _objectWithoutProperties(_ref, _excluded$29);
|
|
9229
9233
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9230
9234
|
width: 12,
|
|
9231
9235
|
height: 12,
|
|
@@ -9246,7 +9250,7 @@
|
|
|
9246
9250
|
RecurringSmallIcon.displayName = "RecurringSmallIcon";
|
|
9247
9251
|
var RecurringSmallIcon$1 = RecurringSmallIcon;
|
|
9248
9252
|
|
|
9249
|
-
var _excluded$
|
|
9253
|
+
var _excluded$28 = ["gradient"];
|
|
9250
9254
|
|
|
9251
9255
|
/**
|
|
9252
9256
|
* @component ReorderIcon
|
|
@@ -9276,7 +9280,7 @@
|
|
|
9276
9280
|
*/
|
|
9277
9281
|
var ReorderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9278
9282
|
var gradient = _ref.gradient,
|
|
9279
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9283
|
+
props = _objectWithoutProperties(_ref, _excluded$28);
|
|
9280
9284
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9281
9285
|
width: 24,
|
|
9282
9286
|
height: 24,
|
|
@@ -9295,7 +9299,7 @@
|
|
|
9295
9299
|
ReorderIcon.displayName = "ReorderIcon";
|
|
9296
9300
|
var ReorderIcon$1 = ReorderIcon;
|
|
9297
9301
|
|
|
9298
|
-
var _excluded$
|
|
9302
|
+
var _excluded$27 = ["gradient"];
|
|
9299
9303
|
|
|
9300
9304
|
/**
|
|
9301
9305
|
* @component ReportTimeIcon
|
|
@@ -9325,7 +9329,7 @@
|
|
|
9325
9329
|
*/
|
|
9326
9330
|
var ReportTimeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9327
9331
|
var gradient = _ref.gradient,
|
|
9328
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9332
|
+
props = _objectWithoutProperties(_ref, _excluded$27);
|
|
9329
9333
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9330
9334
|
width: 24,
|
|
9331
9335
|
height: 24,
|
|
@@ -9345,7 +9349,7 @@
|
|
|
9345
9349
|
ReportTimeIcon.displayName = "ReportTimeIcon";
|
|
9346
9350
|
var ReportTimeIcon$1 = ReportTimeIcon;
|
|
9347
9351
|
|
|
9348
|
-
var _excluded$
|
|
9352
|
+
var _excluded$26 = ["gradient"];
|
|
9349
9353
|
|
|
9350
9354
|
/**
|
|
9351
9355
|
* @component ReportsIcon
|
|
@@ -9375,7 +9379,7 @@
|
|
|
9375
9379
|
*/
|
|
9376
9380
|
var ReportsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9377
9381
|
var gradient = _ref.gradient,
|
|
9378
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9382
|
+
props = _objectWithoutProperties(_ref, _excluded$26);
|
|
9379
9383
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9380
9384
|
width: 24,
|
|
9381
9385
|
height: 24,
|
|
@@ -9399,7 +9403,7 @@
|
|
|
9399
9403
|
ReportsIcon.displayName = "ReportsIcon";
|
|
9400
9404
|
var ReportsIcon$1 = ReportsIcon;
|
|
9401
9405
|
|
|
9402
|
-
var _excluded$
|
|
9406
|
+
var _excluded$25 = ["gradient"];
|
|
9403
9407
|
|
|
9404
9408
|
/**
|
|
9405
9409
|
* @component RocketSmallIcon
|
|
@@ -9429,7 +9433,7 @@
|
|
|
9429
9433
|
*/
|
|
9430
9434
|
var RocketSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9431
9435
|
var gradient = _ref.gradient,
|
|
9432
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9436
|
+
props = _objectWithoutProperties(_ref, _excluded$25);
|
|
9433
9437
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9434
9438
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9435
9439
|
width: 18,
|
|
@@ -9447,7 +9451,7 @@
|
|
|
9447
9451
|
RocketSmallIcon.displayName = "RocketSmallIcon";
|
|
9448
9452
|
var RocketSmallIcon$1 = RocketSmallIcon;
|
|
9449
9453
|
|
|
9450
|
-
var _excluded$
|
|
9454
|
+
var _excluded$24 = ["gradient"];
|
|
9451
9455
|
|
|
9452
9456
|
/**
|
|
9453
9457
|
* @component RocketIcon
|
|
@@ -9477,7 +9481,7 @@
|
|
|
9477
9481
|
*/
|
|
9478
9482
|
var RocketIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9479
9483
|
var gradient = _ref.gradient,
|
|
9480
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9484
|
+
props = _objectWithoutProperties(_ref, _excluded$24);
|
|
9481
9485
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9482
9486
|
width: 24,
|
|
9483
9487
|
height: 24,
|
|
@@ -9496,7 +9500,7 @@
|
|
|
9496
9500
|
RocketIcon.displayName = "RocketIcon";
|
|
9497
9501
|
var RocketIcon$1 = RocketIcon;
|
|
9498
9502
|
|
|
9499
|
-
var _excluded$
|
|
9503
|
+
var _excluded$23 = ["gradient"];
|
|
9500
9504
|
|
|
9501
9505
|
/**
|
|
9502
9506
|
* @component SaveIcon
|
|
@@ -9526,7 +9530,7 @@
|
|
|
9526
9530
|
*/
|
|
9527
9531
|
var SaveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9528
9532
|
var gradient = _ref.gradient,
|
|
9529
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9533
|
+
props = _objectWithoutProperties(_ref, _excluded$23);
|
|
9530
9534
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9531
9535
|
width: 24,
|
|
9532
9536
|
height: 24,
|
|
@@ -9547,7 +9551,7 @@
|
|
|
9547
9551
|
SaveIcon.displayName = "SaveIcon";
|
|
9548
9552
|
var SaveIcon$1 = SaveIcon;
|
|
9549
9553
|
|
|
9550
|
-
var _excluded$
|
|
9554
|
+
var _excluded$22 = ["gradient"];
|
|
9551
9555
|
|
|
9552
9556
|
/**
|
|
9553
9557
|
* @component SearchLargeIcon
|
|
@@ -9577,7 +9581,7 @@
|
|
|
9577
9581
|
*/
|
|
9578
9582
|
var SearchLargeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9579
9583
|
var gradient = _ref.gradient,
|
|
9580
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9584
|
+
props = _objectWithoutProperties(_ref, _excluded$22);
|
|
9581
9585
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9582
9586
|
width: 32,
|
|
9583
9587
|
height: 32,
|
|
@@ -9598,7 +9602,7 @@
|
|
|
9598
9602
|
SearchLargeIcon.displayName = "SearchLargeIcon";
|
|
9599
9603
|
var SearchLargeIcon$1 = SearchLargeIcon;
|
|
9600
9604
|
|
|
9601
|
-
var _excluded$
|
|
9605
|
+
var _excluded$21 = ["gradient"];
|
|
9602
9606
|
|
|
9603
9607
|
/**
|
|
9604
9608
|
* @component SearchIcon
|
|
@@ -9628,7 +9632,7 @@
|
|
|
9628
9632
|
*/
|
|
9629
9633
|
var SearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9630
9634
|
var gradient = _ref.gradient,
|
|
9631
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9635
|
+
props = _objectWithoutProperties(_ref, _excluded$21);
|
|
9632
9636
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9633
9637
|
width: 24,
|
|
9634
9638
|
height: 24,
|
|
@@ -9647,7 +9651,7 @@
|
|
|
9647
9651
|
SearchIcon.displayName = "SearchIcon";
|
|
9648
9652
|
var SearchIcon$1 = SearchIcon;
|
|
9649
9653
|
|
|
9650
|
-
var _excluded$
|
|
9654
|
+
var _excluded$20 = ["gradient"];
|
|
9651
9655
|
|
|
9652
9656
|
/**
|
|
9653
9657
|
* @component SendBlankIcon
|
|
@@ -9677,7 +9681,7 @@
|
|
|
9677
9681
|
*/
|
|
9678
9682
|
var SendBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9679
9683
|
var gradient = _ref.gradient,
|
|
9680
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9684
|
+
props = _objectWithoutProperties(_ref, _excluded$20);
|
|
9681
9685
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9682
9686
|
width: 24,
|
|
9683
9687
|
height: 24,
|
|
@@ -9696,7 +9700,7 @@
|
|
|
9696
9700
|
SendBlankIcon.displayName = "SendBlankIcon";
|
|
9697
9701
|
var SendBlankIcon$1 = SendBlankIcon;
|
|
9698
9702
|
|
|
9699
|
-
var _excluded$
|
|
9703
|
+
var _excluded$1$ = ["gradient"];
|
|
9700
9704
|
|
|
9701
9705
|
/**
|
|
9702
9706
|
* @component SendFilledIcon
|
|
@@ -9726,7 +9730,7 @@
|
|
|
9726
9730
|
*/
|
|
9727
9731
|
var SendFilledIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9728
9732
|
var gradient = _ref.gradient,
|
|
9729
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9733
|
+
props = _objectWithoutProperties(_ref, _excluded$1$);
|
|
9730
9734
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9731
9735
|
width: 24,
|
|
9732
9736
|
height: 24,
|
|
@@ -9745,7 +9749,7 @@
|
|
|
9745
9749
|
SendFilledIcon.displayName = "SendFilledIcon";
|
|
9746
9750
|
var SendFilledIcon$1 = SendFilledIcon;
|
|
9747
9751
|
|
|
9748
|
-
var _excluded$
|
|
9752
|
+
var _excluded$1_ = ["gradient"];
|
|
9749
9753
|
|
|
9750
9754
|
/**
|
|
9751
9755
|
* @component SettingsIcon
|
|
@@ -9775,7 +9779,7 @@
|
|
|
9775
9779
|
*/
|
|
9776
9780
|
var SettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9777
9781
|
var gradient = _ref.gradient,
|
|
9778
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9782
|
+
props = _objectWithoutProperties(_ref, _excluded$1_);
|
|
9779
9783
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9780
9784
|
width: 24,
|
|
9781
9785
|
height: 24,
|
|
@@ -9795,7 +9799,7 @@
|
|
|
9795
9799
|
SettingsIcon.displayName = "SettingsIcon";
|
|
9796
9800
|
var SettingsIcon$1 = SettingsIcon;
|
|
9797
9801
|
|
|
9798
|
-
var _excluded$
|
|
9802
|
+
var _excluded$1Z = ["gradient"];
|
|
9799
9803
|
|
|
9800
9804
|
/**
|
|
9801
9805
|
* @component ShieldIcon
|
|
@@ -9825,7 +9829,7 @@
|
|
|
9825
9829
|
*/
|
|
9826
9830
|
var ShieldIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9827
9831
|
var gradient = _ref.gradient,
|
|
9828
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9832
|
+
props = _objectWithoutProperties(_ref, _excluded$1Z);
|
|
9829
9833
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9830
9834
|
width: 24,
|
|
9831
9835
|
height: 24,
|
|
@@ -9846,7 +9850,7 @@
|
|
|
9846
9850
|
ShieldIcon.displayName = "ShieldIcon";
|
|
9847
9851
|
var ShieldIcon$1 = ShieldIcon;
|
|
9848
9852
|
|
|
9849
|
-
var _excluded$
|
|
9853
|
+
var _excluded$1Y = ["gradient"];
|
|
9850
9854
|
|
|
9851
9855
|
/**
|
|
9852
9856
|
* @component SortGeneralIcon
|
|
@@ -9876,7 +9880,7 @@
|
|
|
9876
9880
|
*/
|
|
9877
9881
|
var SortGeneralIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9878
9882
|
var gradient = _ref.gradient,
|
|
9879
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9883
|
+
props = _objectWithoutProperties(_ref, _excluded$1Y);
|
|
9880
9884
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9881
9885
|
width: 24,
|
|
9882
9886
|
height: 24,
|
|
@@ -9896,7 +9900,7 @@
|
|
|
9896
9900
|
SortGeneralIcon.displayName = "SortGeneralIcon";
|
|
9897
9901
|
var SortGeneralIcon$1 = SortGeneralIcon;
|
|
9898
9902
|
|
|
9899
|
-
var _excluded$
|
|
9903
|
+
var _excluded$1X = ["gradient"];
|
|
9900
9904
|
|
|
9901
9905
|
/**
|
|
9902
9906
|
* @component SortIcon
|
|
@@ -9926,7 +9930,7 @@
|
|
|
9926
9930
|
*/
|
|
9927
9931
|
var SortIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9928
9932
|
var gradient = _ref.gradient,
|
|
9929
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9933
|
+
props = _objectWithoutProperties(_ref, _excluded$1X);
|
|
9930
9934
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9931
9935
|
width: 10,
|
|
9932
9936
|
height: 10,
|
|
@@ -9946,7 +9950,7 @@
|
|
|
9946
9950
|
SortIcon.displayName = "SortIcon";
|
|
9947
9951
|
var SortIcon$1 = SortIcon;
|
|
9948
9952
|
|
|
9949
|
-
var _excluded$
|
|
9953
|
+
var _excluded$1W = ["gradient"];
|
|
9950
9954
|
|
|
9951
9955
|
/**
|
|
9952
9956
|
* @component SortListIcon
|
|
@@ -9976,7 +9980,7 @@
|
|
|
9976
9980
|
*/
|
|
9977
9981
|
var SortListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9978
9982
|
var gradient = _ref.gradient,
|
|
9979
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9983
|
+
props = _objectWithoutProperties(_ref, _excluded$1W);
|
|
9980
9984
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9981
9985
|
width: 20,
|
|
9982
9986
|
height: 18,
|
|
@@ -9996,7 +10000,7 @@
|
|
|
9996
10000
|
SortListIcon.displayName = "SortListIcon";
|
|
9997
10001
|
var SortListIcon$1 = SortListIcon;
|
|
9998
10002
|
|
|
9999
|
-
var _excluded$
|
|
10003
|
+
var _excluded$1V = ["gradient"];
|
|
10000
10004
|
|
|
10001
10005
|
/**
|
|
10002
10006
|
* @component SortSmallIcon
|
|
@@ -10026,7 +10030,7 @@
|
|
|
10026
10030
|
*/
|
|
10027
10031
|
var SortSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10028
10032
|
var gradient = _ref.gradient,
|
|
10029
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10033
|
+
props = _objectWithoutProperties(_ref, _excluded$1V);
|
|
10030
10034
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10031
10035
|
width: 10,
|
|
10032
10036
|
height: 10,
|
|
@@ -10047,7 +10051,7 @@
|
|
|
10047
10051
|
SortSmallIcon.displayName = "SortSmallIcon";
|
|
10048
10052
|
var SortSmallIcon$1 = SortSmallIcon;
|
|
10049
10053
|
|
|
10050
|
-
var _excluded$
|
|
10054
|
+
var _excluded$1U = ["gradient"];
|
|
10051
10055
|
|
|
10052
10056
|
/**
|
|
10053
10057
|
* @component SparkIcon
|
|
@@ -10077,7 +10081,7 @@
|
|
|
10077
10081
|
*/
|
|
10078
10082
|
var SparkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10079
10083
|
var gradient = _ref.gradient,
|
|
10080
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10084
|
+
props = _objectWithoutProperties(_ref, _excluded$1U);
|
|
10081
10085
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10082
10086
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10083
10087
|
width: 24,
|
|
@@ -10100,7 +10104,7 @@
|
|
|
10100
10104
|
SparkIcon.displayName = "SparkIcon";
|
|
10101
10105
|
var SparkIcon$1 = SparkIcon;
|
|
10102
10106
|
|
|
10103
|
-
var _excluded$
|
|
10107
|
+
var _excluded$1T = ["gradient"];
|
|
10104
10108
|
|
|
10105
10109
|
/**
|
|
10106
10110
|
* @component StarOutlineIcon
|
|
@@ -10130,7 +10134,7 @@
|
|
|
10130
10134
|
*/
|
|
10131
10135
|
var StarOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10132
10136
|
var gradient = _ref.gradient,
|
|
10133
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10137
|
+
props = _objectWithoutProperties(_ref, _excluded$1T);
|
|
10134
10138
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10135
10139
|
width: 24,
|
|
10136
10140
|
height: 24,
|
|
@@ -10150,7 +10154,7 @@
|
|
|
10150
10154
|
StarOutlineIcon.displayName = "StarOutlineIcon";
|
|
10151
10155
|
var StarOutlineIcon$1 = StarOutlineIcon;
|
|
10152
10156
|
|
|
10153
|
-
var _excluded$
|
|
10157
|
+
var _excluded$1S = ["gradient"];
|
|
10154
10158
|
|
|
10155
10159
|
/**
|
|
10156
10160
|
* @component StarIcon
|
|
@@ -10180,7 +10184,7 @@
|
|
|
10180
10184
|
*/
|
|
10181
10185
|
var StarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10182
10186
|
var gradient = _ref.gradient,
|
|
10183
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10187
|
+
props = _objectWithoutProperties(_ref, _excluded$1S);
|
|
10184
10188
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10185
10189
|
width: 24,
|
|
10186
10190
|
height: 24,
|
|
@@ -10200,7 +10204,7 @@
|
|
|
10200
10204
|
StarIcon.displayName = "StarIcon";
|
|
10201
10205
|
var StarIcon$1 = StarIcon;
|
|
10202
10206
|
|
|
10203
|
-
var _excluded$
|
|
10207
|
+
var _excluded$1R = ["gradient"];
|
|
10204
10208
|
|
|
10205
10209
|
/**
|
|
10206
10210
|
* @component StatusIcon
|
|
@@ -10230,7 +10234,7 @@
|
|
|
10230
10234
|
*/
|
|
10231
10235
|
var StatusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10232
10236
|
var gradient = _ref.gradient,
|
|
10233
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10237
|
+
props = _objectWithoutProperties(_ref, _excluded$1R);
|
|
10234
10238
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10235
10239
|
width: 24,
|
|
10236
10240
|
height: 24,
|
|
@@ -10255,7 +10259,7 @@
|
|
|
10255
10259
|
StatusIcon.displayName = "StatusIcon";
|
|
10256
10260
|
var StatusIcon$1 = StatusIcon;
|
|
10257
10261
|
|
|
10258
|
-
var _excluded$
|
|
10262
|
+
var _excluded$1Q = ["gradient"];
|
|
10259
10263
|
|
|
10260
10264
|
/**
|
|
10261
10265
|
* @component StopwatchIcon
|
|
@@ -10285,7 +10289,7 @@
|
|
|
10285
10289
|
*/
|
|
10286
10290
|
var StopwatchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10287
10291
|
var gradient = _ref.gradient,
|
|
10288
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10292
|
+
props = _objectWithoutProperties(_ref, _excluded$1Q);
|
|
10289
10293
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10290
10294
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10291
10295
|
width: 16,
|
|
@@ -10305,7 +10309,7 @@
|
|
|
10305
10309
|
StopwatchIcon.displayName = "StopwatchIcon";
|
|
10306
10310
|
var StopwatchIcon$1 = StopwatchIcon;
|
|
10307
10311
|
|
|
10308
|
-
var _excluded$
|
|
10312
|
+
var _excluded$1P = ["gradient"];
|
|
10309
10313
|
|
|
10310
10314
|
/**
|
|
10311
10315
|
* @component SunIcon
|
|
@@ -10335,7 +10339,7 @@
|
|
|
10335
10339
|
*/
|
|
10336
10340
|
var SunIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10337
10341
|
var gradient = _ref.gradient,
|
|
10338
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10342
|
+
props = _objectWithoutProperties(_ref, _excluded$1P);
|
|
10339
10343
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10340
10344
|
width: 22,
|
|
10341
10345
|
height: 22,
|
|
@@ -10360,7 +10364,7 @@
|
|
|
10360
10364
|
SunIcon.displayName = "SunIcon";
|
|
10361
10365
|
var SunIcon$1 = SunIcon;
|
|
10362
10366
|
|
|
10363
|
-
var _excluded$
|
|
10367
|
+
var _excluded$1O = ["gradient"];
|
|
10364
10368
|
|
|
10365
10369
|
/**
|
|
10366
10370
|
* @component SystemSettingsIcon
|
|
@@ -10390,7 +10394,7 @@
|
|
|
10390
10394
|
*/
|
|
10391
10395
|
var SystemSettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10392
10396
|
var gradient = _ref.gradient,
|
|
10393
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10397
|
+
props = _objectWithoutProperties(_ref, _excluded$1O);
|
|
10394
10398
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10395
10399
|
width: 24,
|
|
10396
10400
|
height: 24,
|
|
@@ -10411,7 +10415,7 @@
|
|
|
10411
10415
|
SystemSettingsIcon.displayName = "SystemSettingsIcon";
|
|
10412
10416
|
var SystemSettingsIcon$1 = SystemSettingsIcon;
|
|
10413
10417
|
|
|
10414
|
-
var _excluded$
|
|
10418
|
+
var _excluded$1N = ["gradient"];
|
|
10415
10419
|
|
|
10416
10420
|
/**
|
|
10417
10421
|
* @component TaskAddIcon
|
|
@@ -10441,7 +10445,7 @@
|
|
|
10441
10445
|
*/
|
|
10442
10446
|
var TaskAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10443
10447
|
var gradient = _ref.gradient,
|
|
10444
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10448
|
+
props = _objectWithoutProperties(_ref, _excluded$1N);
|
|
10445
10449
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10446
10450
|
width: 24,
|
|
10447
10451
|
height: 24,
|
|
@@ -10461,7 +10465,7 @@
|
|
|
10461
10465
|
TaskAddIcon.displayName = "TaskAddIcon";
|
|
10462
10466
|
var TaskAddIcon$1 = TaskAddIcon;
|
|
10463
10467
|
|
|
10464
|
-
var _excluded$
|
|
10468
|
+
var _excluded$1M = ["gradient"];
|
|
10465
10469
|
|
|
10466
10470
|
/**
|
|
10467
10471
|
* @component TaskListAddIcon
|
|
@@ -10491,7 +10495,7 @@
|
|
|
10491
10495
|
*/
|
|
10492
10496
|
var TaskListAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10493
10497
|
var gradient = _ref.gradient,
|
|
10494
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10498
|
+
props = _objectWithoutProperties(_ref, _excluded$1M);
|
|
10495
10499
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10496
10500
|
width: 24,
|
|
10497
10501
|
height: 24,
|
|
@@ -10511,7 +10515,7 @@
|
|
|
10511
10515
|
TaskListAddIcon.displayName = "TaskListAddIcon";
|
|
10512
10516
|
var TaskListAddIcon$1 = TaskListAddIcon;
|
|
10513
10517
|
|
|
10514
|
-
var _excluded$
|
|
10518
|
+
var _excluded$1L = ["gradient"];
|
|
10515
10519
|
|
|
10516
10520
|
/**
|
|
10517
10521
|
* @component TaskListCompleteIcon
|
|
@@ -10541,7 +10545,7 @@
|
|
|
10541
10545
|
*/
|
|
10542
10546
|
var TaskListCompleteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10543
10547
|
var gradient = _ref.gradient,
|
|
10544
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10548
|
+
props = _objectWithoutProperties(_ref, _excluded$1L);
|
|
10545
10549
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10546
10550
|
width: 24,
|
|
10547
10551
|
height: 24,
|
|
@@ -10562,7 +10566,7 @@
|
|
|
10562
10566
|
TaskListCompleteIcon.displayName = "TaskListCompleteIcon";
|
|
10563
10567
|
var TaskListCompleteIcon$1 = TaskListCompleteIcon;
|
|
10564
10568
|
|
|
10565
|
-
var _excluded$
|
|
10569
|
+
var _excluded$1K = ["gradient"];
|
|
10566
10570
|
|
|
10567
10571
|
/**
|
|
10568
10572
|
* @component TaskListIcon
|
|
@@ -10592,7 +10596,7 @@
|
|
|
10592
10596
|
*/
|
|
10593
10597
|
var TaskListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10594
10598
|
var gradient = _ref.gradient,
|
|
10595
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10599
|
+
props = _objectWithoutProperties(_ref, _excluded$1K);
|
|
10596
10600
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10597
10601
|
width: 24,
|
|
10598
10602
|
height: 24,
|
|
@@ -10613,7 +10617,7 @@
|
|
|
10613
10617
|
TaskListIcon.displayName = "TaskListIcon";
|
|
10614
10618
|
var TaskListIcon$1 = TaskListIcon;
|
|
10615
10619
|
|
|
10616
|
-
var _excluded$
|
|
10620
|
+
var _excluded$1J = ["gradient"];
|
|
10617
10621
|
|
|
10618
10622
|
/**
|
|
10619
10623
|
* @component ThumbUpOutlineIcon
|
|
@@ -10643,7 +10647,7 @@
|
|
|
10643
10647
|
*/
|
|
10644
10648
|
var ThumbUpOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10645
10649
|
var gradient = _ref.gradient,
|
|
10646
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10650
|
+
props = _objectWithoutProperties(_ref, _excluded$1J);
|
|
10647
10651
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10648
10652
|
width: 14,
|
|
10649
10653
|
height: 14,
|
|
@@ -10663,7 +10667,7 @@
|
|
|
10663
10667
|
ThumbUpOutlineIcon.displayName = "ThumbUpOutlineIcon";
|
|
10664
10668
|
var ThumbUpOutlineIcon$1 = ThumbUpOutlineIcon;
|
|
10665
10669
|
|
|
10666
|
-
var _excluded$
|
|
10670
|
+
var _excluded$1I = ["gradient"];
|
|
10667
10671
|
|
|
10668
10672
|
/**
|
|
10669
10673
|
* @component TrashIcon
|
|
@@ -10693,7 +10697,7 @@
|
|
|
10693
10697
|
*/
|
|
10694
10698
|
var TrashIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10695
10699
|
var gradient = _ref.gradient,
|
|
10696
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10700
|
+
props = _objectWithoutProperties(_ref, _excluded$1I);
|
|
10697
10701
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10698
10702
|
width: 24,
|
|
10699
10703
|
height: 24,
|
|
@@ -10717,7 +10721,7 @@
|
|
|
10717
10721
|
TrashIcon.displayName = "TrashIcon";
|
|
10718
10722
|
var TrashIcon$1 = TrashIcon;
|
|
10719
10723
|
|
|
10720
|
-
var _excluded$
|
|
10724
|
+
var _excluded$1H = ["gradient"];
|
|
10721
10725
|
|
|
10722
10726
|
/**
|
|
10723
10727
|
* @component TreeDotsIcon
|
|
@@ -10747,7 +10751,7 @@
|
|
|
10747
10751
|
*/
|
|
10748
10752
|
var TreeDotsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10749
10753
|
var gradient = _ref.gradient,
|
|
10750
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10754
|
+
props = _objectWithoutProperties(_ref, _excluded$1H);
|
|
10751
10755
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10752
10756
|
width: 24,
|
|
10753
10757
|
height: 24,
|
|
@@ -10767,7 +10771,7 @@
|
|
|
10767
10771
|
TreeDotsIcon.displayName = "TreeDotsIcon";
|
|
10768
10772
|
var TreeDotsIcon$1 = TreeDotsIcon;
|
|
10769
10773
|
|
|
10770
|
-
var _excluded$
|
|
10774
|
+
var _excluded$1G = ["gradient"];
|
|
10771
10775
|
|
|
10772
10776
|
/**
|
|
10773
10777
|
* @component UploadIcon
|
|
@@ -10797,7 +10801,7 @@
|
|
|
10797
10801
|
*/
|
|
10798
10802
|
var UploadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10799
10803
|
var gradient = _ref.gradient,
|
|
10800
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10804
|
+
props = _objectWithoutProperties(_ref, _excluded$1G);
|
|
10801
10805
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10802
10806
|
width: 24,
|
|
10803
10807
|
height: 24,
|
|
@@ -10817,7 +10821,7 @@
|
|
|
10817
10821
|
UploadIcon.displayName = "UploadIcon";
|
|
10818
10822
|
var UploadIcon$1 = UploadIcon;
|
|
10819
10823
|
|
|
10820
|
-
var _excluded$
|
|
10824
|
+
var _excluded$1F = ["gradient"];
|
|
10821
10825
|
|
|
10822
10826
|
/**
|
|
10823
10827
|
* @component ViewDayIcon
|
|
@@ -10847,7 +10851,7 @@
|
|
|
10847
10851
|
*/
|
|
10848
10852
|
var ViewDayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10849
10853
|
var gradient = _ref.gradient,
|
|
10850
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10854
|
+
props = _objectWithoutProperties(_ref, _excluded$1F);
|
|
10851
10855
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10852
10856
|
width: 24,
|
|
10853
10857
|
height: 24,
|
|
@@ -10866,7 +10870,7 @@
|
|
|
10866
10870
|
ViewDayIcon.displayName = "ViewDayIcon";
|
|
10867
10871
|
var ViewDayIcon$1 = ViewDayIcon;
|
|
10868
10872
|
|
|
10869
|
-
var _excluded$
|
|
10873
|
+
var _excluded$1E = ["gradient"];
|
|
10870
10874
|
|
|
10871
10875
|
/**
|
|
10872
10876
|
* @component ViewGridIcon
|
|
@@ -10896,7 +10900,7 @@
|
|
|
10896
10900
|
*/
|
|
10897
10901
|
var ViewGridIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10898
10902
|
var gradient = _ref.gradient,
|
|
10899
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10903
|
+
props = _objectWithoutProperties(_ref, _excluded$1E);
|
|
10900
10904
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10901
10905
|
width: 24,
|
|
10902
10906
|
height: 24,
|
|
@@ -10916,7 +10920,7 @@
|
|
|
10916
10920
|
ViewGridIcon.displayName = "ViewGridIcon";
|
|
10917
10921
|
var ViewGridIcon$1 = ViewGridIcon;
|
|
10918
10922
|
|
|
10919
|
-
var _excluded$
|
|
10923
|
+
var _excluded$1D = ["gradient"];
|
|
10920
10924
|
|
|
10921
10925
|
/**
|
|
10922
10926
|
* @component ViewListIcon
|
|
@@ -10946,7 +10950,7 @@
|
|
|
10946
10950
|
*/
|
|
10947
10951
|
var ViewListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10948
10952
|
var gradient = _ref.gradient,
|
|
10949
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10953
|
+
props = _objectWithoutProperties(_ref, _excluded$1D);
|
|
10950
10954
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10951
10955
|
width: 24,
|
|
10952
10956
|
height: 24,
|
|
@@ -10966,7 +10970,7 @@
|
|
|
10966
10970
|
ViewListIcon.displayName = "ViewListIcon";
|
|
10967
10971
|
var ViewListIcon$1 = ViewListIcon;
|
|
10968
10972
|
|
|
10969
|
-
var _excluded$
|
|
10973
|
+
var _excluded$1C = ["gradient"];
|
|
10970
10974
|
|
|
10971
10975
|
/**
|
|
10972
10976
|
* @component ViewTimelineIcon
|
|
@@ -10996,7 +11000,7 @@
|
|
|
10996
11000
|
*/
|
|
10997
11001
|
var ViewTimelineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10998
11002
|
var gradient = _ref.gradient,
|
|
10999
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11003
|
+
props = _objectWithoutProperties(_ref, _excluded$1C);
|
|
11000
11004
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11001
11005
|
width: 24,
|
|
11002
11006
|
height: 24,
|
|
@@ -11016,7 +11020,7 @@
|
|
|
11016
11020
|
ViewTimelineIcon.displayName = "ViewTimelineIcon";
|
|
11017
11021
|
var ViewTimelineIcon$1 = ViewTimelineIcon;
|
|
11018
11022
|
|
|
11019
|
-
var _excluded$
|
|
11023
|
+
var _excluded$1B = ["gradient"];
|
|
11020
11024
|
|
|
11021
11025
|
/**
|
|
11022
11026
|
* @component VolumeHighIcon
|
|
@@ -11046,7 +11050,7 @@
|
|
|
11046
11050
|
*/
|
|
11047
11051
|
var VolumeHighIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
11048
11052
|
var gradient = _ref.gradient,
|
|
11049
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11053
|
+
props = _objectWithoutProperties(_ref, _excluded$1B);
|
|
11050
11054
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11051
11055
|
width: 24,
|
|
11052
11056
|
height: 24,
|
|
@@ -11066,7 +11070,7 @@
|
|
|
11066
11070
|
VolumeHighIcon.displayName = "VolumeHighIcon";
|
|
11067
11071
|
var VolumeHighIcon$1 = VolumeHighIcon;
|
|
11068
11072
|
|
|
11069
|
-
var _excluded$
|
|
11073
|
+
var _excluded$1A = ["gradient"];
|
|
11070
11074
|
|
|
11071
11075
|
/**
|
|
11072
11076
|
* @component WarningTriangleSmallIcon
|
|
@@ -11096,7 +11100,7 @@
|
|
|
11096
11100
|
*/
|
|
11097
11101
|
var WarningTriangleSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
11098
11102
|
var gradient = _ref.gradient,
|
|
11099
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11103
|
+
props = _objectWithoutProperties(_ref, _excluded$1A);
|
|
11100
11104
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11101
11105
|
width: 12,
|
|
11102
11106
|
height: 12,
|
|
@@ -11116,7 +11120,7 @@
|
|
|
11116
11120
|
WarningTriangleSmallIcon.displayName = "WarningTriangleSmallIcon";
|
|
11117
11121
|
var WarningTriangleSmallIcon$1 = WarningTriangleSmallIcon;
|
|
11118
11122
|
|
|
11119
|
-
var _excluded$
|
|
11123
|
+
var _excluded$1z = ["gradient"];
|
|
11120
11124
|
|
|
11121
11125
|
/**
|
|
11122
11126
|
* @component WarningTriangleIcon
|
|
@@ -11146,7 +11150,7 @@
|
|
|
11146
11150
|
*/
|
|
11147
11151
|
var WarningTriangleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
11148
11152
|
var gradient = _ref.gradient,
|
|
11149
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11153
|
+
props = _objectWithoutProperties(_ref, _excluded$1z);
|
|
11150
11154
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11151
11155
|
width: 24,
|
|
11152
11156
|
height: 24,
|
|
@@ -11166,7 +11170,7 @@
|
|
|
11166
11170
|
WarningTriangleIcon.displayName = "WarningTriangleIcon";
|
|
11167
11171
|
var WarningTriangleIcon$1 = WarningTriangleIcon;
|
|
11168
11172
|
|
|
11169
|
-
var _excluded$
|
|
11173
|
+
var _excluded$1y = ["gradient"];
|
|
11170
11174
|
|
|
11171
11175
|
/**
|
|
11172
11176
|
* @component WarningIcon
|
|
@@ -11196,7 +11200,7 @@
|
|
|
11196
11200
|
*/
|
|
11197
11201
|
var WarningIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
11198
11202
|
var gradient = _ref.gradient,
|
|
11199
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11203
|
+
props = _objectWithoutProperties(_ref, _excluded$1y);
|
|
11200
11204
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11201
11205
|
width: 24,
|
|
11202
11206
|
height: 24,
|
|
@@ -11216,7 +11220,7 @@
|
|
|
11216
11220
|
WarningIcon.displayName = "WarningIcon";
|
|
11217
11221
|
var WarningIcon$1 = WarningIcon;
|
|
11218
11222
|
|
|
11219
|
-
var _excluded$
|
|
11223
|
+
var _excluded$1x = ["gradient"];
|
|
11220
11224
|
|
|
11221
11225
|
/**
|
|
11222
11226
|
* @component WorkloadIcon
|
|
@@ -11246,7 +11250,7 @@
|
|
|
11246
11250
|
*/
|
|
11247
11251
|
var WorkloadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
11248
11252
|
var gradient = _ref.gradient,
|
|
11249
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11253
|
+
props = _objectWithoutProperties(_ref, _excluded$1x);
|
|
11250
11254
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11251
11255
|
width: 24,
|
|
11252
11256
|
height: 24,
|
|
@@ -11270,7 +11274,7 @@
|
|
|
11270
11274
|
WorkloadIcon.displayName = "WorkloadIcon";
|
|
11271
11275
|
var WorkloadIcon$1 = WorkloadIcon;
|
|
11272
11276
|
|
|
11273
|
-
var _excluded$
|
|
11277
|
+
var _excluded$1w = ["gradient"];
|
|
11274
11278
|
|
|
11275
11279
|
/**
|
|
11276
11280
|
* @component ReminderIcon
|
|
@@ -11300,7 +11304,7 @@
|
|
|
11300
11304
|
*/
|
|
11301
11305
|
var ReminderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
11302
11306
|
var gradient = _ref.gradient,
|
|
11303
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11307
|
+
props = _objectWithoutProperties(_ref, _excluded$1w);
|
|
11304
11308
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11305
11309
|
width: 18,
|
|
11306
11310
|
height: 18,
|
|
@@ -11353,7 +11357,7 @@
|
|
|
11353
11357
|
}, FontStyle, BoxSizingStyle);
|
|
11354
11358
|
StyledBubble.displayName = "StyledBubble";
|
|
11355
11359
|
|
|
11356
|
-
var _excluded$
|
|
11360
|
+
var _excluded$1v = ["children", "className", "innerRef", "style"];
|
|
11357
11361
|
var Bubble = function Bubble(_ref) {
|
|
11358
11362
|
var children = _ref.children,
|
|
11359
11363
|
className = _ref.className,
|
|
@@ -11361,7 +11365,7 @@
|
|
|
11361
11365
|
innerRef = _ref$innerRef === void 0 ? null : _ref$innerRef,
|
|
11362
11366
|
_ref$style = _ref.style,
|
|
11363
11367
|
style = _ref$style === void 0 ? {} : _ref$style,
|
|
11364
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11368
|
+
rest = _objectWithoutProperties(_ref, _excluded$1v);
|
|
11365
11369
|
return /*#__PURE__*/React__default["default"].createElement(StyledBubble, _extends({}, rest, {
|
|
11366
11370
|
ref: innerRef,
|
|
11367
11371
|
className: classNames__default["default"]("c-bubble", className),
|
|
@@ -11422,12 +11426,12 @@
|
|
|
11422
11426
|
});
|
|
11423
11427
|
StyledOverlay.displayName = "StyledOverlay";
|
|
11424
11428
|
|
|
11425
|
-
var _excluded$
|
|
11429
|
+
var _excluded$1u = ["className", "disableBackgroundColor"];
|
|
11426
11430
|
var Overlay = function Overlay(_ref) {
|
|
11427
11431
|
var className = _ref.className,
|
|
11428
11432
|
_ref$disableBackgroun = _ref.disableBackgroundColor,
|
|
11429
11433
|
disableBackgroundColor = _ref$disableBackgroun === void 0 ? false : _ref$disableBackgroun,
|
|
11430
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11434
|
+
rest = _objectWithoutProperties(_ref, _excluded$1u);
|
|
11431
11435
|
return /*#__PURE__*/React__default["default"].createElement(StyledOverlay, _extends({
|
|
11432
11436
|
className: classNames__default["default"]("c-overlay", className),
|
|
11433
11437
|
$disableBackgroundColor: disableBackgroundColor
|
|
@@ -11440,7 +11444,7 @@
|
|
|
11440
11444
|
componentId: "sc-1hgjasy-0"
|
|
11441
11445
|
})(["&[data-popper-reference-hidden]{display:none !important;pointer-events:none !important;}"]);
|
|
11442
11446
|
|
|
11443
|
-
var _excluded$
|
|
11447
|
+
var _excluded$1t = ["children", "anchorEl", "open", "style", "transition", "placement", "strategy", "afterWrite"];
|
|
11444
11448
|
var Popper = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11445
11449
|
var children = _ref.children,
|
|
11446
11450
|
anchorEl = _ref.anchorEl,
|
|
@@ -11454,7 +11458,7 @@
|
|
|
11454
11458
|
_ref$strategy = _ref.strategy,
|
|
11455
11459
|
strategy = _ref$strategy === void 0 ? "absolute" : _ref$strategy,
|
|
11456
11460
|
afterWrite = _ref.afterWrite,
|
|
11457
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11461
|
+
rest = _objectWithoutProperties(_ref, _excluded$1t);
|
|
11458
11462
|
var _useState = React.useState(true),
|
|
11459
11463
|
_useState2 = _slicedToArray(_useState, 2),
|
|
11460
11464
|
exited = _useState2[0],
|
|
@@ -11601,7 +11605,7 @@
|
|
|
11601
11605
|
};
|
|
11602
11606
|
var LayerContext$1 = LayerContext;
|
|
11603
11607
|
|
|
11604
|
-
var _excluded$
|
|
11608
|
+
var _excluded$1s = ["children", "onClose", "className", "style", "onKeyDown", "disableFocusLock", "disableScrollLock", "disableCloseOnEsc", "onClick"];
|
|
11605
11609
|
var returnFocus = {
|
|
11606
11610
|
preventScroll: true
|
|
11607
11611
|
};
|
|
@@ -11618,7 +11622,7 @@
|
|
|
11618
11622
|
_ref$disableCloseOnEs = _ref.disableCloseOnEsc,
|
|
11619
11623
|
disableCloseOnEsc = _ref$disableCloseOnEs === void 0 ? false : _ref$disableCloseOnEs,
|
|
11620
11624
|
onClick = _ref.onClick,
|
|
11621
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11625
|
+
rest = _objectWithoutProperties(_ref, _excluded$1s);
|
|
11622
11626
|
var innerRef = React.useRef(null);
|
|
11623
11627
|
var handleRef = useForkRef(innerRef, ref);
|
|
11624
11628
|
var _useLayerContext = useLayerContext(),
|
|
@@ -11929,7 +11933,7 @@
|
|
|
11929
11933
|
});
|
|
11930
11934
|
StyledTypography.displayName = "StyledTypography";
|
|
11931
11935
|
|
|
11932
|
-
var _excluded$
|
|
11936
|
+
var _excluded$1r = ["variant", "as", "color", "italic", "tabularNums", "letterSpacing", "lineHeight", "align", "decoration", "transform", "overflow", "whitespace", "wordBreak", "weight", "className", "children"];
|
|
11933
11937
|
var Typography = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11934
11938
|
var _ref$variant = _ref.variant,
|
|
11935
11939
|
variant = _ref$variant === void 0 ? "Title 1" : _ref$variant,
|
|
@@ -11960,7 +11964,7 @@
|
|
|
11960
11964
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
11961
11965
|
className = _ref.className,
|
|
11962
11966
|
children = _ref.children,
|
|
11963
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11967
|
+
props = _objectWithoutProperties(_ref, _excluded$1r);
|
|
11964
11968
|
var Component = as || "div";
|
|
11965
11969
|
return /*#__PURE__*/React__default["default"].createElement(StyledTypography, _extends({
|
|
11966
11970
|
as: Component,
|
|
@@ -11983,13 +11987,13 @@
|
|
|
11983
11987
|
});
|
|
11984
11988
|
Typography.displayName = "Typography";
|
|
11985
11989
|
|
|
11986
|
-
var _excluded$
|
|
11990
|
+
var _excluded$1q = ["title", "className", "leftElement", "rightElement"];
|
|
11987
11991
|
var MenuHeader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11988
11992
|
var title = _ref.title,
|
|
11989
11993
|
className = _ref.className,
|
|
11990
11994
|
leftElement = _ref.leftElement,
|
|
11991
11995
|
rightElement = _ref.rightElement,
|
|
11992
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11996
|
+
props = _objectWithoutProperties(_ref, _excluded$1q);
|
|
11993
11997
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuHeader, _extends({}, props, {
|
|
11994
11998
|
className: classNames__default["default"]("c-menu-header", className),
|
|
11995
11999
|
ref: ref
|
|
@@ -12014,11 +12018,11 @@
|
|
|
12014
12018
|
});
|
|
12015
12019
|
MenuHeader.displayName = "MenuHeader";
|
|
12016
12020
|
|
|
12017
|
-
var _excluded$
|
|
12021
|
+
var _excluded$1p = ["children", "className"];
|
|
12018
12022
|
var MenuFooter = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12019
12023
|
var children = _ref.children,
|
|
12020
12024
|
className = _ref.className,
|
|
12021
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12025
|
+
props = _objectWithoutProperties(_ref, _excluded$1p);
|
|
12022
12026
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuFooter$1, _extends({}, props, {
|
|
12023
12027
|
className: classNames__default["default"]("c-menu-footer", className),
|
|
12024
12028
|
ref: ref
|
|
@@ -12026,14 +12030,14 @@
|
|
|
12026
12030
|
});
|
|
12027
12031
|
MenuFooter.displayName = "MenuFooter";
|
|
12028
12032
|
|
|
12029
|
-
var _excluded$
|
|
12033
|
+
var _excluded$1o = ["children", "className", "separator"];
|
|
12030
12034
|
var Breadcrumbs = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
12031
12035
|
var _dimensions$width, _childDimensions$widt;
|
|
12032
12036
|
var children = _ref.children,
|
|
12033
12037
|
className = _ref.className,
|
|
12034
12038
|
_ref$separator = _ref.separator,
|
|
12035
12039
|
separator = _ref$separator === void 0 ? "/" : _ref$separator,
|
|
12036
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12040
|
+
rest = _objectWithoutProperties(_ref, _excluded$1o);
|
|
12037
12041
|
var internalRef = React.useRef(null);
|
|
12038
12042
|
var listWrapperRef = React.useRef(null);
|
|
12039
12043
|
var olRef = React.useRef(null);
|
|
@@ -12211,12 +12215,12 @@
|
|
|
12211
12215
|
}, value && value > 100 ? 99 + "+" : value);
|
|
12212
12216
|
};
|
|
12213
12217
|
|
|
12214
|
-
var _excluded$
|
|
12218
|
+
var _excluded$1n = ["weight", "children"];
|
|
12215
12219
|
var Body2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12216
12220
|
var _ref$weight = _ref.weight,
|
|
12217
12221
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
12218
12222
|
children = _ref.children,
|
|
12219
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12223
|
+
props = _objectWithoutProperties(_ref, _excluded$1n);
|
|
12220
12224
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
12221
12225
|
variant: "Body 2",
|
|
12222
12226
|
weight: weight,
|
|
@@ -12326,10 +12330,10 @@
|
|
|
12326
12330
|
};
|
|
12327
12331
|
FromElement.displayName = "FromElement";
|
|
12328
12332
|
|
|
12329
|
-
var _excluded$
|
|
12333
|
+
var _excluded$1m = ["children"];
|
|
12330
12334
|
var TooltipAnimation = function TooltipAnimation(_ref) {
|
|
12331
12335
|
var children = _ref.children,
|
|
12332
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12336
|
+
props = _objectWithoutProperties(_ref, _excluded$1m);
|
|
12333
12337
|
return /*#__PURE__*/React__default["default"].createElement(FromElement, _extends({
|
|
12334
12338
|
timeout: 0
|
|
12335
12339
|
}, props), children);
|
|
@@ -12404,7 +12408,7 @@
|
|
|
12404
12408
|
});
|
|
12405
12409
|
Tooltip.displayName = "Tooltip";
|
|
12406
12410
|
|
|
12407
|
-
var _excluded$
|
|
12411
|
+
var _excluded$1l = ["label", "icon", "active", "counter", "tooltipText", "onClearAll", "className", "labelClassName", "disabled"];
|
|
12408
12412
|
var CounterButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12409
12413
|
var label = _ref.label,
|
|
12410
12414
|
icon = _ref.icon,
|
|
@@ -12417,7 +12421,7 @@
|
|
|
12417
12421
|
labelClassName = _ref.labelClassName,
|
|
12418
12422
|
_ref$disabled = _ref.disabled,
|
|
12419
12423
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
12420
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
12424
|
+
args = _objectWithoutProperties(_ref, _excluded$1l);
|
|
12421
12425
|
return /*#__PURE__*/React__default["default"].createElement(StyledCounterButtonWrapper, {
|
|
12422
12426
|
ref: ref,
|
|
12423
12427
|
className: className
|
|
@@ -12584,13 +12588,13 @@
|
|
|
12584
12588
|
})(["padding:20px 30px;", " ", ""], FontStyle, BoxSizingStyle);
|
|
12585
12589
|
StyledDialogActions.displayName = "StyledDialogActions";
|
|
12586
12590
|
|
|
12587
|
-
var _excluded$
|
|
12591
|
+
var _excluded$1k = ["className", "children"];
|
|
12588
12592
|
// import { useDialogContext } from "./DialogContext";
|
|
12589
12593
|
|
|
12590
12594
|
var DialogActions = function DialogActions(_ref) {
|
|
12591
12595
|
var className = _ref.className,
|
|
12592
12596
|
children = _ref.children,
|
|
12593
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12597
|
+
rest = _objectWithoutProperties(_ref, _excluded$1k);
|
|
12594
12598
|
// useDialogContext();
|
|
12595
12599
|
|
|
12596
12600
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogActions, _extends({
|
|
@@ -12599,13 +12603,13 @@
|
|
|
12599
12603
|
};
|
|
12600
12604
|
DialogActions.displayName = "DialogActions";
|
|
12601
12605
|
|
|
12602
|
-
var _excluded$
|
|
12606
|
+
var _excluded$1j = ["className", "children"];
|
|
12603
12607
|
// import { useDialogContext } from "./DialogContext";
|
|
12604
12608
|
|
|
12605
12609
|
var DialogContent = function DialogContent(_ref) {
|
|
12606
12610
|
var className = _ref.className,
|
|
12607
12611
|
children = _ref.children,
|
|
12608
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12612
|
+
rest = _objectWithoutProperties(_ref, _excluded$1j);
|
|
12609
12613
|
// useDialogContext();
|
|
12610
12614
|
|
|
12611
12615
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogContent, _extends({
|
|
@@ -12626,10 +12630,10 @@
|
|
|
12626
12630
|
};
|
|
12627
12631
|
DialogContentDivider.displayName = "DialogContentDivider";
|
|
12628
12632
|
|
|
12629
|
-
var _excluded$
|
|
12633
|
+
var _excluded$1i = ["children"];
|
|
12630
12634
|
var Header3 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12631
12635
|
var children = _ref.children,
|
|
12632
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12636
|
+
props = _objectWithoutProperties(_ref, _excluded$1i);
|
|
12633
12637
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
12634
12638
|
weight: "bold",
|
|
12635
12639
|
variant: "Header 3",
|
|
@@ -12638,7 +12642,7 @@
|
|
|
12638
12642
|
});
|
|
12639
12643
|
Header3.displayName = "Header3";
|
|
12640
12644
|
|
|
12641
|
-
var _excluded$
|
|
12645
|
+
var _excluded$1h = ["children", "className", "disableDefaultHeading"];
|
|
12642
12646
|
// import { useDialogContext } from "./DialogContext";
|
|
12643
12647
|
|
|
12644
12648
|
var DialogTitle = function DialogTitle(_ref) {
|
|
@@ -12646,7 +12650,7 @@
|
|
|
12646
12650
|
className = _ref.className,
|
|
12647
12651
|
_ref$disableDefaultHe = _ref.disableDefaultHeading,
|
|
12648
12652
|
disableDefaultHeading = _ref$disableDefaultHe === void 0 ? false : _ref$disableDefaultHe,
|
|
12649
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12653
|
+
rest = _objectWithoutProperties(_ref, _excluded$1h);
|
|
12650
12654
|
// useDialogContext();
|
|
12651
12655
|
|
|
12652
12656
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogTitle, _extends({
|
|
@@ -12675,7 +12679,7 @@
|
|
|
12675
12679
|
function () {});
|
|
12676
12680
|
}
|
|
12677
12681
|
|
|
12678
|
-
var _excluded$
|
|
12682
|
+
var _excluded$1g = ["children", "disableFocusLock", "disableScrollLock", "disableBackgroundClick", "disableBackgroundColor", "disableCloseOnEsc", "open", "onClose", "onClickOutside"];
|
|
12679
12683
|
var getHasTransition = function getHasTransition(children) {
|
|
12680
12684
|
return children.props ? Object.prototype.hasOwnProperty.call(children.props, "in") : false;
|
|
12681
12685
|
};
|
|
@@ -12695,7 +12699,7 @@
|
|
|
12695
12699
|
defaultOpen = _ref$open === void 0 ? false : _ref$open,
|
|
12696
12700
|
onClose = _ref.onClose,
|
|
12697
12701
|
onClickOutside = _ref.onClickOutside,
|
|
12698
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12702
|
+
rest = _objectWithoutProperties(_ref, _excluded$1g);
|
|
12699
12703
|
var _useState = React.useState(defaultOpen),
|
|
12700
12704
|
_useState2 = _slicedToArray(_useState, 2),
|
|
12701
12705
|
open = _useState2[0],
|
|
@@ -12763,7 +12767,7 @@
|
|
|
12763
12767
|
});
|
|
12764
12768
|
Modal.displayName = "Modal";
|
|
12765
12769
|
|
|
12766
|
-
var _excluded$
|
|
12770
|
+
var _excluded$1f = ["in", "children", "style", "timeout"];
|
|
12767
12771
|
var defaultStyle$2 = function defaultStyle(duration) {
|
|
12768
12772
|
return {
|
|
12769
12773
|
transition: "all ".concat(duration, "ms ease-in-out"),
|
|
@@ -12791,7 +12795,7 @@
|
|
|
12791
12795
|
style = _ref.style,
|
|
12792
12796
|
_ref$timeout = _ref.timeout,
|
|
12793
12797
|
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout,
|
|
12794
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12798
|
+
rest = _objectWithoutProperties(_ref, _excluded$1f);
|
|
12795
12799
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
12796
12800
|
appear: true,
|
|
12797
12801
|
in: inProp,
|
|
@@ -12806,7 +12810,7 @@
|
|
|
12806
12810
|
};
|
|
12807
12811
|
Fade.displayName = "Fade";
|
|
12808
12812
|
|
|
12809
|
-
var _excluded$
|
|
12813
|
+
var _excluded$1e = ["in", "children", "style", "timeout", "initialDirection"];
|
|
12810
12814
|
var Slide = function Slide(_ref) {
|
|
12811
12815
|
var _ref$in = _ref.in,
|
|
12812
12816
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
@@ -12816,7 +12820,7 @@
|
|
|
12816
12820
|
timeout = _ref$timeout === void 0 ? 300 : _ref$timeout,
|
|
12817
12821
|
_ref$initialDirection = _ref.initialDirection,
|
|
12818
12822
|
initialDirection = _ref$initialDirection === void 0 ? "left" : _ref$initialDirection,
|
|
12819
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12823
|
+
rest = _objectWithoutProperties(_ref, _excluded$1e);
|
|
12820
12824
|
var directionSign;
|
|
12821
12825
|
switch (initialDirection) {
|
|
12822
12826
|
case "right":
|
|
@@ -12922,12 +12926,12 @@
|
|
|
12922
12926
|
return props.$direction === "right" && styled.css(["&.c-slide-enter{position:absolute;transform:translateX(-100%);}&.c-slide-enter-active{transform:translateX(0%);transition:all 200ms ease;}&.c-slide-exit{position:absolute;}&.c-slide-exit-active{transform:translateX(100%);transition:all 200ms ease;}"]);
|
|
12923
12927
|
});
|
|
12924
12928
|
|
|
12925
|
-
var _excluded$
|
|
12929
|
+
var _excluded$1d = ["children", "direction"];
|
|
12926
12930
|
var SlideLeftRightTransition = function SlideLeftRightTransition(_ref) {
|
|
12927
12931
|
var children = _ref.children,
|
|
12928
12932
|
_ref$direction = _ref.direction,
|
|
12929
12933
|
direction = _ref$direction === void 0 ? "left" : _ref$direction,
|
|
12930
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
12934
|
+
props = _objectWithoutProperties(_ref, _excluded$1d);
|
|
12931
12935
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.CSSTransition, _extends({
|
|
12932
12936
|
timeout: 200,
|
|
12933
12937
|
classNames: "c-slide",
|
|
@@ -12970,7 +12974,7 @@
|
|
|
12970
12974
|
};
|
|
12971
12975
|
ResizeTransition.displayName = "ResizeTransition";
|
|
12972
12976
|
|
|
12973
|
-
var _excluded$
|
|
12977
|
+
var _excluded$1c = ["in", "children", "style", "timeout"];
|
|
12974
12978
|
var defaultStyle = function defaultStyle(duration) {
|
|
12975
12979
|
return {
|
|
12976
12980
|
transition: "all ".concat(duration, "ms ease-in"),
|
|
@@ -13004,7 +13008,7 @@
|
|
|
13004
13008
|
style = _ref.style,
|
|
13005
13009
|
_ref$timeout = _ref.timeout,
|
|
13006
13010
|
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout,
|
|
13007
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13011
|
+
rest = _objectWithoutProperties(_ref, _excluded$1c);
|
|
13008
13012
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
13009
13013
|
appear: true,
|
|
13010
13014
|
in: inProp,
|
|
@@ -13054,7 +13058,7 @@
|
|
|
13054
13058
|
};
|
|
13055
13059
|
Scale.displayName = "Scale";
|
|
13056
13060
|
|
|
13057
|
-
var _excluded$
|
|
13061
|
+
var _excluded$1b = ["children", "open", "onClose", "className", "enableBackgroundClick", "disableCloseOnEsc", "animate", "onClickOutside", "fullWidth"];
|
|
13058
13062
|
var _Dialog = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
13059
13063
|
var children = _ref.children,
|
|
13060
13064
|
_ref$open = _ref.open,
|
|
@@ -13070,7 +13074,7 @@
|
|
|
13070
13074
|
onClickOutside = _ref.onClickOutside,
|
|
13071
13075
|
_ref$fullWidth = _ref.fullWidth,
|
|
13072
13076
|
fullWidth = _ref$fullWidth === void 0 ? false : _ref$fullWidth,
|
|
13073
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13077
|
+
rest = _objectWithoutProperties(_ref, _excluded$1b);
|
|
13074
13078
|
var animateDialog = function animateDialog() {
|
|
13075
13079
|
switch (animate) {
|
|
13076
13080
|
case "fade":
|
|
@@ -14508,10 +14512,10 @@
|
|
|
14508
14512
|
componentId: "sc-1n0a2yl-0"
|
|
14509
14513
|
})(["width:70%;background:linear-gradient( 90deg,rgba(255,255,255,0) 20%,rgba(0,0,0,0.05) 50%,rgba(255,255,255,0) 60% );background-size:400%;height:16px;border-radius:8px;.neon &{background:linear-gradient( 90deg,rgba(255,255,255,0) 20%,rgba(0,0,0,0.2) 50%,rgba(255,255,255,0) 60% );background-size:500%;}animation-duration:1s;animation-iteration-count:infinite;animation-name:", ";animation-timing-function:linear;animation-direction:reverse;"], linearAnimation);
|
|
14510
14514
|
|
|
14511
|
-
var _excluded$
|
|
14515
|
+
var _excluded$1a = ["className"];
|
|
14512
14516
|
var SkeletonLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14513
14517
|
var className = _ref.className,
|
|
14514
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
14518
|
+
rest = _objectWithoutProperties(_ref, _excluded$1a);
|
|
14515
14519
|
return /*#__PURE__*/React__default["default"].createElement(StyledSkeletonLoader, _extends({
|
|
14516
14520
|
ref: ref,
|
|
14517
14521
|
className: classNames__default["default"]("c-loader c-loader--linear", className)
|
|
@@ -14525,10 +14529,10 @@
|
|
|
14525
14529
|
componentId: "sc-1f35d5h-0"
|
|
14526
14530
|
})(["display:inline-block;text-align:center;& > span{display:inline-block;width:18px;height:18px;background-color:#777;border-radius:100%;animation:", " 1.4s infinite ease-in-out both;}span:nth-child(1){animation-delay:-0.32s;}span:nth-child(2){animation-delay:-0.16s;}"], dotAnimation);
|
|
14527
14531
|
|
|
14528
|
-
var _excluded$
|
|
14532
|
+
var _excluded$19 = ["className"];
|
|
14529
14533
|
var DotsLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14530
14534
|
var className = _ref.className,
|
|
14531
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
14535
|
+
rest = _objectWithoutProperties(_ref, _excluded$19);
|
|
14532
14536
|
return /*#__PURE__*/React__default["default"].createElement(StyledDotsLoader, _extends({
|
|
14533
14537
|
ref: ref,
|
|
14534
14538
|
className: classNames__default["default"]("c-loader c-loader--dots", className)
|
|
@@ -14550,7 +14554,7 @@
|
|
|
14550
14554
|
return props.$activeColorPercentage === "75%" && styled.css(["border-right:", "px solid ", ";border-bottom:", "px solid ", ";border-left:", "px solid ", ";border-top:", "px solid ", ";"], props.$stroke, props.$activeStrokeColor, props.$stroke, props.$activeStrokeColor, props.$stroke, props.$inactiveStrokeColor, props.$stroke, props.$activeStrokeColor);
|
|
14551
14555
|
});
|
|
14552
14556
|
|
|
14553
|
-
var _excluded$
|
|
14557
|
+
var _excluded$18 = ["radius", "stroke", "activeStrokeColor", "inactiveStrokeColor", "activeColorPercentage", "rotateDurationInSeconds", "className"];
|
|
14554
14558
|
var SpinnerLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14555
14559
|
var _ref$radius = _ref.radius,
|
|
14556
14560
|
radius = _ref$radius === void 0 ? 10 : _ref$radius,
|
|
@@ -14565,7 +14569,7 @@
|
|
|
14565
14569
|
_ref$rotateDurationIn = _ref.rotateDurationInSeconds,
|
|
14566
14570
|
rotateDurationInSeconds = _ref$rotateDurationIn === void 0 ? 0.75 : _ref$rotateDurationIn,
|
|
14567
14571
|
className = _ref.className,
|
|
14568
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
14572
|
+
rest = _objectWithoutProperties(_ref, _excluded$18);
|
|
14569
14573
|
return /*#__PURE__*/React__default["default"].createElement(StyledSpinnerLoader$1, _extends({
|
|
14570
14574
|
ref: ref,
|
|
14571
14575
|
className: className,
|
|
@@ -14604,7 +14608,7 @@
|
|
|
14604
14608
|
});
|
|
14605
14609
|
StyledLinearLoader.displayName = "StyledLinearLoader";
|
|
14606
14610
|
|
|
14607
|
-
var _excluded$
|
|
14611
|
+
var _excluded$17 = ["height", "activeStrokeColor", "inactiveStrokeColor", "activeColorPercentage", "animationDuration"];
|
|
14608
14612
|
var LinearLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14609
14613
|
var _ref$height = _ref.height,
|
|
14610
14614
|
height = _ref$height === void 0 ? 4 : _ref$height,
|
|
@@ -14616,7 +14620,7 @@
|
|
|
14616
14620
|
activeColorPercentage = _ref$activeColorPerce === void 0 ? "25%" : _ref$activeColorPerce,
|
|
14617
14621
|
_ref$animationDuratio = _ref.animationDuration,
|
|
14618
14622
|
animationDuration = _ref$animationDuratio === void 0 ? 0.75 : _ref$animationDuratio,
|
|
14619
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
14623
|
+
rest = _objectWithoutProperties(_ref, _excluded$17);
|
|
14620
14624
|
return /*#__PURE__*/React__default["default"].createElement(StyledLinearLoader, _extends({
|
|
14621
14625
|
ref: ref,
|
|
14622
14626
|
$height: height,
|
|
@@ -14628,7 +14632,7 @@
|
|
|
14628
14632
|
});
|
|
14629
14633
|
LinearLoader.displayName = "LinearLoader";
|
|
14630
14634
|
|
|
14631
|
-
var _excluded$
|
|
14635
|
+
var _excluded$16 = ["header", "rows", "className", "sortBy", "sortDirection", "onSortCallback", "theadClass", "noResultsCallback", "groupBy", "groupHead", "isCollapsible", "emptyValue", "loading", "loadingRows"];
|
|
14632
14636
|
var SortDirection = /*#__PURE__*/function (SortDirection) {
|
|
14633
14637
|
SortDirection["None"] = "none";
|
|
14634
14638
|
SortDirection["Asc"] = "asc";
|
|
@@ -14678,7 +14682,7 @@
|
|
|
14678
14682
|
loading = _ref.loading,
|
|
14679
14683
|
_ref$loadingRows = _ref.loadingRows,
|
|
14680
14684
|
loadingRows = _ref$loadingRows === void 0 ? 7 : _ref$loadingRows,
|
|
14681
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
14685
|
+
args = _objectWithoutProperties(_ref, _excluded$16);
|
|
14682
14686
|
var _useState = React.useState(sortDirection),
|
|
14683
14687
|
_useState2 = _slicedToArray(_useState, 2),
|
|
14684
14688
|
columnDirection = _useState2[0],
|
|
@@ -15038,7 +15042,7 @@
|
|
|
15038
15042
|
});
|
|
15039
15043
|
StyledCompleteCheckbox.displayName = "StyledCompleteCheckbox";
|
|
15040
15044
|
|
|
15041
|
-
var _excluded$
|
|
15045
|
+
var _excluded$15 = ["completed", "disabled", "animate", "onClick", "className", "primary", "checkMarkClassName"];
|
|
15042
15046
|
var CompleteCheckbox = function CompleteCheckbox(_ref) {
|
|
15043
15047
|
var _ref$completed = _ref.completed,
|
|
15044
15048
|
completed = _ref$completed === void 0 ? false : _ref$completed,
|
|
@@ -15051,7 +15055,7 @@
|
|
|
15051
15055
|
_ref$primary = _ref.primary,
|
|
15052
15056
|
primary = _ref$primary === void 0 ? false : _ref$primary,
|
|
15053
15057
|
checkMarkClassName = _ref.checkMarkClassName,
|
|
15054
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15058
|
+
rest = _objectWithoutProperties(_ref, _excluded$15);
|
|
15055
15059
|
return /*#__PURE__*/React__default["default"].createElement(StyledCompleteCheckbox, _extends({
|
|
15056
15060
|
onClick: onClick,
|
|
15057
15061
|
className: classNames__default["default"]("c-complete-checkbox", className),
|
|
@@ -15086,7 +15090,7 @@
|
|
|
15086
15090
|
});
|
|
15087
15091
|
StyledPaper.displayName = "StyledPaper";
|
|
15088
15092
|
|
|
15089
|
-
var _excluded$
|
|
15093
|
+
var _excluded$14 = ["children", "className", "type", "hover", "useOptimizedShadow"];
|
|
15090
15094
|
/**
|
|
15091
15095
|
* This is a component description and should sit directly above your component
|
|
15092
15096
|
*/
|
|
@@ -15099,7 +15103,7 @@
|
|
|
15099
15103
|
hover = _ref$hover === void 0 ? false : _ref$hover,
|
|
15100
15104
|
_ref$useOptimizedShad = _ref.useOptimizedShadow,
|
|
15101
15105
|
useOptimizedShadow = _ref$useOptimizedShad === void 0 ? false : _ref$useOptimizedShad,
|
|
15102
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15106
|
+
rest = _objectWithoutProperties(_ref, _excluded$14);
|
|
15103
15107
|
return /*#__PURE__*/React__default["default"].createElement(StyledPaper, _extends({
|
|
15104
15108
|
className: classNames__default["default"](className, {
|
|
15105
15109
|
"ac-shadow--raised--lg": !useOptimizedShadow && hover && type === "paper-1",
|
|
@@ -15155,7 +15159,7 @@
|
|
|
15155
15159
|
});
|
|
15156
15160
|
StyledCard.displayName = "StyledCard";
|
|
15157
15161
|
|
|
15158
|
-
var _excluded$
|
|
15162
|
+
var _excluded$13 = ["children", "className", "hoverable", "variant", "onClick"];
|
|
15159
15163
|
var Card = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15160
15164
|
var children = _ref.children,
|
|
15161
15165
|
className = _ref.className,
|
|
@@ -15164,7 +15168,7 @@
|
|
|
15164
15168
|
_ref$variant = _ref.variant,
|
|
15165
15169
|
variant = _ref$variant === void 0 ? "paper-2" : _ref$variant,
|
|
15166
15170
|
onClick = _ref.onClick,
|
|
15167
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15171
|
+
rest = _objectWithoutProperties(_ref, _excluded$13);
|
|
15168
15172
|
return /*#__PURE__*/React__default["default"].createElement(StyledCard, _extends({}, rest, {
|
|
15169
15173
|
type: variant,
|
|
15170
15174
|
className: classNames__default["default"]("c-card", className),
|
|
@@ -15245,12 +15249,12 @@
|
|
|
15245
15249
|
});
|
|
15246
15250
|
EntityCard$1.displayName = "EntityCard";
|
|
15247
15251
|
|
|
15248
|
-
var _excluded$
|
|
15252
|
+
var _excluded$12 = ["weight", "children"];
|
|
15249
15253
|
var Title1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15250
15254
|
var _ref$weight = _ref.weight,
|
|
15251
15255
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
15252
15256
|
children = _ref.children,
|
|
15253
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15257
|
+
props = _objectWithoutProperties(_ref, _excluded$12);
|
|
15254
15258
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
15255
15259
|
weight: weight,
|
|
15256
15260
|
variant: "Title 1",
|
|
@@ -15259,12 +15263,12 @@
|
|
|
15259
15263
|
});
|
|
15260
15264
|
Title1.displayName = "Title1";
|
|
15261
15265
|
|
|
15262
|
-
var _excluded$
|
|
15266
|
+
var _excluded$11 = ["weight", "children"];
|
|
15263
15267
|
var Title2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15264
15268
|
var _ref$weight = _ref.weight,
|
|
15265
15269
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
15266
15270
|
children = _ref.children,
|
|
15267
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15271
|
+
props = _objectWithoutProperties(_ref, _excluded$11);
|
|
15268
15272
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
15269
15273
|
weight: weight,
|
|
15270
15274
|
variant: "Title 2",
|
|
@@ -15273,10 +15277,10 @@
|
|
|
15273
15277
|
});
|
|
15274
15278
|
Title2.displayName = "Title2";
|
|
15275
15279
|
|
|
15276
|
-
var _excluded
|
|
15280
|
+
var _excluded$10 = ["children"];
|
|
15277
15281
|
var Header2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15278
15282
|
var children = _ref.children,
|
|
15279
|
-
props = _objectWithoutProperties(_ref, _excluded
|
|
15283
|
+
props = _objectWithoutProperties(_ref, _excluded$10);
|
|
15280
15284
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
15281
15285
|
weight: "bold",
|
|
15282
15286
|
variant: "Header 2",
|
|
@@ -15285,12 +15289,12 @@
|
|
|
15285
15289
|
});
|
|
15286
15290
|
Header2.displayName = "Header2";
|
|
15287
15291
|
|
|
15288
|
-
var _excluded
|
|
15292
|
+
var _excluded$$ = ["weight", "children"];
|
|
15289
15293
|
var Body1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15290
15294
|
var _ref$weight = _ref.weight,
|
|
15291
15295
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
15292
15296
|
children = _ref.children,
|
|
15293
|
-
props = _objectWithoutProperties(_ref, _excluded
|
|
15297
|
+
props = _objectWithoutProperties(_ref, _excluded$$);
|
|
15294
15298
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
15295
15299
|
variant: "Body 1",
|
|
15296
15300
|
weight: weight,
|
|
@@ -15299,12 +15303,12 @@
|
|
|
15299
15303
|
});
|
|
15300
15304
|
Body1.displayName = "Body1";
|
|
15301
15305
|
|
|
15302
|
-
var _excluded$
|
|
15306
|
+
var _excluded$_ = ["weight", "children"];
|
|
15303
15307
|
var Caption1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15304
15308
|
var _ref$weight = _ref.weight,
|
|
15305
15309
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
15306
15310
|
children = _ref.children,
|
|
15307
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15311
|
+
props = _objectWithoutProperties(_ref, _excluded$_);
|
|
15308
15312
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
15309
15313
|
variant: "Caption 1",
|
|
15310
15314
|
weight: weight,
|
|
@@ -15313,12 +15317,12 @@
|
|
|
15313
15317
|
});
|
|
15314
15318
|
Caption1.displayName = "Caption1";
|
|
15315
15319
|
|
|
15316
|
-
var _excluded$
|
|
15320
|
+
var _excluded$Z = ["weight", "children"];
|
|
15317
15321
|
var Caption2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15318
15322
|
var _ref$weight = _ref.weight,
|
|
15319
15323
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
15320
15324
|
children = _ref.children,
|
|
15321
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15325
|
+
props = _objectWithoutProperties(_ref, _excluded$Z);
|
|
15322
15326
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
15323
15327
|
variant: "Caption 2",
|
|
15324
15328
|
weight: weight,
|
|
@@ -15530,7 +15534,7 @@
|
|
|
15530
15534
|
componentId: "sc-5x2tyd-1"
|
|
15531
15535
|
})(["border-radius:100%;object-fit:cover;"]);
|
|
15532
15536
|
|
|
15533
|
-
var _excluded$
|
|
15537
|
+
var _excluded$Y = ["url", "alt", "size", "className", "imgClassName", "children"];
|
|
15534
15538
|
/**
|
|
15535
15539
|
* @component Avatar
|
|
15536
15540
|
* @description
|
|
@@ -15565,7 +15569,7 @@
|
|
|
15565
15569
|
className = _ref.className,
|
|
15566
15570
|
imgClassName = _ref.imgClassName,
|
|
15567
15571
|
children = _ref.children,
|
|
15568
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15572
|
+
rest = _objectWithoutProperties(_ref, _excluded$Y);
|
|
15569
15573
|
var _useState = React.useState(false),
|
|
15570
15574
|
_useState2 = _slicedToArray(_useState, 2),
|
|
15571
15575
|
imageLoaded = _useState2[0],
|
|
@@ -15606,13 +15610,13 @@
|
|
|
15606
15610
|
return props.$color && styled.css(["background-color:", ";"], props.$color);
|
|
15607
15611
|
});
|
|
15608
15612
|
|
|
15609
|
-
var _excluded$
|
|
15613
|
+
var _excluded$X = ["color", "size", "className"];
|
|
15610
15614
|
var Dot = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15611
15615
|
var color = _ref.color,
|
|
15612
15616
|
_ref$size = _ref.size,
|
|
15613
15617
|
size = _ref$size === void 0 ? 8 : _ref$size,
|
|
15614
15618
|
className = _ref.className,
|
|
15615
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15619
|
+
rest = _objectWithoutProperties(_ref, _excluded$X);
|
|
15616
15620
|
return /*#__PURE__*/React__default["default"].createElement(StyledDot, _extends({
|
|
15617
15621
|
className: classNames__default["default"]("c-dot", className),
|
|
15618
15622
|
ref: ref,
|
|
@@ -15649,7 +15653,7 @@
|
|
|
15649
15653
|
});
|
|
15650
15654
|
StyledTagText.displayName = "StyledTagText";
|
|
15651
15655
|
|
|
15652
|
-
var _excluded$
|
|
15656
|
+
var _excluded$W = ["name", "color", "showText", "showDot", "className"];
|
|
15653
15657
|
var Tag = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15654
15658
|
var name = _ref.name,
|
|
15655
15659
|
color = _ref.color,
|
|
@@ -15658,7 +15662,7 @@
|
|
|
15658
15662
|
_ref$showDot = _ref.showDot,
|
|
15659
15663
|
showDot = _ref$showDot === void 0 ? true : _ref$showDot,
|
|
15660
15664
|
className = _ref.className,
|
|
15661
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15665
|
+
rest = _objectWithoutProperties(_ref, _excluded$W);
|
|
15662
15666
|
return /*#__PURE__*/React__default["default"].createElement(StyledTag, _extends({
|
|
15663
15667
|
className: classNames__default["default"]("c-tag", className),
|
|
15664
15668
|
ref: ref
|
|
@@ -15770,7 +15774,7 @@
|
|
|
15770
15774
|
});
|
|
15771
15775
|
StyledNavAsMoreTarget.displayName = "StyledNavAsMoreTarget";
|
|
15772
15776
|
|
|
15773
|
-
var _excluded$
|
|
15777
|
+
var _excluded$V = ["children", "active", "disabled", "className", "role"];
|
|
15774
15778
|
var Item = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
15775
15779
|
var children = _ref.children,
|
|
15776
15780
|
_ref$active = _ref.active,
|
|
@@ -15779,7 +15783,7 @@
|
|
|
15779
15783
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
15780
15784
|
className = _ref.className,
|
|
15781
15785
|
role = _ref.role,
|
|
15782
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15786
|
+
rest = _objectWithoutProperties(_ref, _excluded$V);
|
|
15783
15787
|
return /*#__PURE__*/React__default["default"].createElement(StyledNavListItem, _extends({
|
|
15784
15788
|
className: classNames__default["default"]("c-nav__item", {
|
|
15785
15789
|
"c-nav__item--active": active
|
|
@@ -15827,11 +15831,11 @@
|
|
|
15827
15831
|
});
|
|
15828
15832
|
StyledExpandSingle.displayName = "StyledExpandSingle";
|
|
15829
15833
|
|
|
15830
|
-
var _excluded$
|
|
15834
|
+
var _excluded$U = ["expanded"];
|
|
15831
15835
|
var ExpandSingle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15832
15836
|
var _ref$expanded = _ref.expanded,
|
|
15833
15837
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
15834
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15838
|
+
rest = _objectWithoutProperties(_ref, _excluded$U);
|
|
15835
15839
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpandSingle, _extends({
|
|
15836
15840
|
ref: ref,
|
|
15837
15841
|
viewBox: "0 0 24 24",
|
|
@@ -16007,7 +16011,7 @@
|
|
|
16007
16011
|
};
|
|
16008
16012
|
OptionContent.displayName = "OptionContent";
|
|
16009
16013
|
|
|
16010
|
-
var _excluded$
|
|
16014
|
+
var _excluded$T = ["mixed", "data-testid"];
|
|
16011
16015
|
|
|
16012
16016
|
/**
|
|
16013
16017
|
* @component CheckboxIcon
|
|
@@ -16031,7 +16035,7 @@
|
|
|
16031
16035
|
var CheckboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
16032
16036
|
var mixed = _ref.mixed,
|
|
16033
16037
|
testId = _ref["data-testid"],
|
|
16034
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
16038
|
+
props = _objectWithoutProperties(_ref, _excluded$T);
|
|
16035
16039
|
// const [animate, setAnimate] = useState(false);
|
|
16036
16040
|
// const mountRef = useRef(false);
|
|
16037
16041
|
|
|
@@ -16125,7 +16129,7 @@
|
|
|
16125
16129
|
});
|
|
16126
16130
|
StyledCheckbox$1.displayName = "StyledCheckbox";
|
|
16127
16131
|
|
|
16128
|
-
var _excluded$
|
|
16132
|
+
var _excluded$S = ["className", "hover", "id", "mixed", "checked", "onChange", "disabled"];
|
|
16129
16133
|
/**
|
|
16130
16134
|
* Checkbox component
|
|
16131
16135
|
*/
|
|
@@ -16139,7 +16143,7 @@
|
|
|
16139
16143
|
checked = _ref.checked,
|
|
16140
16144
|
onChange = _ref.onChange,
|
|
16141
16145
|
disabled = _ref.disabled,
|
|
16142
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
16146
|
+
rest = _objectWithoutProperties(_ref, _excluded$S);
|
|
16143
16147
|
var _useState = React.useState(mixed && !checked),
|
|
16144
16148
|
_useState2 = _slicedToArray(_useState, 2),
|
|
16145
16149
|
indeterminate = _useState2[0],
|
|
@@ -16314,7 +16318,7 @@
|
|
|
16314
16318
|
})(["overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-right:8px;display:flex;justify-items:center;align-items:center;"]);
|
|
16315
16319
|
StyledOptionWrapper.displayName = "StyledOptionWrapper";
|
|
16316
16320
|
|
|
16317
|
-
var _excluded$
|
|
16321
|
+
var _excluded$R = ["className", "style", "type", "disabled", "size", "invalid", "startAdornment", "endAdornment", "wrapRef", "wrapperClick", "mode"];
|
|
16318
16322
|
var Input = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
16319
16323
|
var _ref$className = _ref.className,
|
|
16320
16324
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
@@ -16333,7 +16337,7 @@
|
|
|
16333
16337
|
wrapperClick = _ref.wrapperClick,
|
|
16334
16338
|
_ref$mode = _ref.mode,
|
|
16335
16339
|
mode = _ref$mode === void 0 ? "outlined" : _ref$mode,
|
|
16336
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
16340
|
+
rest = _objectWithoutProperties(_ref, _excluded$R);
|
|
16337
16341
|
var intInputRef = React.useRef(null);
|
|
16338
16342
|
var handleRef = useForkRef(ref, intInputRef);
|
|
16339
16343
|
var handleWrapperClick = React.useCallback(function () {
|
|
@@ -16390,14 +16394,14 @@
|
|
|
16390
16394
|
}, StyledRadioLabel);
|
|
16391
16395
|
StyledRadioButton$1.displayName = "StyledRadioButton";
|
|
16392
16396
|
|
|
16393
|
-
var _excluded$
|
|
16397
|
+
var _excluded$Q = ["className", "id", "hover"];
|
|
16394
16398
|
var RadioButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
16395
16399
|
var _ref$className = _ref.className,
|
|
16396
16400
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
16397
16401
|
_ref$id = _ref.id,
|
|
16398
16402
|
id = _ref$id === void 0 ? "radio" : _ref$id,
|
|
16399
16403
|
hover = _ref.hover,
|
|
16400
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
16404
|
+
props = _objectWithoutProperties(_ref, _excluded$Q);
|
|
16401
16405
|
return /*#__PURE__*/React__default["default"].createElement(StyledRadioButton$1, {
|
|
16402
16406
|
className: classNames__default["default"]("c-radio-btn", {
|
|
16403
16407
|
"c-radio-btn__hover": hover,
|
|
@@ -16545,7 +16549,7 @@
|
|
|
16545
16549
|
StyledScrollShadowLeft.displayName = "StyledScrollShadowLeft";
|
|
16546
16550
|
StyledScrollShadowRight.displayName = "StyledScrollShadowRight";
|
|
16547
16551
|
|
|
16548
|
-
var _excluded$
|
|
16552
|
+
var _excluded$P = ["children", "className", "disableVertical", "disableHorizontal", "invertHorizontal", "invertVertical", "innerColor", "outerColor"];
|
|
16549
16553
|
var ScrollShadow = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
16550
16554
|
var children = _ref.children,
|
|
16551
16555
|
className = _ref.className,
|
|
@@ -16559,7 +16563,7 @@
|
|
|
16559
16563
|
invertVertical = _ref$invertVertical === void 0 ? false : _ref$invertVertical,
|
|
16560
16564
|
innerColor = _ref.innerColor,
|
|
16561
16565
|
outerColor = _ref.outerColor,
|
|
16562
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
16566
|
+
rest = _objectWithoutProperties(_ref, _excluded$P);
|
|
16563
16567
|
var _useState = React.useState({
|
|
16564
16568
|
top: 0,
|
|
16565
16569
|
right: 0,
|
|
@@ -16964,7 +16968,7 @@
|
|
|
16964
16968
|
};
|
|
16965
16969
|
};
|
|
16966
16970
|
|
|
16967
|
-
var _excluded$
|
|
16971
|
+
var _excluded$O = ["as", "className", "invert", "style"];
|
|
16968
16972
|
var ScrollElement = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
16969
16973
|
var _ref$as = _ref.as,
|
|
16970
16974
|
as = _ref$as === void 0 ? "div" : _ref$as,
|
|
@@ -16972,7 +16976,7 @@
|
|
|
16972
16976
|
_ref$invert = _ref.invert,
|
|
16973
16977
|
invert = _ref$invert === void 0 ? false : _ref$invert,
|
|
16974
16978
|
style = _ref.style,
|
|
16975
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
16979
|
+
rest = _objectWithoutProperties(_ref, _excluded$O);
|
|
16976
16980
|
var internalRef = useInitScrollRef(null, invert);
|
|
16977
16981
|
var handleRef = useForkRef(internalRef, ref);
|
|
16978
16982
|
var props = _objectSpread2(_objectSpread2({}, rest), {}, {
|
|
@@ -17747,7 +17751,7 @@
|
|
|
17747
17751
|
componentId: "sc-9x4q7e-0"
|
|
17748
17752
|
})(["cursor:auto"]);
|
|
17749
17753
|
|
|
17750
|
-
var _excluded$
|
|
17754
|
+
var _excluded$N = ["type", "mode", "target", "options", "selected", "mixed", "position", "onChange", "placeholder", "emptyAction", "disableSearch", "forceCloseMenu", "selectClassName", "keepSameOptionsOrder", "onSelectOpen", "onSelectClose", "renderOption", "handleDefaultOptionChange", "preselectDefaultValue", "startAdornment", "endAdornment", "focusInput", "disableVirtualization"];
|
|
17751
17755
|
var Select = function Select(_ref) {
|
|
17752
17756
|
var _ref$type = _ref.type,
|
|
17753
17757
|
type = _ref$type === void 0 ? "single" : _ref$type,
|
|
@@ -17786,7 +17790,7 @@
|
|
|
17786
17790
|
_ref$focusInput = _ref.focusInput,
|
|
17787
17791
|
focusInput = _ref$focusInput === void 0 ? false : _ref$focusInput,
|
|
17788
17792
|
disableVirtualization = _ref.disableVirtualization,
|
|
17789
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
17793
|
+
prop = _objectWithoutProperties(_ref, _excluded$N);
|
|
17790
17794
|
if (disableSearch && (startAdornment || endAdornment)) {
|
|
17791
17795
|
console.warn("Adornments are not visible when search bar is hidden");
|
|
17792
17796
|
}
|
|
@@ -18094,7 +18098,7 @@
|
|
|
18094
18098
|
};
|
|
18095
18099
|
Nav.displayName = "Nav";
|
|
18096
18100
|
|
|
18097
|
-
var _excluded$
|
|
18101
|
+
var _excluded$M = ["children", "as", "disablePointerEvents"];
|
|
18098
18102
|
var InputAdornmentBase = styled__default["default"].div.withConfig({
|
|
18099
18103
|
displayName: "InputAdornment__InputAdornmentBase",
|
|
18100
18104
|
componentId: "sc-1xfjx1z-0"
|
|
@@ -18113,7 +18117,7 @@
|
|
|
18113
18117
|
var children = _ref.children,
|
|
18114
18118
|
as = _ref.as,
|
|
18115
18119
|
disablePointerEvents = _ref.disablePointerEvents,
|
|
18116
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
18120
|
+
rest = _objectWithoutProperties(_ref, _excluded$M);
|
|
18117
18121
|
var Component = as || "div";
|
|
18118
18122
|
return /*#__PURE__*/React__default["default"].createElement(InputAdornmentBase, _extends({}, rest, {
|
|
18119
18123
|
as: Component,
|
|
@@ -18351,7 +18355,7 @@
|
|
|
18351
18355
|
};
|
|
18352
18356
|
};
|
|
18353
18357
|
|
|
18354
|
-
var _excluded$
|
|
18358
|
+
var _excluded$L = ["value", "onCancel", "onSave", "onEnterKeyPress", "allowEmptyValue", "withLeadingZero", "validation", "incrementOnlySelected", "minuteIncrement", "className", "onChange", "onClick", "align"];
|
|
18355
18359
|
var InputHours = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
18356
18360
|
var defaultValue = _ref.value,
|
|
18357
18361
|
onCancel = _ref.onCancel,
|
|
@@ -18371,7 +18375,7 @@
|
|
|
18371
18375
|
externalOnClick = _ref.onClick,
|
|
18372
18376
|
_ref$align = _ref.align,
|
|
18373
18377
|
align = _ref$align === void 0 ? "center" : _ref$align,
|
|
18374
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
18378
|
+
rest = _objectWithoutProperties(_ref, _excluded$L);
|
|
18375
18379
|
var inputRef = React.useRef(null);
|
|
18376
18380
|
var handleRef = useForkRef(ref, inputRef);
|
|
18377
18381
|
var _useInputHours = useInputHours({
|
|
@@ -18410,7 +18414,7 @@
|
|
|
18410
18414
|
});
|
|
18411
18415
|
InputHours.displayName = "InputHours";
|
|
18412
18416
|
|
|
18413
|
-
var _excluded$
|
|
18417
|
+
var _excluded$K = ["decimalLength", "decimalSeparator", "disableAbbreviation", "disabled", "disableMacros", "invalid", "step", "thousandSeparator", "value", "onCancel", "onSave", "onEnterKeyPress", "allowEmptyValue", "onChange", "onClick", "limit", "placeholder", "trimDecimals", "min", "max", "onBlur", "update", "shortenThreshold"];
|
|
18414
18418
|
var InputNumber = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
18415
18419
|
var _ref$decimalLength = _ref.decimalLength,
|
|
18416
18420
|
decimalLength = _ref$decimalLength === void 0 ? 2 : _ref$decimalLength,
|
|
@@ -18444,7 +18448,7 @@
|
|
|
18444
18448
|
update = _ref$update === void 0 ? false : _ref$update,
|
|
18445
18449
|
_ref$shortenThreshold = _ref.shortenThreshold,
|
|
18446
18450
|
shortenThreshold = _ref$shortenThreshold === void 0 ? 1000 : _ref$shortenThreshold,
|
|
18447
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
18451
|
+
rest = _objectWithoutProperties(_ref, _excluded$K);
|
|
18448
18452
|
var inputRef = React.useRef(null);
|
|
18449
18453
|
var handleRef = useForkRef(ref, inputRef);
|
|
18450
18454
|
var _useInputNumber = useInputNumber({
|
|
@@ -18496,14 +18500,14 @@
|
|
|
18496
18500
|
});
|
|
18497
18501
|
InputNumber.displayName = "InputNumber";
|
|
18498
18502
|
|
|
18499
|
-
var _excluded$
|
|
18503
|
+
var _excluded$J = ["currency", "size", "startAdornment", "endAdornment", "disabled"];
|
|
18500
18504
|
var InputCurrency = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
18501
18505
|
var currency = _ref.currency,
|
|
18502
18506
|
size = _ref.size,
|
|
18503
18507
|
startAdornment = _ref.startAdornment,
|
|
18504
18508
|
endAdornment = _ref.endAdornment,
|
|
18505
18509
|
disabled = _ref.disabled,
|
|
18506
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
18510
|
+
rest = _objectWithoutProperties(_ref, _excluded$J);
|
|
18507
18511
|
var variant = React.useMemo(function () {
|
|
18508
18512
|
if (size === "biggest") {
|
|
18509
18513
|
return "Header 2";
|
|
@@ -18536,7 +18540,7 @@
|
|
|
18536
18540
|
});
|
|
18537
18541
|
InputCurrency.displayName = "InputCurrency";
|
|
18538
18542
|
|
|
18539
|
-
var _excluded$
|
|
18543
|
+
var _excluded$I = ["size", "disabled", "show", "hideControl", "showTooltipText", "hideTooltipText", "value", "validation", "errorMessage", "invalid", "onChange"];
|
|
18540
18544
|
var transform = {
|
|
18541
18545
|
biggest: "big",
|
|
18542
18546
|
regular: "small",
|
|
@@ -18629,7 +18633,7 @@
|
|
|
18629
18633
|
errorMessage = _ref2.errorMessage,
|
|
18630
18634
|
invalid = _ref2.invalid,
|
|
18631
18635
|
onChange = _ref2.onChange,
|
|
18632
|
-
rest = _objectWithoutProperties(_ref2, _excluded$
|
|
18636
|
+
rest = _objectWithoutProperties(_ref2, _excluded$I);
|
|
18633
18637
|
var inputRef = React.useRef(null);
|
|
18634
18638
|
var handleRef = useForkRef(ref, inputRef);
|
|
18635
18639
|
var _useState = React.useState(show),
|
|
@@ -18750,7 +18754,7 @@
|
|
|
18750
18754
|
componentId: "sc-1lmb5y-0"
|
|
18751
18755
|
})(["flex-shrink:0"]);
|
|
18752
18756
|
|
|
18753
|
-
var _excluded$
|
|
18757
|
+
var _excluded$H = ["size", "disabled", "value", "onChange", "scheme"];
|
|
18754
18758
|
var defaultOptions = [{
|
|
18755
18759
|
id: "https://",
|
|
18756
18760
|
name: "https://"
|
|
@@ -18766,7 +18770,7 @@
|
|
|
18766
18770
|
defaultValue = _ref$value === void 0 ? "" : _ref$value,
|
|
18767
18771
|
onChange = _ref.onChange,
|
|
18768
18772
|
scheme = _ref.scheme,
|
|
18769
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
18773
|
+
rest = _objectWithoutProperties(_ref, _excluded$H);
|
|
18770
18774
|
var inputRef = React.useRef(null);
|
|
18771
18775
|
var handleRef = useForkRef(ref, inputRef);
|
|
18772
18776
|
var options = React.useMemo(function () {
|
|
@@ -18894,7 +18898,7 @@
|
|
|
18894
18898
|
});
|
|
18895
18899
|
InputUrl.displayName = "InputUrl";
|
|
18896
18900
|
|
|
18897
|
-
var _excluded$
|
|
18901
|
+
var _excluded$G = ["size", "disabled", "value", "onChange", "defaultCountry"];
|
|
18898
18902
|
var renderOption$2 = function renderOption(option, data) {
|
|
18899
18903
|
return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement(StyledOptionWrapper, null, /*#__PURE__*/React__default["default"].createElement(StyledOptionFlag, null, countryExplorer.getCountryFlag(option.id)), /*#__PURE__*/React__default["default"].createElement(StyledOptionName, null, option.name)), /*#__PURE__*/React__default["default"].createElement(StyledOptionRowEnd, null, /*#__PURE__*/React__default["default"].createElement(StyledOptionCode, null, option.additionalInfo), /*#__PURE__*/React__default["default"].createElement(RadioButton, {
|
|
18900
18904
|
checked: data.checked,
|
|
@@ -18910,7 +18914,7 @@
|
|
|
18910
18914
|
onChange = _ref.onChange,
|
|
18911
18915
|
_ref$defaultCountry = _ref.defaultCountry,
|
|
18912
18916
|
defaultCountry = _ref$defaultCountry === void 0 ? "US" : _ref$defaultCountry,
|
|
18913
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
18917
|
+
rest = _objectWithoutProperties(_ref, _excluded$G);
|
|
18914
18918
|
var inputRef = React.useRef(null);
|
|
18915
18919
|
var handleRef = useForkRef(ref, inputRef);
|
|
18916
18920
|
var _useState = React.useState(defaultCountry),
|
|
@@ -19139,12 +19143,12 @@
|
|
|
19139
19143
|
[ref, handler]);
|
|
19140
19144
|
}
|
|
19141
19145
|
|
|
19142
|
-
var _excluded$
|
|
19146
|
+
var _excluded$F = ["children", "type"];
|
|
19143
19147
|
var Trigger = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
19144
19148
|
var children = _ref.children,
|
|
19145
19149
|
_ref$type = _ref.type,
|
|
19146
19150
|
type = _ref$type === void 0 ? "button" : _ref$type,
|
|
19147
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
19151
|
+
rest = _objectWithoutProperties(_ref, _excluded$F);
|
|
19148
19152
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton, _extends({
|
|
19149
19153
|
ref: ref,
|
|
19150
19154
|
role: "button",
|
|
@@ -19199,7 +19203,7 @@
|
|
|
19199
19203
|
})(["color:var(--color-theme-700);"]);
|
|
19200
19204
|
ChipCloseIcon.displayName = "ChipCloseIcon";
|
|
19201
19205
|
|
|
19202
|
-
var _excluded$
|
|
19206
|
+
var _excluded$E = ["startAdornment", "label", "onClose", "size", "color", "backgroundColor", "closeClassName", "typographyProps"];
|
|
19203
19207
|
var Chip = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
19204
19208
|
var startAdornment = _ref.startAdornment,
|
|
19205
19209
|
label = _ref.label,
|
|
@@ -19210,7 +19214,7 @@
|
|
|
19210
19214
|
backgroundColor = _ref.backgroundColor,
|
|
19211
19215
|
closeClassName = _ref.closeClassName,
|
|
19212
19216
|
typographyProps = _ref.typographyProps,
|
|
19213
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
19217
|
+
rest = _objectWithoutProperties(_ref, _excluded$E);
|
|
19214
19218
|
var showClose = typeof onClose === "function";
|
|
19215
19219
|
var variant = React.useMemo(function () {
|
|
19216
19220
|
switch (size) {
|
|
@@ -19243,7 +19247,7 @@
|
|
|
19243
19247
|
});
|
|
19244
19248
|
Chip.displayName = "Chip";
|
|
19245
19249
|
|
|
19246
|
-
var _excluded$
|
|
19250
|
+
var _excluded$D = ["options", "selected", "loading", "loadingText", "onChange", "onInputChange", "placeholder", "handleEmptyAction", "disabled", "size", "invalid", "type", "renderChip", "forceCloseMenu", "renderOption", "limitChips", "hiddenNumberText", "inPortal", "inputWrapperClassName", "scrollWrapper", "onClose", "onClear", "onDeselect", "defaultValue", "open", "onOpen", "triggerMode", "noResultText", "emptyValue", "disableVirtualization", "hideClearButton", "errorMessage", "onCancel"];
|
|
19247
19251
|
var sizeMap = {
|
|
19248
19252
|
small: 18,
|
|
19249
19253
|
regular: 24,
|
|
@@ -19296,7 +19300,7 @@
|
|
|
19296
19300
|
hideClearButton = _ref$hideClearButton === void 0 ? false : _ref$hideClearButton,
|
|
19297
19301
|
errorMessage = _ref.errorMessage,
|
|
19298
19302
|
onCancel = _ref.onCancel,
|
|
19299
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
19303
|
+
prop = _objectWithoutProperties(_ref, _excluded$D);
|
|
19300
19304
|
var selectedName = React.useMemo(function () {
|
|
19301
19305
|
var value = "";
|
|
19302
19306
|
if (!selected) {
|
|
@@ -19721,7 +19725,7 @@
|
|
|
19721
19725
|
componentId: "sc-uvsz9l-4"
|
|
19722
19726
|
})(["display:flex;justify-content:center;"]);
|
|
19723
19727
|
|
|
19724
|
-
var _excluded$
|
|
19728
|
+
var _excluded$C = ["mode", "selected", "min", "max", "onChange", "step", "size", "className", "placeholder", "triggerMode", "disabled", "invalid", "enableVirtualization", "addCustomTimeLabel"];
|
|
19725
19729
|
nlp__default["default"].plugin(plg__default["default"]);
|
|
19726
19730
|
var StyledInputTimeWrapper = styled__default["default"].div.withConfig({
|
|
19727
19731
|
displayName: "InputTime__StyledInputTimeWrapper",
|
|
@@ -19754,7 +19758,7 @@
|
|
|
19754
19758
|
enableVirtualization = _ref$enableVirtualiza === void 0 ? false : _ref$enableVirtualiza,
|
|
19755
19759
|
_ref$addCustomTimeLab = _ref.addCustomTimeLabel,
|
|
19756
19760
|
addCustomTimeLabel = _ref$addCustomTimeLab === void 0 ? "Add" : _ref$addCustomTimeLab,
|
|
19757
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
19761
|
+
rest = _objectWithoutProperties(_ref, _excluded$C);
|
|
19758
19762
|
var _useState = React.useState(false),
|
|
19759
19763
|
_useState2 = _slicedToArray(_useState, 2),
|
|
19760
19764
|
isOpen = _useState2[0],
|
|
@@ -19893,7 +19897,7 @@
|
|
|
19893
19897
|
})));
|
|
19894
19898
|
};
|
|
19895
19899
|
|
|
19896
|
-
var _excluded$
|
|
19900
|
+
var _excluded$B = ["value", "variant", "thousandSeparator", "decimalSeparator", "trimDecimals", "decimalSpaces", "format", "disableTooltip", "className", "as", "shortenThreshold"];
|
|
19897
19901
|
var DisplayNumber = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
19898
19902
|
var value = _ref.value,
|
|
19899
19903
|
_ref$variant = _ref.variant,
|
|
@@ -19915,7 +19919,7 @@
|
|
|
19915
19919
|
as = _ref$as === void 0 ? "span" : _ref$as,
|
|
19916
19920
|
_ref$shortenThreshold = _ref.shortenThreshold,
|
|
19917
19921
|
shortenThreshold = _ref$shortenThreshold === void 0 ? 1000 : _ref$shortenThreshold,
|
|
19918
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
19922
|
+
rest = _objectWithoutProperties(_ref, _excluded$B);
|
|
19919
19923
|
var formattedValue = formatNumber(value, thousandSeparator, decimalSeparator, trimDecimals, decimalSpaces, format, shortenThreshold);
|
|
19920
19924
|
var formattedLongValue = formatNumber(value, thousandSeparator, decimalSeparator, trimDecimals, decimalSpaces, "long");
|
|
19921
19925
|
if (format === "short") {
|
|
@@ -19938,7 +19942,7 @@
|
|
|
19938
19942
|
});
|
|
19939
19943
|
DisplayNumber.displayName = "DisplayNumber";
|
|
19940
19944
|
|
|
19941
|
-
var _excluded$
|
|
19945
|
+
var _excluded$A = ["value", "variant", "currencyCode", "currencyPosition", "thousandSeparator", "decimalSeparator", "trimDecimals", "decimalSpaces", "format", "disableTooltip", "className", "as", "currencyClassName"];
|
|
19942
19946
|
var DisplayCurrency = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
19943
19947
|
var value = _ref.value,
|
|
19944
19948
|
_ref$variant = _ref.variant,
|
|
@@ -19963,7 +19967,7 @@
|
|
|
19963
19967
|
_ref$as = _ref.as,
|
|
19964
19968
|
as = _ref$as === void 0 ? "span" : _ref$as,
|
|
19965
19969
|
currencyClassName = _ref.currencyClassName,
|
|
19966
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
19970
|
+
rest = _objectWithoutProperties(_ref, _excluded$A);
|
|
19967
19971
|
var formattedValue = formatNumber(value, thousandSeparator, decimalSeparator, trimDecimals, decimalSpaces, "short", 10000);
|
|
19968
19972
|
var formattedLongValue = formatNumber(value, thousandSeparator, decimalSeparator, trimDecimals, decimalSpaces, "long", 10000);
|
|
19969
19973
|
if (format === "short") {
|
|
@@ -19994,7 +19998,7 @@
|
|
|
19994
19998
|
});
|
|
19995
19999
|
DisplayCurrency.displayName = "DisplayCurrency";
|
|
19996
20000
|
|
|
19997
|
-
var _excluded$
|
|
20001
|
+
var _excluded$z = ["value", "variant", "thousandSeparator", "decimalSeparator", "trimZeroMinutes", "trimDecimals", "decimalSpaces", "format", "disableTooltip", "className", "withLeadingZero", "as"];
|
|
19998
20002
|
var DisplayHours = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
19999
20003
|
var value = _ref.value,
|
|
20000
20004
|
_ref$variant = _ref.variant,
|
|
@@ -20017,7 +20021,7 @@
|
|
|
20017
20021
|
withLeadingZero = _ref.withLeadingZero,
|
|
20018
20022
|
_ref$as = _ref.as,
|
|
20019
20023
|
as = _ref$as === void 0 ? "span" : _ref$as,
|
|
20020
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
20024
|
+
rest = _objectWithoutProperties(_ref, _excluded$z);
|
|
20021
20025
|
var shouldDisplayShort = format === "short" && value >= 1000;
|
|
20022
20026
|
var longValue = formatHours(value, withLeadingZero, trimZeroMinutes, "long");
|
|
20023
20027
|
var shortValue = formatNumber(value, thousandSeparator, decimalSeparator, trimDecimals, decimalSpaces, "short");
|
|
@@ -20041,11 +20045,11 @@
|
|
|
20041
20045
|
});
|
|
20042
20046
|
DisplayHours.displayName = "DisplayHours";
|
|
20043
20047
|
|
|
20044
|
-
var _excluded$
|
|
20048
|
+
var _excluded$y = ["expanded"];
|
|
20045
20049
|
var ExpandAll = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
20046
20050
|
var _ref$expanded = _ref.expanded,
|
|
20047
20051
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
20048
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
20052
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
20049
20053
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpand, _extends({
|
|
20050
20054
|
ref: ref,
|
|
20051
20055
|
viewBox: "0 0 24 24"
|
|
@@ -20167,7 +20171,7 @@
|
|
|
20167
20171
|
});
|
|
20168
20172
|
StyledTextarea.displayName = "StyledTextarea";
|
|
20169
20173
|
|
|
20170
|
-
var _excluded$
|
|
20174
|
+
var _excluded$x = ["className", "disabled", "invalid", "mode"];
|
|
20171
20175
|
var Textarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
20172
20176
|
var className = _ref.className,
|
|
20173
20177
|
_ref$disabled = _ref.disabled,
|
|
@@ -20176,7 +20180,7 @@
|
|
|
20176
20180
|
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
20177
20181
|
_ref$mode = _ref.mode,
|
|
20178
20182
|
mode = _ref$mode === void 0 ? "outlined" : _ref$mode,
|
|
20179
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
20183
|
+
rest = _objectWithoutProperties(_ref, _excluded$x);
|
|
20180
20184
|
return /*#__PURE__*/React__default["default"].createElement(StyledTextarea, _extends({}, rest, {
|
|
20181
20185
|
$invalid: invalid,
|
|
20182
20186
|
ref: ref,
|
|
@@ -20282,7 +20286,7 @@
|
|
|
20282
20286
|
})(["@media (min-width:640px){display:none;}"]);
|
|
20283
20287
|
StyledHeader$1.displayName = "StyledHeader";
|
|
20284
20288
|
|
|
20285
|
-
var _excluded$
|
|
20289
|
+
var _excluded$w = ["children", "onClose", "controls", "open", "animation", "position", "mode", "disableFocusLock", "disableScrollLock", "disableBackgroundColor", "bodyStyle", "bodyClassName", "disableBackgroundClick"];
|
|
20286
20290
|
var Sheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
20287
20291
|
var children = _ref.children,
|
|
20288
20292
|
onClose = _ref.onClose,
|
|
@@ -20306,7 +20310,7 @@
|
|
|
20306
20310
|
bodyClassName = _ref.bodyClassName,
|
|
20307
20311
|
_ref$disableBackgroun2 = _ref.disableBackgroundClick,
|
|
20308
20312
|
disableBackgroundClick = _ref$disableBackgroun2 === void 0 ? false : _ref$disableBackgroun2,
|
|
20309
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
20313
|
+
rest = _objectWithoutProperties(_ref, _excluded$w);
|
|
20310
20314
|
var _useState = React.useState(defaultOpen),
|
|
20311
20315
|
_useState2 = _slicedToArray(_useState, 2),
|
|
20312
20316
|
open = _useState2[0],
|
|
@@ -20426,13 +20430,13 @@
|
|
|
20426
20430
|
});
|
|
20427
20431
|
StyledHeader.displayName = "StyledHeader";
|
|
20428
20432
|
|
|
20429
|
-
var _excluded$
|
|
20433
|
+
var _excluded$v = ["className", "size", "children"];
|
|
20430
20434
|
var Header = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
20431
20435
|
var className = _ref.className,
|
|
20432
20436
|
_ref$size = _ref.size,
|
|
20433
20437
|
size = _ref$size === void 0 ? "small" : _ref$size,
|
|
20434
20438
|
children = _ref.children,
|
|
20435
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
20439
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
20436
20440
|
return /*#__PURE__*/React__default["default"].createElement(StyledHeader, _extends({
|
|
20437
20441
|
type: "paper-2",
|
|
20438
20442
|
className: classNames__default["default"]("c-header", className),
|
|
@@ -20448,7 +20452,7 @@
|
|
|
20448
20452
|
})(["white-space:pre-wrap;overflow-wrap:break-word;resize:none;"]);
|
|
20449
20453
|
StyledAutoResizeTextarea.displayName = "StyledAutoResizeTextarea";
|
|
20450
20454
|
|
|
20451
|
-
var _excluded$
|
|
20455
|
+
var _excluded$u = ["minRows", "maxRows", "lineHeight", "onChange", "className", "preventNewRowOnEnter", "cursorAtTextEnd", "onKeyDown", "value", "mode"];
|
|
20452
20456
|
var AutoResizeTextarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
20453
20457
|
var _ref$minRows = _ref.minRows,
|
|
20454
20458
|
minRows = _ref$minRows === void 0 ? 1 : _ref$minRows,
|
|
@@ -20466,7 +20470,7 @@
|
|
|
20466
20470
|
value = _ref.value,
|
|
20467
20471
|
_ref$mode = _ref.mode,
|
|
20468
20472
|
mode = _ref$mode === void 0 ? "outlined" : _ref$mode,
|
|
20469
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
20473
|
+
rest = _objectWithoutProperties(_ref, _excluded$u);
|
|
20470
20474
|
var innerRef = React.useRef(null);
|
|
20471
20475
|
var _useState = React.useState(minRows),
|
|
20472
20476
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -20743,7 +20747,7 @@
|
|
|
20743
20747
|
});
|
|
20744
20748
|
StyledChoose$1.displayName = "StyledChoose";
|
|
20745
20749
|
|
|
20746
|
-
var _excluded$
|
|
20750
|
+
var _excluded$t = ["children", "disabled", "active", "className"];
|
|
20747
20751
|
/**
|
|
20748
20752
|
* Choose component
|
|
20749
20753
|
*/
|
|
@@ -20754,7 +20758,7 @@
|
|
|
20754
20758
|
_ref$active = _ref.active,
|
|
20755
20759
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
20756
20760
|
className = _ref.className,
|
|
20757
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
20761
|
+
args = _objectWithoutProperties(_ref, _excluded$t);
|
|
20758
20762
|
return /*#__PURE__*/React__default["default"].createElement(StyledChoose$1, _extends({
|
|
20759
20763
|
disabled: disabled,
|
|
20760
20764
|
className: classNames__default["default"]("c-choose", className),
|
|
@@ -20764,12 +20768,31 @@
|
|
|
20764
20768
|
Choose.displayName = "Choose";
|
|
20765
20769
|
|
|
20766
20770
|
var StyledChoose = styled__default["default"](Choose).withConfig({
|
|
20767
|
-
displayName: "
|
|
20768
|
-
componentId: "sc-
|
|
20769
|
-
})(["", ""], function (props) {
|
|
20771
|
+
displayName: "Styles__StyledChoose",
|
|
20772
|
+
componentId: "sc-uv67fb-0"
|
|
20773
|
+
})(["flex-shrink:0;white-space:nowrap;", ""], function (props) {
|
|
20770
20774
|
return !props.active && styled.css(["background-color:transparent !important;"]);
|
|
20771
20775
|
});
|
|
20772
|
-
|
|
20776
|
+
StyledChoose.displayName = "StyledChoose";
|
|
20777
|
+
var StyledVerticalContainer = styled__default["default"].div.withConfig({
|
|
20778
|
+
displayName: "Styles__StyledVerticalContainer",
|
|
20779
|
+
componentId: "sc-uv67fb-1"
|
|
20780
|
+
})(["display:flex;flex-direction:column;width:100%;gap:8px;"]);
|
|
20781
|
+
StyledVerticalContainer.displayName = "StyledVerticalContainer";
|
|
20782
|
+
var StyledRadioOption = styled__default["default"].div.withConfig({
|
|
20783
|
+
displayName: "Styles__StyledRadioOption",
|
|
20784
|
+
componentId: "sc-uv67fb-2"
|
|
20785
|
+
})(["display:flex;align-items:center;gap:6px;cursor:pointer;&:hover{opacity:0.8;}&[data-disabled=\"true\"]{opacity:0.5;cursor:not-allowed;}"]);
|
|
20786
|
+
StyledRadioOption.displayName = "StyledRadioOption";
|
|
20787
|
+
var StyledFlexContainer = styled__default["default"].div.withConfig({
|
|
20788
|
+
displayName: "Styles__StyledFlexContainer",
|
|
20789
|
+
componentId: "sc-uv67fb-3"
|
|
20790
|
+
})(["display:flex;width:100%;"]);
|
|
20791
|
+
StyledFlexContainer.displayName = "StyledFlexContainer";
|
|
20792
|
+
|
|
20793
|
+
var _excluded$s = ["required", "multiple", "invalid", "options", "selected", "onChange"];
|
|
20794
|
+
var ChooseV2 = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
20795
|
+
var _parentSize$width, _flexSize$width;
|
|
20773
20796
|
var _ref$required = _ref.required,
|
|
20774
20797
|
required = _ref$required === void 0 ? false : _ref$required,
|
|
20775
20798
|
_ref$multiple = _ref.multiple,
|
|
@@ -20778,25 +20801,98 @@
|
|
|
20778
20801
|
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
20779
20802
|
options = _ref.options,
|
|
20780
20803
|
selected = _ref.selected,
|
|
20781
|
-
onChange = _ref.onChange
|
|
20804
|
+
onChange = _ref.onChange,
|
|
20805
|
+
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
20806
|
+
var internalRef = React.useRef(null);
|
|
20807
|
+
var flexContainerRef = React.useRef(null);
|
|
20808
|
+
var handleRef = useForkRef(ref, internalRef);
|
|
20809
|
+
var _useState = React.useState(false),
|
|
20810
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
20811
|
+
useVerticalLayout = _useState2[0],
|
|
20812
|
+
setUseVerticalLayout = _useState2[1];
|
|
20813
|
+
var _useState3 = React.useState(false),
|
|
20814
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
20815
|
+
isReady = _useState4[0],
|
|
20816
|
+
setIsReady = _useState4[1];
|
|
20817
|
+
var parentSize = useResizeObserver$1(internalRef);
|
|
20818
|
+
var flexSize = useResizeObserver$1(flexContainerRef);
|
|
20819
|
+
var parentWidth = (_parentSize$width = parentSize === null || parentSize === void 0 ? void 0 : parentSize.width) !== null && _parentSize$width !== void 0 ? _parentSize$width : 0;
|
|
20820
|
+
var flexWidth = (_flexSize$width = flexSize === null || flexSize === void 0 ? void 0 : flexSize.width) !== null && _flexSize$width !== void 0 ? _flexSize$width : 0;
|
|
20821
|
+
React.useEffect(function () {
|
|
20822
|
+
if (parentWidth === 0) return;
|
|
20823
|
+
var measure = function measure() {
|
|
20824
|
+
var temp = document.createElement("div");
|
|
20825
|
+
temp.style.display = "inline-flex";
|
|
20826
|
+
temp.style.visibility = "hidden";
|
|
20827
|
+
temp.style.position = "absolute";
|
|
20828
|
+
temp.style.whiteSpace = "nowrap";
|
|
20829
|
+
temp.style.pointerEvents = "none";
|
|
20830
|
+
document.body.appendChild(temp);
|
|
20831
|
+
options.forEach(function (option) {
|
|
20832
|
+
var button = document.createElement("button");
|
|
20833
|
+
button.textContent = option.name;
|
|
20834
|
+
button.style.padding = "6px 12px";
|
|
20835
|
+
button.style.border = "1px solid transparent";
|
|
20836
|
+
button.style.marginRight = "4px";
|
|
20837
|
+
temp.appendChild(button);
|
|
20838
|
+
});
|
|
20839
|
+
var totalWidth = temp.offsetWidth + 8;
|
|
20840
|
+
document.body.removeChild(temp);
|
|
20841
|
+
setUseVerticalLayout(totalWidth > parentWidth);
|
|
20842
|
+
setIsReady(true);
|
|
20843
|
+
};
|
|
20844
|
+
requestAnimationFrame(measure);
|
|
20845
|
+
}, [parentWidth, options, flexWidth]);
|
|
20782
20846
|
var handleSelect = function handleSelect(id) {
|
|
20783
20847
|
if (multiple) {
|
|
20784
20848
|
var newSelected = selected.includes(id) ? selected.filter(function (s) {
|
|
20785
20849
|
return s !== id;
|
|
20786
20850
|
}) : [...selected, id];
|
|
20787
|
-
if (required && newSelected.length === 0)
|
|
20788
|
-
return;
|
|
20789
|
-
}
|
|
20851
|
+
if (required && newSelected.length === 0) return;
|
|
20790
20852
|
onChange(newSelected);
|
|
20791
20853
|
} else {
|
|
20792
|
-
if (required && selected.includes(id)) {
|
|
20793
|
-
return;
|
|
20794
|
-
}
|
|
20795
20854
|
var _newSelected = selected.includes(id) ? [] : [id];
|
|
20855
|
+
if (required && _newSelected.length === 0) return;
|
|
20796
20856
|
onChange(_newSelected);
|
|
20797
20857
|
}
|
|
20798
20858
|
};
|
|
20799
|
-
|
|
20859
|
+
var handleRadioChange = function handleRadioChange(id) {
|
|
20860
|
+
if (multiple) handleSelect(id);else onChange([id]);
|
|
20861
|
+
};
|
|
20862
|
+
if (!isReady) {
|
|
20863
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
20864
|
+
ref: handleRef,
|
|
20865
|
+
style: {
|
|
20866
|
+
width: "100%",
|
|
20867
|
+
minHeight: "32px"
|
|
20868
|
+
}
|
|
20869
|
+
});
|
|
20870
|
+
}
|
|
20871
|
+
return /*#__PURE__*/React__default["default"].createElement("div", _extends({
|
|
20872
|
+
ref: handleRef
|
|
20873
|
+
}, rest, {
|
|
20874
|
+
style: {
|
|
20875
|
+
display: "flex",
|
|
20876
|
+
width: "100%"
|
|
20877
|
+
}
|
|
20878
|
+
}), useVerticalLayout ? /*#__PURE__*/React__default["default"].createElement(StyledVerticalContainer, null, options.map(function (option) {
|
|
20879
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledRadioOption, {
|
|
20880
|
+
key: option.id,
|
|
20881
|
+
"data-disabled": option.disabled,
|
|
20882
|
+
onClick: function onClick() {
|
|
20883
|
+
return !option.disabled && handleRadioChange(option.id);
|
|
20884
|
+
}
|
|
20885
|
+
}, /*#__PURE__*/React__default["default"].createElement(RadioButton, {
|
|
20886
|
+
checked: selected.includes(option.id),
|
|
20887
|
+
disabled: option.disabled,
|
|
20888
|
+
onChange: function onChange() {
|
|
20889
|
+
return !option.disabled && handleRadioChange(option.id);
|
|
20890
|
+
},
|
|
20891
|
+
name: multiple ? "choose-v2-".concat(option.id) : "choose-v2-group"
|
|
20892
|
+
}), /*#__PURE__*/React__default["default"].createElement(Body2, null, option.name));
|
|
20893
|
+
})) : /*#__PURE__*/React__default["default"].createElement(StyledFlexContainer, {
|
|
20894
|
+
ref: flexContainerRef
|
|
20895
|
+
}, /*#__PURE__*/React__default["default"].createElement(ButtonGroup, {
|
|
20800
20896
|
invalid: invalid
|
|
20801
20897
|
}, options.map(function (option) {
|
|
20802
20898
|
return /*#__PURE__*/React__default["default"].createElement(StyledChoose, {
|
|
@@ -20807,8 +20903,9 @@
|
|
|
20807
20903
|
return handleSelect(option.id);
|
|
20808
20904
|
}
|
|
20809
20905
|
}, option.name);
|
|
20810
|
-
}));
|
|
20811
|
-
};
|
|
20906
|
+
}))));
|
|
20907
|
+
});
|
|
20908
|
+
ChooseV2.displayName = "ChooseV2";
|
|
20812
20909
|
|
|
20813
20910
|
var StyledLinkElement = styled__default["default"].div.withConfig({
|
|
20814
20911
|
displayName: "Styles__StyledLinkElement",
|