@activecollab/components 2.0.371 → 2.0.372
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Icons/collection/ConnectionIcon.js +9 -17
- package/dist/cjs/components/Icons/collection/ConnectionIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/ShapesIcon.js +61 -0
- package/dist/cjs/components/Icons/collection/ShapesIcon.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +7 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/cjs/components/StackedCard/Styles.js +2 -2
- package/dist/cjs/components/StackedCard/Styles.js.map +1 -1
- package/dist/cjs/presentation/stackedCard/content/LinkCard.js +35 -22
- package/dist/cjs/presentation/stackedCard/content/LinkCard.js.map +1 -1
- package/dist/esm/components/Icons/collection/ConnectionIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/ConnectionIcon.js +9 -17
- package/dist/esm/components/Icons/collection/ConnectionIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/ShapesIcon.d.ts +32 -0
- package/dist/esm/components/Icons/collection/ShapesIcon.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/ShapesIcon.js +54 -0
- package/dist/esm/components/Icons/collection/ShapesIcon.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +1 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/StackedCard/Styles.d.ts.map +1 -1
- package/dist/esm/components/StackedCard/Styles.js +2 -2
- package/dist/esm/components/StackedCard/Styles.js.map +1 -1
- package/dist/esm/presentation/stackedCard/content/LinkCard.d.ts.map +1 -1
- package/dist/esm/presentation/stackedCard/content/LinkCard.js +35 -20
- package/dist/esm/presentation/stackedCard/content/LinkCard.js.map +1 -1
- package/dist/index.js +490 -447
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
})(["display:inline-flex;svg{margin:0 4px;}"]);
|
|
190
190
|
StyledButtonElement.displayName = "StyledButtonElement";
|
|
191
191
|
|
|
192
|
-
var _excluded$
|
|
192
|
+
var _excluded$5p = ["children", "active", "variant", "size", "className"];
|
|
193
193
|
/**
|
|
194
194
|
* @component Button
|
|
195
195
|
* @description
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
_ref$size = _ref.size,
|
|
220
220
|
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
221
221
|
className = _ref.className,
|
|
222
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
222
|
+
args = _objectWithoutProperties(_ref, _excluded$5p);
|
|
223
223
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton$2, _extends({
|
|
224
224
|
className: classNames__default["default"]("c-btn", className, {
|
|
225
225
|
"c-btn--contained": variant === "primary" || variant === "contained",
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
})));
|
|
285
285
|
};
|
|
286
286
|
|
|
287
|
-
var _excluded$
|
|
287
|
+
var _excluded$5o = ["gradient"];
|
|
288
288
|
|
|
289
289
|
/**
|
|
290
290
|
* @component AddCrossTinyIcon
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
*/
|
|
315
315
|
var AddCrossTinyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
316
316
|
var gradient = _ref.gradient,
|
|
317
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
317
|
+
props = _objectWithoutProperties(_ref, _excluded$5o);
|
|
318
318
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
319
319
|
xmlns: "http://www.w3.org/2000/svg",
|
|
320
320
|
width: 24,
|
|
@@ -334,12 +334,12 @@
|
|
|
334
334
|
AddCrossTinyIcon.displayName = "AddCrossTinyIcon";
|
|
335
335
|
var AddCrossTinyIcon$1 = AddCrossTinyIcon;
|
|
336
336
|
|
|
337
|
-
var _excluded$
|
|
337
|
+
var _excluded$5n = ["className", "disabled"];
|
|
338
338
|
var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
339
339
|
var className = _ref.className,
|
|
340
340
|
_ref$disabled = _ref.disabled,
|
|
341
341
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
342
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
342
|
+
rest = _objectWithoutProperties(_ref, _excluded$5n);
|
|
343
343
|
return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
|
|
344
344
|
ref: ref,
|
|
345
345
|
variant: "contained",
|
|
@@ -377,12 +377,12 @@
|
|
|
377
377
|
});
|
|
378
378
|
StyledButtonGroup$1.displayName = "StyledButtonGroup";
|
|
379
379
|
|
|
380
|
-
var _excluded$
|
|
380
|
+
var _excluded$5m = ["children", "className", "invalid"];
|
|
381
381
|
var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
382
382
|
var children = _ref.children,
|
|
383
383
|
className = _ref.className,
|
|
384
384
|
invalid = _ref.invalid,
|
|
385
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
385
|
+
rest = _objectWithoutProperties(_ref, _excluded$5m);
|
|
386
386
|
return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
|
|
387
387
|
ref: ref,
|
|
388
388
|
className: classNames__default["default"]("c-btn-group", className),
|
|
@@ -407,11 +407,11 @@
|
|
|
407
407
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
408
408
|
StyledListSeparator$1.displayName = "StyledListSeparator";
|
|
409
409
|
|
|
410
|
-
var _excluded$
|
|
410
|
+
var _excluded$5l = ["children", "className"];
|
|
411
411
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
412
412
|
var children = _ref.children,
|
|
413
413
|
className = _ref.className,
|
|
414
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
414
|
+
props = _objectWithoutProperties(_ref, _excluded$5l);
|
|
415
415
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem$1, _extends({
|
|
416
416
|
className: classNames__default["default"]("c-list-item", className),
|
|
417
417
|
ref: ref,
|
|
@@ -420,21 +420,21 @@
|
|
|
420
420
|
});
|
|
421
421
|
ListItem.displayName = "ListItem";
|
|
422
422
|
|
|
423
|
-
var _excluded$
|
|
423
|
+
var _excluded$5k = ["className"];
|
|
424
424
|
var ListSeparator = function ListSeparator(_ref) {
|
|
425
425
|
var className = _ref.className,
|
|
426
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
426
|
+
props = _objectWithoutProperties(_ref, _excluded$5k);
|
|
427
427
|
return /*#__PURE__*/React__default["default"].createElement(StyledListSeparator$1, _extends({
|
|
428
428
|
className: classNames__default["default"]("c-list-separator", className)
|
|
429
429
|
}, props));
|
|
430
430
|
};
|
|
431
431
|
ListSeparator.displayName = "ListSeparator";
|
|
432
432
|
|
|
433
|
-
var _excluded$
|
|
433
|
+
var _excluded$5j = ["children", "className"];
|
|
434
434
|
var _List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
435
435
|
var children = _ref.children,
|
|
436
436
|
className = _ref.className,
|
|
437
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
437
|
+
props = _objectWithoutProperties(_ref, _excluded$5j);
|
|
438
438
|
return /*#__PURE__*/React__default["default"].createElement(StyledList$1, _extends({
|
|
439
439
|
className: className,
|
|
440
440
|
ref: ref,
|
|
@@ -950,7 +950,7 @@
|
|
|
950
950
|
return size === "big" && styled.css(["width:40px;"]);
|
|
951
951
|
});
|
|
952
952
|
|
|
953
|
-
var _excluded$
|
|
953
|
+
var _excluded$5i = ["children", "className", "variant", "size", "active"];
|
|
954
954
|
|
|
955
955
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
956
956
|
|
|
@@ -980,7 +980,7 @@
|
|
|
980
980
|
variant = _ref.variant,
|
|
981
981
|
size = _ref.size,
|
|
982
982
|
active = _ref.active,
|
|
983
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
983
|
+
args = _objectWithoutProperties(_ref, _excluded$5i);
|
|
984
984
|
return /*#__PURE__*/React__default["default"].createElement(StyledIconButton$1, _extends({
|
|
985
985
|
className: className,
|
|
986
986
|
variant: variant,
|
|
@@ -991,7 +991,7 @@
|
|
|
991
991
|
});
|
|
992
992
|
IconButton.displayName = "IconButton";
|
|
993
993
|
|
|
994
|
-
var _excluded$
|
|
994
|
+
var _excluded$5h = ["gradient"];
|
|
995
995
|
|
|
996
996
|
/**
|
|
997
997
|
* @component RecurringIcon
|
|
@@ -1021,7 +1021,7 @@
|
|
|
1021
1021
|
*/
|
|
1022
1022
|
var RecurringIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1023
1023
|
var gradient = _ref.gradient,
|
|
1024
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1024
|
+
props = _objectWithoutProperties(_ref, _excluded$5h);
|
|
1025
1025
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1026
1026
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1027
1027
|
width: 18,
|
|
@@ -1042,7 +1042,7 @@
|
|
|
1042
1042
|
RecurringIcon.displayName = "RecurringIcon";
|
|
1043
1043
|
var RecurringIcon$1 = RecurringIcon;
|
|
1044
1044
|
|
|
1045
|
-
var _excluded$
|
|
1045
|
+
var _excluded$5g = ["gradient"];
|
|
1046
1046
|
|
|
1047
1047
|
/**
|
|
1048
1048
|
* @component AccessLogIcon
|
|
@@ -1072,7 +1072,7 @@
|
|
|
1072
1072
|
*/
|
|
1073
1073
|
var AccessLogIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1074
1074
|
var gradient = _ref.gradient,
|
|
1075
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1075
|
+
props = _objectWithoutProperties(_ref, _excluded$5g);
|
|
1076
1076
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1077
1077
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1078
1078
|
width: 24,
|
|
@@ -1100,7 +1100,7 @@
|
|
|
1100
1100
|
AccessLogIcon.displayName = "AccessLogIcon";
|
|
1101
1101
|
var AccessLogIcon$1 = AccessLogIcon;
|
|
1102
1102
|
|
|
1103
|
-
var _excluded$
|
|
1103
|
+
var _excluded$5f = ["gradient"];
|
|
1104
1104
|
|
|
1105
1105
|
/**
|
|
1106
1106
|
* @component ActivityIcon
|
|
@@ -1130,7 +1130,7 @@
|
|
|
1130
1130
|
*/
|
|
1131
1131
|
var ActivityIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1132
1132
|
var gradient = _ref.gradient,
|
|
1133
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1133
|
+
props = _objectWithoutProperties(_ref, _excluded$5f);
|
|
1134
1134
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1135
1135
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1136
1136
|
width: 24,
|
|
@@ -1154,7 +1154,7 @@
|
|
|
1154
1154
|
ActivityIcon.displayName = "ActivityIcon";
|
|
1155
1155
|
var ActivityIcon$1 = ActivityIcon;
|
|
1156
1156
|
|
|
1157
|
-
var _excluded$
|
|
1157
|
+
var _excluded$5e = ["gradient"];
|
|
1158
1158
|
|
|
1159
1159
|
/**
|
|
1160
1160
|
* @component AddCrossIcon
|
|
@@ -1184,7 +1184,7 @@
|
|
|
1184
1184
|
*/
|
|
1185
1185
|
var AddCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1186
1186
|
var gradient = _ref.gradient,
|
|
1187
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1187
|
+
props = _objectWithoutProperties(_ref, _excluded$5e);
|
|
1188
1188
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1189
1189
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1190
1190
|
width: 10,
|
|
@@ -1204,7 +1204,7 @@
|
|
|
1204
1204
|
AddCrossIcon.displayName = "AddCrossIcon";
|
|
1205
1205
|
var AddCrossIcon$1 = AddCrossIcon;
|
|
1206
1206
|
|
|
1207
|
-
var _excluded$
|
|
1207
|
+
var _excluded$5d = ["gradient"];
|
|
1208
1208
|
|
|
1209
1209
|
/**
|
|
1210
1210
|
* @component ArchiveIcon
|
|
@@ -1234,7 +1234,7 @@
|
|
|
1234
1234
|
*/
|
|
1235
1235
|
var ArchiveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1236
1236
|
var gradient = _ref.gradient,
|
|
1237
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1237
|
+
props = _objectWithoutProperties(_ref, _excluded$5d);
|
|
1238
1238
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1239
1239
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1240
1240
|
width: 24,
|
|
@@ -1255,7 +1255,7 @@
|
|
|
1255
1255
|
ArchiveIcon.displayName = "ArchiveIcon";
|
|
1256
1256
|
var ArchiveIcon$1 = ArchiveIcon;
|
|
1257
1257
|
|
|
1258
|
-
var _excluded$
|
|
1258
|
+
var _excluded$5c = ["gradient"];
|
|
1259
1259
|
|
|
1260
1260
|
/**
|
|
1261
1261
|
* @component ArrowBackMobileIcon
|
|
@@ -1285,7 +1285,7 @@
|
|
|
1285
1285
|
*/
|
|
1286
1286
|
var ArrowBackMobileIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1287
1287
|
var gradient = _ref.gradient,
|
|
1288
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1288
|
+
props = _objectWithoutProperties(_ref, _excluded$5c);
|
|
1289
1289
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1290
1290
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1291
1291
|
width: 24,
|
|
@@ -1306,7 +1306,7 @@
|
|
|
1306
1306
|
ArrowBackMobileIcon.displayName = "ArrowBackMobileIcon";
|
|
1307
1307
|
var ArrowBackMobileIcon$1 = ArrowBackMobileIcon;
|
|
1308
1308
|
|
|
1309
|
-
var _excluded$
|
|
1309
|
+
var _excluded$5b = ["gradient"];
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
1312
|
* @component ArrowCollapseMultipleIcon
|
|
@@ -1336,7 +1336,7 @@
|
|
|
1336
1336
|
*/
|
|
1337
1337
|
var ArrowCollapseMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1338
1338
|
var gradient = _ref.gradient,
|
|
1339
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1339
|
+
props = _objectWithoutProperties(_ref, _excluded$5b);
|
|
1340
1340
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1341
1341
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1342
1342
|
width: 24,
|
|
@@ -1356,7 +1356,7 @@
|
|
|
1356
1356
|
ArrowCollapseMultipleIcon.displayName = "ArrowCollapseMultipleIcon";
|
|
1357
1357
|
var ArrowCollapseMultipleIcon$1 = ArrowCollapseMultipleIcon;
|
|
1358
1358
|
|
|
1359
|
-
var _excluded$
|
|
1359
|
+
var _excluded$5a = ["gradient"];
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
1362
|
* @component ArrowDownLongIcon
|
|
@@ -1386,7 +1386,7 @@
|
|
|
1386
1386
|
*/
|
|
1387
1387
|
var ArrowDownLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1388
1388
|
var gradient = _ref.gradient,
|
|
1389
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1389
|
+
props = _objectWithoutProperties(_ref, _excluded$5a);
|
|
1390
1390
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1391
1391
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1392
1392
|
width: 24,
|
|
@@ -1406,7 +1406,7 @@
|
|
|
1406
1406
|
ArrowDownLongIcon.displayName = "ArrowDownLongIcon";
|
|
1407
1407
|
var ArrowDownLongIcon$1 = ArrowDownLongIcon;
|
|
1408
1408
|
|
|
1409
|
-
var _excluded$
|
|
1409
|
+
var _excluded$59 = ["gradient"];
|
|
1410
1410
|
|
|
1411
1411
|
/**
|
|
1412
1412
|
* @component ArrowDownSmallIcon
|
|
@@ -1436,7 +1436,7 @@
|
|
|
1436
1436
|
*/
|
|
1437
1437
|
var ArrowDownSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1438
1438
|
var gradient = _ref.gradient,
|
|
1439
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1439
|
+
props = _objectWithoutProperties(_ref, _excluded$59);
|
|
1440
1440
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1441
1441
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1442
1442
|
width: 16,
|
|
@@ -1456,7 +1456,7 @@
|
|
|
1456
1456
|
ArrowDownSmallIcon.displayName = "ArrowDownSmallIcon";
|
|
1457
1457
|
var ArrowDownSmallIcon$1 = ArrowDownSmallIcon;
|
|
1458
1458
|
|
|
1459
|
-
var _excluded$
|
|
1459
|
+
var _excluded$58 = ["gradient"];
|
|
1460
1460
|
|
|
1461
1461
|
/**
|
|
1462
1462
|
* @component ArrowDownIcon
|
|
@@ -1486,7 +1486,7 @@
|
|
|
1486
1486
|
*/
|
|
1487
1487
|
var ArrowDownIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1488
1488
|
var gradient = _ref.gradient,
|
|
1489
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1489
|
+
props = _objectWithoutProperties(_ref, _excluded$58);
|
|
1490
1490
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1491
1491
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1492
1492
|
width: 24,
|
|
@@ -1505,7 +1505,7 @@
|
|
|
1505
1505
|
ArrowDownIcon.displayName = "ArrowDownIcon";
|
|
1506
1506
|
var ArrowDownIcon$1 = ArrowDownIcon;
|
|
1507
1507
|
|
|
1508
|
-
var _excluded$
|
|
1508
|
+
var _excluded$57 = ["gradient"];
|
|
1509
1509
|
|
|
1510
1510
|
/**
|
|
1511
1511
|
* @component ArrowExpandeMultipleIcon
|
|
@@ -1535,7 +1535,7 @@
|
|
|
1535
1535
|
*/
|
|
1536
1536
|
var ArrowExpandeMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1537
1537
|
var gradient = _ref.gradient,
|
|
1538
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1538
|
+
props = _objectWithoutProperties(_ref, _excluded$57);
|
|
1539
1539
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1540
1540
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1541
1541
|
width: 24,
|
|
@@ -1555,7 +1555,7 @@
|
|
|
1555
1555
|
ArrowExpandeMultipleIcon.displayName = "ArrowExpandeMultipleIcon";
|
|
1556
1556
|
var ArrowExpandeMultipleIcon$1 = ArrowExpandeMultipleIcon;
|
|
1557
1557
|
|
|
1558
|
-
var _excluded$
|
|
1558
|
+
var _excluded$56 = ["gradient"];
|
|
1559
1559
|
|
|
1560
1560
|
/**
|
|
1561
1561
|
* @component ArrowLeftBoxIcon
|
|
@@ -1585,7 +1585,7 @@
|
|
|
1585
1585
|
*/
|
|
1586
1586
|
var ArrowLeftBoxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1587
1587
|
var gradient = _ref.gradient,
|
|
1588
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1588
|
+
props = _objectWithoutProperties(_ref, _excluded$56);
|
|
1589
1589
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1590
1590
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1591
1591
|
width: 24,
|
|
@@ -1605,7 +1605,7 @@
|
|
|
1605
1605
|
ArrowLeftBoxIcon.displayName = "ArrowLeftBoxIcon";
|
|
1606
1606
|
var ArrowLeftBoxIcon$1 = ArrowLeftBoxIcon;
|
|
1607
1607
|
|
|
1608
|
-
var _excluded$
|
|
1608
|
+
var _excluded$55 = ["gradient"];
|
|
1609
1609
|
|
|
1610
1610
|
/**
|
|
1611
1611
|
* @component ArrowLeftIcon
|
|
@@ -1635,7 +1635,7 @@
|
|
|
1635
1635
|
*/
|
|
1636
1636
|
var ArrowLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1637
1637
|
var gradient = _ref.gradient,
|
|
1638
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1638
|
+
props = _objectWithoutProperties(_ref, _excluded$55);
|
|
1639
1639
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1640
1640
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1641
1641
|
width: 24,
|
|
@@ -1655,7 +1655,7 @@
|
|
|
1655
1655
|
ArrowLeftIcon.displayName = "ArrowLeftIcon";
|
|
1656
1656
|
var ArrowLeftIcon$1 = ArrowLeftIcon;
|
|
1657
1657
|
|
|
1658
|
-
var _excluded$
|
|
1658
|
+
var _excluded$54 = ["gradient"];
|
|
1659
1659
|
|
|
1660
1660
|
/**
|
|
1661
1661
|
* @component ArrowRefreshIcon
|
|
@@ -1685,7 +1685,7 @@
|
|
|
1685
1685
|
*/
|
|
1686
1686
|
var ArrowRefreshIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1687
1687
|
var gradient = _ref.gradient,
|
|
1688
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1688
|
+
props = _objectWithoutProperties(_ref, _excluded$54);
|
|
1689
1689
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1690
1690
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1691
1691
|
width: 24,
|
|
@@ -1706,7 +1706,7 @@
|
|
|
1706
1706
|
ArrowRefreshIcon.displayName = "ArrowRefreshIcon";
|
|
1707
1707
|
var ArrowRefreshIcon$1 = ArrowRefreshIcon;
|
|
1708
1708
|
|
|
1709
|
-
var _excluded$
|
|
1709
|
+
var _excluded$53 = ["gradient"];
|
|
1710
1710
|
|
|
1711
1711
|
/**
|
|
1712
1712
|
* @component ArrowRestoreIcon
|
|
@@ -1736,7 +1736,7 @@
|
|
|
1736
1736
|
*/
|
|
1737
1737
|
var ArrowRestoreIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1738
1738
|
var gradient = _ref.gradient,
|
|
1739
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1739
|
+
props = _objectWithoutProperties(_ref, _excluded$53);
|
|
1740
1740
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1741
1741
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1742
1742
|
width: 24,
|
|
@@ -1756,7 +1756,7 @@
|
|
|
1756
1756
|
ArrowRestoreIcon.displayName = "ArrowRestoreIcon";
|
|
1757
1757
|
var ArrowRestoreIcon$1 = ArrowRestoreIcon;
|
|
1758
1758
|
|
|
1759
|
-
var _excluded$
|
|
1759
|
+
var _excluded$52 = ["gradient"];
|
|
1760
1760
|
|
|
1761
1761
|
/**
|
|
1762
1762
|
* @component ArrowRightIcon
|
|
@@ -1786,7 +1786,7 @@
|
|
|
1786
1786
|
*/
|
|
1787
1787
|
var ArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1788
1788
|
var gradient = _ref.gradient,
|
|
1789
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1789
|
+
props = _objectWithoutProperties(_ref, _excluded$52);
|
|
1790
1790
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1791
1791
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1792
1792
|
width: 24,
|
|
@@ -1806,7 +1806,7 @@
|
|
|
1806
1806
|
ArrowRightIcon.displayName = "ArrowRightIcon";
|
|
1807
1807
|
var ArrowRightIcon$1 = ArrowRightIcon;
|
|
1808
1808
|
|
|
1809
|
-
var _excluded$
|
|
1809
|
+
var _excluded$51 = ["gradient"];
|
|
1810
1810
|
|
|
1811
1811
|
/**
|
|
1812
1812
|
* @component ArrowUpLongIcon
|
|
@@ -1836,7 +1836,7 @@
|
|
|
1836
1836
|
*/
|
|
1837
1837
|
var ArrowUpLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1838
1838
|
var gradient = _ref.gradient,
|
|
1839
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1839
|
+
props = _objectWithoutProperties(_ref, _excluded$51);
|
|
1840
1840
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1841
1841
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1842
1842
|
width: 24,
|
|
@@ -1856,7 +1856,7 @@
|
|
|
1856
1856
|
ArrowUpLongIcon.displayName = "ArrowUpLongIcon";
|
|
1857
1857
|
var ArrowUpLongIcon$1 = ArrowUpLongIcon;
|
|
1858
1858
|
|
|
1859
|
-
var _excluded$
|
|
1859
|
+
var _excluded$50 = ["gradient"];
|
|
1860
1860
|
|
|
1861
1861
|
/**
|
|
1862
1862
|
* @component ArrowUpIcon
|
|
@@ -1886,7 +1886,7 @@
|
|
|
1886
1886
|
*/
|
|
1887
1887
|
var ArrowUpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1888
1888
|
var gradient = _ref.gradient,
|
|
1889
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1889
|
+
props = _objectWithoutProperties(_ref, _excluded$50);
|
|
1890
1890
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1891
1891
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1892
1892
|
width: 24,
|
|
@@ -1905,7 +1905,7 @@
|
|
|
1905
1905
|
ArrowUpIcon.displayName = "ArrowUpIcon";
|
|
1906
1906
|
var ArrowUpIcon$1 = ArrowUpIcon;
|
|
1907
1907
|
|
|
1908
|
-
var _excluded$
|
|
1908
|
+
var _excluded$4$ = ["gradient"];
|
|
1909
1909
|
|
|
1910
1910
|
/**
|
|
1911
1911
|
* @component AssignIcon
|
|
@@ -1935,7 +1935,7 @@
|
|
|
1935
1935
|
*/
|
|
1936
1936
|
var AssignIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1937
1937
|
var gradient = _ref.gradient,
|
|
1938
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1938
|
+
props = _objectWithoutProperties(_ref, _excluded$4$);
|
|
1939
1939
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1940
1940
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1941
1941
|
width: 24,
|
|
@@ -1955,7 +1955,7 @@
|
|
|
1955
1955
|
AssignIcon.displayName = "AssignIcon";
|
|
1956
1956
|
var AssignIcon$1 = AssignIcon;
|
|
1957
1957
|
|
|
1958
|
-
var _excluded$
|
|
1958
|
+
var _excluded$4_ = ["gradient"];
|
|
1959
1959
|
|
|
1960
1960
|
/**
|
|
1961
1961
|
* @component AttachmentIcon
|
|
@@ -1985,7 +1985,7 @@
|
|
|
1985
1985
|
*/
|
|
1986
1986
|
var AttachmentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1987
1987
|
var gradient = _ref.gradient,
|
|
1988
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1988
|
+
props = _objectWithoutProperties(_ref, _excluded$4_);
|
|
1989
1989
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1990
1990
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1991
1991
|
width: 24,
|
|
@@ -2005,7 +2005,7 @@
|
|
|
2005
2005
|
AttachmentIcon.displayName = "AttachmentIcon";
|
|
2006
2006
|
var AttachmentIcon$1 = AttachmentIcon;
|
|
2007
2007
|
|
|
2008
|
-
var _excluded$
|
|
2008
|
+
var _excluded$4Z = ["gradient"];
|
|
2009
2009
|
|
|
2010
2010
|
/**
|
|
2011
2011
|
* @component BellOffSmallIcon
|
|
@@ -2035,7 +2035,7 @@
|
|
|
2035
2035
|
*/
|
|
2036
2036
|
var BellOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2037
2037
|
var gradient = _ref.gradient,
|
|
2038
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2038
|
+
props = _objectWithoutProperties(_ref, _excluded$4Z);
|
|
2039
2039
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2040
2040
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2041
2041
|
width: 12,
|
|
@@ -2055,7 +2055,7 @@
|
|
|
2055
2055
|
BellOffSmallIcon.displayName = "BellOffSmallIcon";
|
|
2056
2056
|
var BellOffSmallIcon$1 = BellOffSmallIcon;
|
|
2057
2057
|
|
|
2058
|
-
var _excluded$
|
|
2058
|
+
var _excluded$4Y = ["gradient"];
|
|
2059
2059
|
|
|
2060
2060
|
/**
|
|
2061
2061
|
* @component BellOffIcon
|
|
@@ -2085,7 +2085,7 @@
|
|
|
2085
2085
|
*/
|
|
2086
2086
|
var BellOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2087
2087
|
var gradient = _ref.gradient,
|
|
2088
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2088
|
+
props = _objectWithoutProperties(_ref, _excluded$4Y);
|
|
2089
2089
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2090
2090
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2091
2091
|
width: 24,
|
|
@@ -2105,7 +2105,7 @@
|
|
|
2105
2105
|
BellOffIcon.displayName = "BellOffIcon";
|
|
2106
2106
|
var BellOffIcon$1 = BellOffIcon;
|
|
2107
2107
|
|
|
2108
|
-
var _excluded$
|
|
2108
|
+
var _excluded$4X = ["gradient"];
|
|
2109
2109
|
|
|
2110
2110
|
/**
|
|
2111
2111
|
* @component BillingIcon
|
|
@@ -2135,7 +2135,7 @@
|
|
|
2135
2135
|
*/
|
|
2136
2136
|
var BillingIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2137
2137
|
var gradient = _ref.gradient,
|
|
2138
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2138
|
+
props = _objectWithoutProperties(_ref, _excluded$4X);
|
|
2139
2139
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2140
2140
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2141
2141
|
width: 24,
|
|
@@ -2158,7 +2158,7 @@
|
|
|
2158
2158
|
BillingIcon.displayName = "BillingIcon";
|
|
2159
2159
|
var BillingIcon$1 = BillingIcon;
|
|
2160
2160
|
|
|
2161
|
-
var _excluded$
|
|
2161
|
+
var _excluded$4W = ["gradient"];
|
|
2162
2162
|
|
|
2163
2163
|
/**
|
|
2164
2164
|
* @component BudgetAlertIcon
|
|
@@ -2188,7 +2188,7 @@
|
|
|
2188
2188
|
*/
|
|
2189
2189
|
var BudgetAlertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2190
2190
|
var gradient = _ref.gradient,
|
|
2191
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2191
|
+
props = _objectWithoutProperties(_ref, _excluded$4W);
|
|
2192
2192
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2193
2193
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2194
2194
|
width: 24,
|
|
@@ -2208,7 +2208,7 @@
|
|
|
2208
2208
|
BudgetAlertIcon.displayName = "BudgetAlertIcon";
|
|
2209
2209
|
var BudgetAlertIcon$1 = BudgetAlertIcon;
|
|
2210
2210
|
|
|
2211
|
-
var _excluded$
|
|
2211
|
+
var _excluded$4V = ["gradient"];
|
|
2212
2212
|
|
|
2213
2213
|
/**
|
|
2214
2214
|
* @component BulbIcon
|
|
@@ -2238,7 +2238,7 @@
|
|
|
2238
2238
|
*/
|
|
2239
2239
|
var BulbIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2240
2240
|
var gradient = _ref.gradient,
|
|
2241
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2241
|
+
props = _objectWithoutProperties(_ref, _excluded$4V);
|
|
2242
2242
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2243
2243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2244
2244
|
width: 16,
|
|
@@ -2257,7 +2257,7 @@
|
|
|
2257
2257
|
BulbIcon.displayName = "BulbIcon";
|
|
2258
2258
|
var BulbIcon$1 = BulbIcon;
|
|
2259
2259
|
|
|
2260
|
-
var _excluded$
|
|
2260
|
+
var _excluded$4U = ["gradient"];
|
|
2261
2261
|
|
|
2262
2262
|
/**
|
|
2263
2263
|
* @component CalendarAddXIcon
|
|
@@ -2287,7 +2287,7 @@
|
|
|
2287
2287
|
*/
|
|
2288
2288
|
var CalendarAddXIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2289
2289
|
var gradient = _ref.gradient,
|
|
2290
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2290
|
+
props = _objectWithoutProperties(_ref, _excluded$4U);
|
|
2291
2291
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2292
2292
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2293
2293
|
width: 24,
|
|
@@ -2307,7 +2307,7 @@
|
|
|
2307
2307
|
CalendarAddXIcon.displayName = "CalendarAddXIcon";
|
|
2308
2308
|
var CalendarAddXIcon$1 = CalendarAddXIcon;
|
|
2309
2309
|
|
|
2310
|
-
var _excluded$
|
|
2310
|
+
var _excluded$4T = ["gradient"];
|
|
2311
2311
|
|
|
2312
2312
|
/**
|
|
2313
2313
|
* @component CalendarImportIcon
|
|
@@ -2337,7 +2337,7 @@
|
|
|
2337
2337
|
*/
|
|
2338
2338
|
var CalendarImportIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2339
2339
|
var gradient = _ref.gradient,
|
|
2340
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2340
|
+
props = _objectWithoutProperties(_ref, _excluded$4T);
|
|
2341
2341
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2342
2342
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2343
2343
|
width: 18,
|
|
@@ -2360,7 +2360,7 @@
|
|
|
2360
2360
|
CalendarImportIcon.displayName = "CalendarImportIcon";
|
|
2361
2361
|
var CalendarImportIcon$1 = CalendarImportIcon;
|
|
2362
2362
|
|
|
2363
|
-
var _excluded$
|
|
2363
|
+
var _excluded$4S = ["gradient"];
|
|
2364
2364
|
|
|
2365
2365
|
/**
|
|
2366
2366
|
* @component CalendarIcon
|
|
@@ -2390,7 +2390,7 @@
|
|
|
2390
2390
|
*/
|
|
2391
2391
|
var CalendarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2392
2392
|
var gradient = _ref.gradient,
|
|
2393
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2393
|
+
props = _objectWithoutProperties(_ref, _excluded$4S);
|
|
2394
2394
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2395
2395
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2396
2396
|
width: 24,
|
|
@@ -2410,7 +2410,7 @@
|
|
|
2410
2410
|
CalendarIcon.displayName = "CalendarIcon";
|
|
2411
2411
|
var CalendarIcon$1 = CalendarIcon;
|
|
2412
2412
|
|
|
2413
|
-
var _excluded$
|
|
2413
|
+
var _excluded$4R = ["gradient"];
|
|
2414
2414
|
|
|
2415
2415
|
/**
|
|
2416
2416
|
* @component CancelCrossIcon
|
|
@@ -2440,7 +2440,7 @@
|
|
|
2440
2440
|
*/
|
|
2441
2441
|
var CancelCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2442
2442
|
var gradient = _ref.gradient,
|
|
2443
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2443
|
+
props = _objectWithoutProperties(_ref, _excluded$4R);
|
|
2444
2444
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2445
2445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2446
2446
|
width: 24,
|
|
@@ -2460,7 +2460,7 @@
|
|
|
2460
2460
|
CancelCrossIcon.displayName = "CancelCrossIcon";
|
|
2461
2461
|
var CancelCrossIcon$1 = CancelCrossIcon;
|
|
2462
2462
|
|
|
2463
|
-
var _excluded$
|
|
2463
|
+
var _excluded$4Q = ["gradient"];
|
|
2464
2464
|
|
|
2465
2465
|
/**
|
|
2466
2466
|
* @component CaretLeftIcon
|
|
@@ -2490,7 +2490,7 @@
|
|
|
2490
2490
|
*/
|
|
2491
2491
|
var CaretLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2492
2492
|
var gradient = _ref.gradient,
|
|
2493
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2493
|
+
props = _objectWithoutProperties(_ref, _excluded$4Q);
|
|
2494
2494
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2495
2495
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2496
2496
|
width: 18,
|
|
@@ -2510,7 +2510,7 @@
|
|
|
2510
2510
|
CaretLeftIcon.displayName = "CaretLeftIcon";
|
|
2511
2511
|
var CaretLeftIcon$1 = CaretLeftIcon;
|
|
2512
2512
|
|
|
2513
|
-
var _excluded$
|
|
2513
|
+
var _excluded$4P = ["gradient"];
|
|
2514
2514
|
|
|
2515
2515
|
/**
|
|
2516
2516
|
* @component CaretRightIcon
|
|
@@ -2540,7 +2540,7 @@
|
|
|
2540
2540
|
*/
|
|
2541
2541
|
var CaretRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2542
2542
|
var gradient = _ref.gradient,
|
|
2543
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2543
|
+
props = _objectWithoutProperties(_ref, _excluded$4P);
|
|
2544
2544
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2545
2545
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2546
2546
|
width: 18,
|
|
@@ -2560,7 +2560,7 @@
|
|
|
2560
2560
|
CaretRightIcon.displayName = "CaretRightIcon";
|
|
2561
2561
|
var CaretRightIcon$1 = CaretRightIcon;
|
|
2562
2562
|
|
|
2563
|
-
var _excluded$
|
|
2563
|
+
var _excluded$4O = ["gradient"];
|
|
2564
2564
|
|
|
2565
2565
|
/**
|
|
2566
2566
|
* @component ChatIcon
|
|
@@ -2590,7 +2590,7 @@
|
|
|
2590
2590
|
*/
|
|
2591
2591
|
var ChatIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2592
2592
|
var gradient = _ref.gradient,
|
|
2593
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2593
|
+
props = _objectWithoutProperties(_ref, _excluded$4O);
|
|
2594
2594
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2595
2595
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2596
2596
|
width: 24,
|
|
@@ -2610,7 +2610,7 @@
|
|
|
2610
2610
|
ChatIcon.displayName = "ChatIcon";
|
|
2611
2611
|
var ChatIcon$1 = ChatIcon;
|
|
2612
2612
|
|
|
2613
|
-
var _excluded$
|
|
2613
|
+
var _excluded$4N = ["gradient"];
|
|
2614
2614
|
|
|
2615
2615
|
/**
|
|
2616
2616
|
* @component CheckIcon
|
|
@@ -2640,7 +2640,7 @@
|
|
|
2640
2640
|
*/
|
|
2641
2641
|
var CheckIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2642
2642
|
var gradient = _ref.gradient,
|
|
2643
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2643
|
+
props = _objectWithoutProperties(_ref, _excluded$4N);
|
|
2644
2644
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2645
2645
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2646
2646
|
width: 24,
|
|
@@ -2660,7 +2660,7 @@
|
|
|
2660
2660
|
CheckIcon.displayName = "CheckIcon";
|
|
2661
2661
|
var CheckIcon$1 = CheckIcon;
|
|
2662
2662
|
|
|
2663
|
-
var _excluded$
|
|
2663
|
+
var _excluded$4M = ["gradient"];
|
|
2664
2664
|
|
|
2665
2665
|
/**
|
|
2666
2666
|
* @component CheckboxBlankTogglerIcon
|
|
@@ -2690,7 +2690,7 @@
|
|
|
2690
2690
|
*/
|
|
2691
2691
|
var CheckboxBlankTogglerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2692
2692
|
var gradient = _ref.gradient,
|
|
2693
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2693
|
+
props = _objectWithoutProperties(_ref, _excluded$4M);
|
|
2694
2694
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2695
2695
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2696
2696
|
width: 24,
|
|
@@ -2710,7 +2710,7 @@
|
|
|
2710
2710
|
CheckboxBlankTogglerIcon.displayName = "CheckboxBlankTogglerIcon";
|
|
2711
2711
|
var CheckboxBlankTogglerIcon$1 = CheckboxBlankTogglerIcon;
|
|
2712
2712
|
|
|
2713
|
-
var _excluded$
|
|
2713
|
+
var _excluded$4L = ["gradient"];
|
|
2714
2714
|
|
|
2715
2715
|
/**
|
|
2716
2716
|
* @component CheckboxCircleArrowIcon
|
|
@@ -2740,7 +2740,7 @@
|
|
|
2740
2740
|
*/
|
|
2741
2741
|
var CheckboxCircleArrowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2742
2742
|
var gradient = _ref.gradient,
|
|
2743
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2743
|
+
props = _objectWithoutProperties(_ref, _excluded$4L);
|
|
2744
2744
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2745
2745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2746
2746
|
width: 24,
|
|
@@ -2760,7 +2760,7 @@
|
|
|
2760
2760
|
CheckboxCircleArrowIcon.displayName = "CheckboxCircleArrowIcon";
|
|
2761
2761
|
var CheckboxCircleArrowIcon$1 = CheckboxCircleArrowIcon;
|
|
2762
2762
|
|
|
2763
|
-
var _excluded$
|
|
2763
|
+
var _excluded$4K = ["gradient"];
|
|
2764
2764
|
|
|
2765
2765
|
/**
|
|
2766
2766
|
* @component CheckboxCircleBlankIcon
|
|
@@ -2790,7 +2790,7 @@
|
|
|
2790
2790
|
*/
|
|
2791
2791
|
var CheckboxCircleBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2792
2792
|
var gradient = _ref.gradient,
|
|
2793
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2793
|
+
props = _objectWithoutProperties(_ref, _excluded$4K);
|
|
2794
2794
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2795
2795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2796
2796
|
width: 15,
|
|
@@ -2811,7 +2811,7 @@
|
|
|
2811
2811
|
CheckboxCircleBlankIcon.displayName = "CheckboxCircleBlankIcon";
|
|
2812
2812
|
var CheckboxCircleBlankIcon$1 = CheckboxCircleBlankIcon;
|
|
2813
2813
|
|
|
2814
|
-
var _excluded$
|
|
2814
|
+
var _excluded$4J = ["gradient"];
|
|
2815
2815
|
|
|
2816
2816
|
/**
|
|
2817
2817
|
* @component CheckboxDocumentsIcon
|
|
@@ -2841,7 +2841,7 @@
|
|
|
2841
2841
|
*/
|
|
2842
2842
|
var CheckboxDocumentsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2843
2843
|
var gradient = _ref.gradient,
|
|
2844
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2844
|
+
props = _objectWithoutProperties(_ref, _excluded$4J);
|
|
2845
2845
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2846
2846
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2847
2847
|
width: 24,
|
|
@@ -2861,7 +2861,7 @@
|
|
|
2861
2861
|
CheckboxDocumentsIcon.displayName = "CheckboxDocumentsIcon";
|
|
2862
2862
|
var CheckboxDocumentsIcon$1 = CheckboxDocumentsIcon;
|
|
2863
2863
|
|
|
2864
|
-
var _excluded$
|
|
2864
|
+
var _excluded$4I = ["gradient"];
|
|
2865
2865
|
|
|
2866
2866
|
/**
|
|
2867
2867
|
* @component CheckboxIcon
|
|
@@ -2891,7 +2891,7 @@
|
|
|
2891
2891
|
*/
|
|
2892
2892
|
var CheckboxIcon$2 = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2893
2893
|
var gradient = _ref.gradient,
|
|
2894
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2894
|
+
props = _objectWithoutProperties(_ref, _excluded$4I);
|
|
2895
2895
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2896
2896
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2897
2897
|
width: 16,
|
|
@@ -2921,7 +2921,7 @@
|
|
|
2921
2921
|
CheckboxIcon$2.displayName = "CheckboxIcon";
|
|
2922
2922
|
var CheckboxIcon$3 = CheckboxIcon$2;
|
|
2923
2923
|
|
|
2924
|
-
var _excluded$
|
|
2924
|
+
var _excluded$4H = ["gradient"];
|
|
2925
2925
|
|
|
2926
2926
|
/**
|
|
2927
2927
|
* @component ChecklistSmallIcon
|
|
@@ -2951,7 +2951,7 @@
|
|
|
2951
2951
|
*/
|
|
2952
2952
|
var ChecklistSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2953
2953
|
var gradient = _ref.gradient,
|
|
2954
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2954
|
+
props = _objectWithoutProperties(_ref, _excluded$4H);
|
|
2955
2955
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2956
2956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2957
2957
|
width: 12,
|
|
@@ -2971,7 +2971,7 @@
|
|
|
2971
2971
|
ChecklistSmallIcon.displayName = "ChecklistSmallIcon";
|
|
2972
2972
|
var ChecklistSmallIcon$1 = ChecklistSmallIcon;
|
|
2973
2973
|
|
|
2974
|
-
var _excluded$
|
|
2974
|
+
var _excluded$4G = ["gradient"];
|
|
2975
2975
|
|
|
2976
2976
|
/**
|
|
2977
2977
|
* @component ChecklistIcon
|
|
@@ -3001,7 +3001,7 @@
|
|
|
3001
3001
|
*/
|
|
3002
3002
|
var ChecklistIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3003
3003
|
var gradient = _ref.gradient,
|
|
3004
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3004
|
+
props = _objectWithoutProperties(_ref, _excluded$4G);
|
|
3005
3005
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3006
3006
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3007
3007
|
width: 24,
|
|
@@ -3021,7 +3021,7 @@
|
|
|
3021
3021
|
ChecklistIcon.displayName = "ChecklistIcon";
|
|
3022
3022
|
var ChecklistIcon$1 = ChecklistIcon;
|
|
3023
3023
|
|
|
3024
|
-
var _excluded$
|
|
3024
|
+
var _excluded$4F = ["gradient"];
|
|
3025
3025
|
|
|
3026
3026
|
/**
|
|
3027
3027
|
* @component CircleDotIcon
|
|
@@ -3051,7 +3051,7 @@
|
|
|
3051
3051
|
*/
|
|
3052
3052
|
var CircleDotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3053
3053
|
var gradient = _ref.gradient,
|
|
3054
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3054
|
+
props = _objectWithoutProperties(_ref, _excluded$4F);
|
|
3055
3055
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3056
3056
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3057
3057
|
width: 24,
|
|
@@ -3074,7 +3074,7 @@
|
|
|
3074
3074
|
CircleDotIcon.displayName = "CircleDotIcon";
|
|
3075
3075
|
var CircleDotIcon$1 = CircleDotIcon;
|
|
3076
3076
|
|
|
3077
|
-
var _excluded$
|
|
3077
|
+
var _excluded$4E = ["gradient"];
|
|
3078
3078
|
|
|
3079
3079
|
/**
|
|
3080
3080
|
* @component CircleIcon
|
|
@@ -3104,7 +3104,7 @@
|
|
|
3104
3104
|
*/
|
|
3105
3105
|
var CircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3106
3106
|
var gradient = _ref.gradient,
|
|
3107
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3107
|
+
props = _objectWithoutProperties(_ref, _excluded$4E);
|
|
3108
3108
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3109
3109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3110
3110
|
width: 24,
|
|
@@ -3123,7 +3123,7 @@
|
|
|
3123
3123
|
CircleIcon.displayName = "CircleIcon";
|
|
3124
3124
|
var CircleIcon$1 = CircleIcon;
|
|
3125
3125
|
|
|
3126
|
-
var _excluded$
|
|
3126
|
+
var _excluded$4D = ["gradient"];
|
|
3127
3127
|
|
|
3128
3128
|
/**
|
|
3129
3129
|
* @component CircleMultipleIcon
|
|
@@ -3153,7 +3153,7 @@
|
|
|
3153
3153
|
*/
|
|
3154
3154
|
var CircleMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3155
3155
|
var gradient = _ref.gradient,
|
|
3156
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3156
|
+
props = _objectWithoutProperties(_ref, _excluded$4D);
|
|
3157
3157
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3158
3158
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3159
3159
|
width: 24,
|
|
@@ -3173,7 +3173,7 @@
|
|
|
3173
3173
|
CircleMultipleIcon.displayName = "CircleMultipleIcon";
|
|
3174
3174
|
var CircleMultipleIcon$1 = CircleMultipleIcon;
|
|
3175
3175
|
|
|
3176
|
-
var _excluded$
|
|
3176
|
+
var _excluded$4C = ["gradient"];
|
|
3177
3177
|
|
|
3178
3178
|
/**
|
|
3179
3179
|
* @component ClockAddIcon
|
|
@@ -3203,7 +3203,7 @@
|
|
|
3203
3203
|
*/
|
|
3204
3204
|
var ClockAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3205
3205
|
var gradient = _ref.gradient,
|
|
3206
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3206
|
+
props = _objectWithoutProperties(_ref, _excluded$4C);
|
|
3207
3207
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3208
3208
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3209
3209
|
width: 24,
|
|
@@ -3223,7 +3223,7 @@
|
|
|
3223
3223
|
ClockAddIcon.displayName = "ClockAddIcon";
|
|
3224
3224
|
var ClockAddIcon$1 = ClockAddIcon;
|
|
3225
3225
|
|
|
3226
|
-
var _excluded$
|
|
3226
|
+
var _excluded$4B = ["gradient"];
|
|
3227
3227
|
|
|
3228
3228
|
/**
|
|
3229
3229
|
* @component ClockDollarIcon
|
|
@@ -3253,7 +3253,7 @@
|
|
|
3253
3253
|
*/
|
|
3254
3254
|
var ClockDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3255
3255
|
var gradient = _ref.gradient,
|
|
3256
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3256
|
+
props = _objectWithoutProperties(_ref, _excluded$4B);
|
|
3257
3257
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3258
3258
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3259
3259
|
width: 24,
|
|
@@ -3276,7 +3276,7 @@
|
|
|
3276
3276
|
ClockDollarIcon.displayName = "ClockDollarIcon";
|
|
3277
3277
|
var ClockDollarIcon$1 = ClockDollarIcon;
|
|
3278
3278
|
|
|
3279
|
-
var _excluded$
|
|
3279
|
+
var _excluded$4A = ["gradient"];
|
|
3280
3280
|
|
|
3281
3281
|
/**
|
|
3282
3282
|
* @component ClockSmallIcon
|
|
@@ -3306,7 +3306,7 @@
|
|
|
3306
3306
|
*/
|
|
3307
3307
|
var ClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3308
3308
|
var gradient = _ref.gradient,
|
|
3309
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3309
|
+
props = _objectWithoutProperties(_ref, _excluded$4A);
|
|
3310
3310
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3311
3311
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3312
3312
|
width: 12,
|
|
@@ -3326,7 +3326,7 @@
|
|
|
3326
3326
|
ClockSmallIcon.displayName = "ClockSmallIcon";
|
|
3327
3327
|
var ClockSmallIcon$1 = ClockSmallIcon;
|
|
3328
3328
|
|
|
3329
|
-
var _excluded$
|
|
3329
|
+
var _excluded$4z = ["gradient"];
|
|
3330
3330
|
|
|
3331
3331
|
/**
|
|
3332
3332
|
* @component ClockStopwatchIndicatorIcon
|
|
@@ -3356,7 +3356,7 @@
|
|
|
3356
3356
|
*/
|
|
3357
3357
|
var ClockStopwatchIndicatorIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3358
3358
|
var gradient = _ref.gradient,
|
|
3359
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3359
|
+
props = _objectWithoutProperties(_ref, _excluded$4z);
|
|
3360
3360
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3361
3361
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3362
3362
|
width: 24,
|
|
@@ -3377,7 +3377,7 @@
|
|
|
3377
3377
|
ClockStopwatchIndicatorIcon.displayName = "ClockStopwatchIndicatorIcon";
|
|
3378
3378
|
var ClockStopwatchIndicatorIcon$1 = ClockStopwatchIndicatorIcon;
|
|
3379
3379
|
|
|
3380
|
-
var _excluded$
|
|
3380
|
+
var _excluded$4y = ["gradient"];
|
|
3381
3381
|
|
|
3382
3382
|
/**
|
|
3383
3383
|
* @component ClockStopwatchSmallIcon
|
|
@@ -3407,7 +3407,7 @@
|
|
|
3407
3407
|
*/
|
|
3408
3408
|
var ClockStopwatchSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3409
3409
|
var gradient = _ref.gradient,
|
|
3410
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3410
|
+
props = _objectWithoutProperties(_ref, _excluded$4y);
|
|
3411
3411
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3412
3412
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3413
3413
|
width: 12,
|
|
@@ -3427,7 +3427,7 @@
|
|
|
3427
3427
|
ClockStopwatchSmallIcon.displayName = "ClockStopwatchSmallIcon";
|
|
3428
3428
|
var ClockStopwatchSmallIcon$1 = ClockStopwatchSmallIcon;
|
|
3429
3429
|
|
|
3430
|
-
var _excluded$
|
|
3430
|
+
var _excluded$4x = ["gradient"];
|
|
3431
3431
|
|
|
3432
3432
|
/**
|
|
3433
3433
|
* @component ClockStopwatchIcon
|
|
@@ -3457,7 +3457,7 @@
|
|
|
3457
3457
|
*/
|
|
3458
3458
|
var ClockStopwatchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3459
3459
|
var gradient = _ref.gradient,
|
|
3460
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3460
|
+
props = _objectWithoutProperties(_ref, _excluded$4x);
|
|
3461
3461
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3462
3462
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3463
3463
|
width: 24,
|
|
@@ -3477,7 +3477,7 @@
|
|
|
3477
3477
|
ClockStopwatchIcon.displayName = "ClockStopwatchIcon";
|
|
3478
3478
|
var ClockStopwatchIcon$1 = ClockStopwatchIcon;
|
|
3479
3479
|
|
|
3480
|
-
var _excluded$
|
|
3480
|
+
var _excluded$4w = ["gradient"];
|
|
3481
3481
|
|
|
3482
3482
|
/**
|
|
3483
3483
|
* @component ClockIcon
|
|
@@ -3507,7 +3507,7 @@
|
|
|
3507
3507
|
*/
|
|
3508
3508
|
var ClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3509
3509
|
var gradient = _ref.gradient,
|
|
3510
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3510
|
+
props = _objectWithoutProperties(_ref, _excluded$4w);
|
|
3511
3511
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3512
3512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3513
3513
|
width: 24,
|
|
@@ -3527,7 +3527,7 @@
|
|
|
3527
3527
|
ClockIcon.displayName = "ClockIcon";
|
|
3528
3528
|
var ClockIcon$1 = ClockIcon;
|
|
3529
3529
|
|
|
3530
|
-
var _excluded$
|
|
3530
|
+
var _excluded$4v = ["gradient"];
|
|
3531
3531
|
|
|
3532
3532
|
/**
|
|
3533
3533
|
* @component CloseCircleIcon
|
|
@@ -3557,7 +3557,7 @@
|
|
|
3557
3557
|
*/
|
|
3558
3558
|
var CloseCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3559
3559
|
var gradient = _ref.gradient,
|
|
3560
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3560
|
+
props = _objectWithoutProperties(_ref, _excluded$4v);
|
|
3561
3561
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3562
3562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3563
3563
|
width: 24,
|
|
@@ -3578,7 +3578,7 @@
|
|
|
3578
3578
|
CloseCircleIcon.displayName = "CloseCircleIcon";
|
|
3579
3579
|
var CloseCircleIcon$1 = CloseCircleIcon;
|
|
3580
3580
|
|
|
3581
|
-
var _excluded$
|
|
3581
|
+
var _excluded$4u = ["gradient"];
|
|
3582
3582
|
|
|
3583
3583
|
/**
|
|
3584
3584
|
* @component CloseDocumentIcon
|
|
@@ -3608,7 +3608,7 @@
|
|
|
3608
3608
|
*/
|
|
3609
3609
|
var CloseDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3610
3610
|
var gradient = _ref.gradient,
|
|
3611
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3611
|
+
props = _objectWithoutProperties(_ref, _excluded$4u);
|
|
3612
3612
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3613
3613
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3614
3614
|
width: 24,
|
|
@@ -3628,7 +3628,7 @@
|
|
|
3628
3628
|
CloseDocumentIcon.displayName = "CloseDocumentIcon";
|
|
3629
3629
|
var CloseDocumentIcon$1 = CloseDocumentIcon;
|
|
3630
3630
|
|
|
3631
|
-
var _excluded$
|
|
3631
|
+
var _excluded$4t = ["gradient"];
|
|
3632
3632
|
|
|
3633
3633
|
/**
|
|
3634
3634
|
* @component CloseSmallIcon
|
|
@@ -3658,7 +3658,7 @@
|
|
|
3658
3658
|
*/
|
|
3659
3659
|
var CloseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3660
3660
|
var gradient = _ref.gradient,
|
|
3661
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3661
|
+
props = _objectWithoutProperties(_ref, _excluded$4t);
|
|
3662
3662
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3663
3663
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3664
3664
|
width: 24,
|
|
@@ -3678,7 +3678,7 @@
|
|
|
3678
3678
|
CloseSmallIcon.displayName = "CloseSmallIcon";
|
|
3679
3679
|
var CloseSmallIcon$1 = CloseSmallIcon;
|
|
3680
3680
|
|
|
3681
|
-
var _excluded$
|
|
3681
|
+
var _excluded$4s = ["gradient"];
|
|
3682
3682
|
|
|
3683
3683
|
/**
|
|
3684
3684
|
* @component CloseIcon
|
|
@@ -3708,7 +3708,7 @@
|
|
|
3708
3708
|
*/
|
|
3709
3709
|
var CloseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3710
3710
|
var gradient = _ref.gradient,
|
|
3711
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3711
|
+
props = _objectWithoutProperties(_ref, _excluded$4s);
|
|
3712
3712
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3713
3713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3714
3714
|
width: 24,
|
|
@@ -3729,7 +3729,7 @@
|
|
|
3729
3729
|
CloseIcon.displayName = "CloseIcon";
|
|
3730
3730
|
var CloseIcon$1 = CloseIcon;
|
|
3731
3731
|
|
|
3732
|
-
var _excluded$
|
|
3732
|
+
var _excluded$4r = ["gradient"];
|
|
3733
3733
|
|
|
3734
3734
|
/**
|
|
3735
3735
|
* @component CloudIcon
|
|
@@ -3742,7 +3742,7 @@
|
|
|
3742
3742
|
*/
|
|
3743
3743
|
var CloudIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3744
3744
|
var gradient = _ref.gradient,
|
|
3745
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3745
|
+
props = _objectWithoutProperties(_ref, _excluded$4r);
|
|
3746
3746
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3747
3747
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3748
3748
|
width: 24,
|
|
@@ -3765,7 +3765,7 @@
|
|
|
3765
3765
|
CloudIcon.displayName = "CloudIcon";
|
|
3766
3766
|
var CloudIcon$1 = CloudIcon;
|
|
3767
3767
|
|
|
3768
|
-
var _excluded$
|
|
3768
|
+
var _excluded$4q = ["gradient"];
|
|
3769
3769
|
|
|
3770
3770
|
/**
|
|
3771
3771
|
* @component CloudDeployIcon
|
|
@@ -3780,7 +3780,7 @@
|
|
|
3780
3780
|
*/
|
|
3781
3781
|
var CloudDeployIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3782
3782
|
var gradient = _ref.gradient,
|
|
3783
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3783
|
+
props = _objectWithoutProperties(_ref, _excluded$4q);
|
|
3784
3784
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3785
3785
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3786
3786
|
width: 24,
|
|
@@ -3807,7 +3807,7 @@
|
|
|
3807
3807
|
CloudDeployIcon.displayName = "CloudDeployIcon";
|
|
3808
3808
|
var CloudDeployIcon$1 = CloudDeployIcon;
|
|
3809
3809
|
|
|
3810
|
-
var _excluded$
|
|
3810
|
+
var _excluded$4p = ["gradient"];
|
|
3811
3811
|
|
|
3812
3812
|
/**
|
|
3813
3813
|
* @component CloudDeployFailedIcon
|
|
@@ -3822,7 +3822,7 @@
|
|
|
3822
3822
|
*/
|
|
3823
3823
|
var CloudDeployFailedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3824
3824
|
var gradient = _ref.gradient,
|
|
3825
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3825
|
+
props = _objectWithoutProperties(_ref, _excluded$4p);
|
|
3826
3826
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3827
3827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3828
3828
|
width: 24,
|
|
@@ -3849,7 +3849,7 @@
|
|
|
3849
3849
|
CloudDeployFailedIcon.displayName = "CloudDeployFailedIcon";
|
|
3850
3850
|
var CloudDeployFailedIcon$1 = CloudDeployFailedIcon;
|
|
3851
3851
|
|
|
3852
|
-
var _excluded$
|
|
3852
|
+
var _excluded$4o = ["gradient"];
|
|
3853
3853
|
|
|
3854
3854
|
/**
|
|
3855
3855
|
* @component CollapsIcon
|
|
@@ -3879,7 +3879,7 @@
|
|
|
3879
3879
|
*/
|
|
3880
3880
|
var CollapsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3881
3881
|
var gradient = _ref.gradient,
|
|
3882
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3882
|
+
props = _objectWithoutProperties(_ref, _excluded$4o);
|
|
3883
3883
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3884
3884
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3885
3885
|
width: 6,
|
|
@@ -3899,7 +3899,7 @@
|
|
|
3899
3899
|
CollapsIcon.displayName = "CollapsIcon";
|
|
3900
3900
|
var CollapsIcon$1 = CollapsIcon;
|
|
3901
3901
|
|
|
3902
|
-
var _excluded$
|
|
3902
|
+
var _excluded$4n = ["gradient"];
|
|
3903
3903
|
|
|
3904
3904
|
/**
|
|
3905
3905
|
* @component CollapseAllIcon
|
|
@@ -3929,7 +3929,7 @@
|
|
|
3929
3929
|
*/
|
|
3930
3930
|
var CollapseAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3931
3931
|
var gradient = _ref.gradient,
|
|
3932
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3932
|
+
props = _objectWithoutProperties(_ref, _excluded$4n);
|
|
3933
3933
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3934
3934
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3935
3935
|
width: 24,
|
|
@@ -3949,7 +3949,7 @@
|
|
|
3949
3949
|
CollapseAllIcon.displayName = "CollapseAllIcon";
|
|
3950
3950
|
var CollapseAllIcon$1 = CollapseAllIcon;
|
|
3951
3951
|
|
|
3952
|
-
var _excluded$
|
|
3952
|
+
var _excluded$4m = ["gradient"];
|
|
3953
3953
|
|
|
3954
3954
|
/**
|
|
3955
3955
|
* @component CollapseExpandSingleIcon
|
|
@@ -3979,7 +3979,7 @@
|
|
|
3979
3979
|
*/
|
|
3980
3980
|
var CollapseExpandSingleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3981
3981
|
var gradient = _ref.gradient,
|
|
3982
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3982
|
+
props = _objectWithoutProperties(_ref, _excluded$4m);
|
|
3983
3983
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3984
3984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3985
3985
|
width: 24,
|
|
@@ -3999,7 +3999,7 @@
|
|
|
3999
3999
|
CollapseExpandSingleIcon.displayName = "CollapseExpandSingleIcon";
|
|
4000
4000
|
var CollapseExpandSingleIcon$1 = CollapseExpandSingleIcon;
|
|
4001
4001
|
|
|
4002
|
-
var _excluded$
|
|
4002
|
+
var _excluded$4l = ["gradient"];
|
|
4003
4003
|
|
|
4004
4004
|
/**
|
|
4005
4005
|
* @component CompanyAddIcon
|
|
@@ -4029,7 +4029,7 @@
|
|
|
4029
4029
|
*/
|
|
4030
4030
|
var CompanyAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4031
4031
|
var gradient = _ref.gradient,
|
|
4032
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4032
|
+
props = _objectWithoutProperties(_ref, _excluded$4l);
|
|
4033
4033
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4034
4034
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4035
4035
|
width: 18,
|
|
@@ -4050,7 +4050,7 @@
|
|
|
4050
4050
|
CompanyAddIcon.displayName = "CompanyAddIcon";
|
|
4051
4051
|
var CompanyAddIcon$1 = CompanyAddIcon;
|
|
4052
4052
|
|
|
4053
|
-
var _excluded$
|
|
4053
|
+
var _excluded$4k = ["gradient"];
|
|
4054
4054
|
|
|
4055
4055
|
/**
|
|
4056
4056
|
* @component CompanyIcon
|
|
@@ -4080,7 +4080,7 @@
|
|
|
4080
4080
|
*/
|
|
4081
4081
|
var CompanyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4082
4082
|
var gradient = _ref.gradient,
|
|
4083
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4083
|
+
props = _objectWithoutProperties(_ref, _excluded$4k);
|
|
4084
4084
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4085
4085
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4086
4086
|
width: 24,
|
|
@@ -4101,7 +4101,7 @@
|
|
|
4101
4101
|
CompanyIcon.displayName = "CompanyIcon";
|
|
4102
4102
|
var CompanyIcon$1 = CompanyIcon;
|
|
4103
4103
|
|
|
4104
|
-
var _excluded$
|
|
4104
|
+
var _excluded$4j = ["gradient"];
|
|
4105
4105
|
|
|
4106
4106
|
/**
|
|
4107
4107
|
* @component ComputerIcon
|
|
@@ -4131,7 +4131,7 @@
|
|
|
4131
4131
|
*/
|
|
4132
4132
|
var ComputerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4133
4133
|
var gradient = _ref.gradient,
|
|
4134
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4134
|
+
props = _objectWithoutProperties(_ref, _excluded$4j);
|
|
4135
4135
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4136
4136
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4137
4137
|
width: 24,
|
|
@@ -4151,7 +4151,7 @@
|
|
|
4151
4151
|
ComputerIcon.displayName = "ComputerIcon";
|
|
4152
4152
|
var ComputerIcon$1 = ComputerIcon;
|
|
4153
4153
|
|
|
4154
|
-
var _excluded$
|
|
4154
|
+
var _excluded$4i = ["gradient"];
|
|
4155
4155
|
|
|
4156
4156
|
/**
|
|
4157
4157
|
* @component ConnectionIcon
|
|
@@ -4181,7 +4181,7 @@
|
|
|
4181
4181
|
*/
|
|
4182
4182
|
var ConnectionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4183
4183
|
var gradient = _ref.gradient,
|
|
4184
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4184
|
+
props = _objectWithoutProperties(_ref, _excluded$4i);
|
|
4185
4185
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4186
4186
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4187
4187
|
width: 24,
|
|
@@ -4194,29 +4194,21 @@
|
|
|
4194
4194
|
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
4195
4195
|
gradient: gradient
|
|
4196
4196
|
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
stroke: "var(--color-theme-600)",
|
|
4207
|
-
strokeLinecap: "round",
|
|
4208
|
-
strokeLinejoin: "round",
|
|
4209
|
-
strokeWidth: 2,
|
|
4210
|
-
d: "M4 20v-7a4 4 0 0 1 4-4h12",
|
|
4211
|
-
style: {
|
|
4212
|
-
fill: "none"
|
|
4213
|
-
}
|
|
4197
|
+
d: "M6 19c.075-4.623 2.637-5.022 6.243-6.03C15.637 12.228 20.075 10.877 20 5h-2c-.075 4.623-2.637 5.022-6.243 6.03C8.363 11.772 3.925 13.123 4 19Z"
|
|
4198
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
4199
|
+
cx: 5,
|
|
4200
|
+
cy: 19,
|
|
4201
|
+
r: 2.5
|
|
4202
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
4203
|
+
cx: 19,
|
|
4204
|
+
cy: 5,
|
|
4205
|
+
r: 2.5
|
|
4214
4206
|
}));
|
|
4215
4207
|
});
|
|
4216
4208
|
ConnectionIcon.displayName = "ConnectionIcon";
|
|
4217
4209
|
var ConnectionIcon$1 = ConnectionIcon;
|
|
4218
4210
|
|
|
4219
|
-
var _excluded$
|
|
4211
|
+
var _excluded$4h = ["gradient"];
|
|
4220
4212
|
|
|
4221
4213
|
/**
|
|
4222
4214
|
* @component CopyIcon
|
|
@@ -4246,7 +4238,7 @@
|
|
|
4246
4238
|
*/
|
|
4247
4239
|
var CopyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4248
4240
|
var gradient = _ref.gradient,
|
|
4249
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4241
|
+
props = _objectWithoutProperties(_ref, _excluded$4h);
|
|
4250
4242
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4251
4243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4252
4244
|
width: 24,
|
|
@@ -4266,7 +4258,7 @@
|
|
|
4266
4258
|
CopyIcon.displayName = "CopyIcon";
|
|
4267
4259
|
var CopyIcon$1 = CopyIcon;
|
|
4268
4260
|
|
|
4269
|
-
var _excluded$
|
|
4261
|
+
var _excluded$4g = ["gradient"];
|
|
4270
4262
|
|
|
4271
4263
|
/**
|
|
4272
4264
|
* @component CrownBlankIcon
|
|
@@ -4296,7 +4288,7 @@
|
|
|
4296
4288
|
*/
|
|
4297
4289
|
var CrownBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4298
4290
|
var gradient = _ref.gradient,
|
|
4299
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4291
|
+
props = _objectWithoutProperties(_ref, _excluded$4g);
|
|
4300
4292
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4301
4293
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4302
4294
|
width: 24,
|
|
@@ -4316,7 +4308,7 @@
|
|
|
4316
4308
|
CrownBlankIcon.displayName = "CrownBlankIcon";
|
|
4317
4309
|
var CrownBlankIcon$1 = CrownBlankIcon;
|
|
4318
4310
|
|
|
4319
|
-
var _excluded$
|
|
4311
|
+
var _excluded$4f = ["gradient"];
|
|
4320
4312
|
|
|
4321
4313
|
/**
|
|
4322
4314
|
* @component CrownSelectedIcon
|
|
@@ -4346,7 +4338,7 @@
|
|
|
4346
4338
|
*/
|
|
4347
4339
|
var CrownSelectedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4348
4340
|
var gradient = _ref.gradient,
|
|
4349
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4341
|
+
props = _objectWithoutProperties(_ref, _excluded$4f);
|
|
4350
4342
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4351
4343
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4352
4344
|
width: 24,
|
|
@@ -4366,7 +4358,7 @@
|
|
|
4366
4358
|
CrownSelectedIcon.displayName = "CrownSelectedIcon";
|
|
4367
4359
|
var CrownSelectedIcon$1 = CrownSelectedIcon;
|
|
4368
4360
|
|
|
4369
|
-
var _excluded$
|
|
4361
|
+
var _excluded$4e = ["gradient"];
|
|
4370
4362
|
|
|
4371
4363
|
/**
|
|
4372
4364
|
* @component DependencySmallIcon
|
|
@@ -4396,7 +4388,7 @@
|
|
|
4396
4388
|
*/
|
|
4397
4389
|
var DependencySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4398
4390
|
var gradient = _ref.gradient,
|
|
4399
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4391
|
+
props = _objectWithoutProperties(_ref, _excluded$4e);
|
|
4400
4392
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4401
4393
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4402
4394
|
width: 12,
|
|
@@ -4416,7 +4408,7 @@
|
|
|
4416
4408
|
DependencySmallIcon.displayName = "DependencySmallIcon";
|
|
4417
4409
|
var DependencySmallIcon$1 = DependencySmallIcon;
|
|
4418
4410
|
|
|
4419
|
-
var _excluded$
|
|
4411
|
+
var _excluded$4d = ["gradient"];
|
|
4420
4412
|
|
|
4421
4413
|
/**
|
|
4422
4414
|
* @component DependencyIcon
|
|
@@ -4446,7 +4438,7 @@
|
|
|
4446
4438
|
*/
|
|
4447
4439
|
var DependencyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4448
4440
|
var gradient = _ref.gradient,
|
|
4449
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4441
|
+
props = _objectWithoutProperties(_ref, _excluded$4d);
|
|
4450
4442
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4451
4443
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4452
4444
|
width: 24,
|
|
@@ -4466,7 +4458,7 @@
|
|
|
4466
4458
|
DependencyIcon.displayName = "DependencyIcon";
|
|
4467
4459
|
var DependencyIcon$1 = DependencyIcon;
|
|
4468
4460
|
|
|
4469
|
-
var _excluded$
|
|
4461
|
+
var _excluded$4c = ["gradient"];
|
|
4470
4462
|
|
|
4471
4463
|
/**
|
|
4472
4464
|
* @component DescriptionSmallIcon
|
|
@@ -4496,7 +4488,7 @@
|
|
|
4496
4488
|
*/
|
|
4497
4489
|
var DescriptionSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4498
4490
|
var gradient = _ref.gradient,
|
|
4499
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4491
|
+
props = _objectWithoutProperties(_ref, _excluded$4c);
|
|
4500
4492
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4501
4493
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4502
4494
|
width: 18,
|
|
@@ -4517,7 +4509,7 @@
|
|
|
4517
4509
|
DescriptionSmallIcon.displayName = "DescriptionSmallIcon";
|
|
4518
4510
|
var DescriptionSmallIcon$1 = DescriptionSmallIcon;
|
|
4519
4511
|
|
|
4520
|
-
var _excluded$
|
|
4512
|
+
var _excluded$4b = ["gradient"];
|
|
4521
4513
|
|
|
4522
4514
|
/**
|
|
4523
4515
|
* @component DescriptionIcon
|
|
@@ -4547,7 +4539,7 @@
|
|
|
4547
4539
|
*/
|
|
4548
4540
|
var DescriptionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4549
4541
|
var gradient = _ref.gradient,
|
|
4550
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4542
|
+
props = _objectWithoutProperties(_ref, _excluded$4b);
|
|
4551
4543
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4552
4544
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4553
4545
|
width: 24,
|
|
@@ -4567,7 +4559,7 @@
|
|
|
4567
4559
|
DescriptionIcon.displayName = "DescriptionIcon";
|
|
4568
4560
|
var DescriptionIcon$1 = DescriptionIcon;
|
|
4569
4561
|
|
|
4570
|
-
var _excluded$
|
|
4562
|
+
var _excluded$4a = ["gradient"];
|
|
4571
4563
|
|
|
4572
4564
|
/**
|
|
4573
4565
|
* @component DiscussionAddIcon
|
|
@@ -4597,7 +4589,7 @@
|
|
|
4597
4589
|
*/
|
|
4598
4590
|
var DiscussionAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4599
4591
|
var gradient = _ref.gradient,
|
|
4600
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4592
|
+
props = _objectWithoutProperties(_ref, _excluded$4a);
|
|
4601
4593
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4602
4594
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4603
4595
|
width: 24,
|
|
@@ -4617,7 +4609,7 @@
|
|
|
4617
4609
|
DiscussionAddIcon.displayName = "DiscussionAddIcon";
|
|
4618
4610
|
var DiscussionAddIcon$1 = DiscussionAddIcon;
|
|
4619
4611
|
|
|
4620
|
-
var _excluded$
|
|
4612
|
+
var _excluded$49 = ["gradient"];
|
|
4621
4613
|
|
|
4622
4614
|
/**
|
|
4623
4615
|
* @component DiscussionIcon
|
|
@@ -4647,7 +4639,7 @@
|
|
|
4647
4639
|
*/
|
|
4648
4640
|
var DiscussionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4649
4641
|
var gradient = _ref.gradient,
|
|
4650
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4642
|
+
props = _objectWithoutProperties(_ref, _excluded$49);
|
|
4651
4643
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4652
4644
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4653
4645
|
width: 24,
|
|
@@ -4668,7 +4660,7 @@
|
|
|
4668
4660
|
DiscussionIcon.displayName = "DiscussionIcon";
|
|
4669
4661
|
var DiscussionIcon$1 = DiscussionIcon;
|
|
4670
4662
|
|
|
4671
|
-
var _excluded$
|
|
4663
|
+
var _excluded$48 = ["gradient"];
|
|
4672
4664
|
|
|
4673
4665
|
/**
|
|
4674
4666
|
* @component DollarCheckmarkSmallIcon
|
|
@@ -4698,7 +4690,7 @@
|
|
|
4698
4690
|
*/
|
|
4699
4691
|
var DollarCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4700
4692
|
var gradient = _ref.gradient,
|
|
4701
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4693
|
+
props = _objectWithoutProperties(_ref, _excluded$48);
|
|
4702
4694
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4703
4695
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4704
4696
|
width: 12,
|
|
@@ -4718,7 +4710,7 @@
|
|
|
4718
4710
|
DollarCheckmarkSmallIcon.displayName = "DollarCheckmarkSmallIcon";
|
|
4719
4711
|
var DollarCheckmarkSmallIcon$1 = DollarCheckmarkSmallIcon;
|
|
4720
4712
|
|
|
4721
|
-
var _excluded$
|
|
4713
|
+
var _excluded$47 = ["gradient"];
|
|
4722
4714
|
|
|
4723
4715
|
/**
|
|
4724
4716
|
* @component DollarCheckmarkIcon
|
|
@@ -4748,7 +4740,7 @@
|
|
|
4748
4740
|
*/
|
|
4749
4741
|
var DollarCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4750
4742
|
var gradient = _ref.gradient,
|
|
4751
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4743
|
+
props = _objectWithoutProperties(_ref, _excluded$47);
|
|
4752
4744
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4753
4745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4754
4746
|
width: 24,
|
|
@@ -4768,7 +4760,7 @@
|
|
|
4768
4760
|
DollarCheckmarkIcon.displayName = "DollarCheckmarkIcon";
|
|
4769
4761
|
var DollarCheckmarkIcon$1 = DollarCheckmarkIcon;
|
|
4770
4762
|
|
|
4771
|
-
var _excluded$
|
|
4763
|
+
var _excluded$46 = ["gradient"];
|
|
4772
4764
|
|
|
4773
4765
|
/**
|
|
4774
4766
|
* @component DollarClockSmallIcon
|
|
@@ -4798,7 +4790,7 @@
|
|
|
4798
4790
|
*/
|
|
4799
4791
|
var DollarClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4800
4792
|
var gradient = _ref.gradient,
|
|
4801
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4793
|
+
props = _objectWithoutProperties(_ref, _excluded$46);
|
|
4802
4794
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4803
4795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4804
4796
|
width: 12,
|
|
@@ -4818,7 +4810,7 @@
|
|
|
4818
4810
|
DollarClockSmallIcon.displayName = "DollarClockSmallIcon";
|
|
4819
4811
|
var DollarClockSmallIcon$1 = DollarClockSmallIcon;
|
|
4820
4812
|
|
|
4821
|
-
var _excluded$
|
|
4813
|
+
var _excluded$45 = ["gradient"];
|
|
4822
4814
|
|
|
4823
4815
|
/**
|
|
4824
4816
|
* @component DollarClockIcon
|
|
@@ -4848,7 +4840,7 @@
|
|
|
4848
4840
|
*/
|
|
4849
4841
|
var DollarClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4850
4842
|
var gradient = _ref.gradient,
|
|
4851
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4843
|
+
props = _objectWithoutProperties(_ref, _excluded$45);
|
|
4852
4844
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4853
4845
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4854
4846
|
width: 24,
|
|
@@ -4868,7 +4860,7 @@
|
|
|
4868
4860
|
DollarClockIcon.displayName = "DollarClockIcon";
|
|
4869
4861
|
var DollarClockIcon$1 = DollarClockIcon;
|
|
4870
4862
|
|
|
4871
|
-
var _excluded$
|
|
4863
|
+
var _excluded$44 = ["gradient"];
|
|
4872
4864
|
|
|
4873
4865
|
/**
|
|
4874
4866
|
* @component DollarDocumentPlusIcon
|
|
@@ -4898,7 +4890,7 @@
|
|
|
4898
4890
|
*/
|
|
4899
4891
|
var DollarDocumentPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4900
4892
|
var gradient = _ref.gradient,
|
|
4901
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4893
|
+
props = _objectWithoutProperties(_ref, _excluded$44);
|
|
4902
4894
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4903
4895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4904
4896
|
width: 24,
|
|
@@ -4918,7 +4910,7 @@
|
|
|
4918
4910
|
DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
|
|
4919
4911
|
var DollarDocumentPlusIcon$1 = DollarDocumentPlusIcon;
|
|
4920
4912
|
|
|
4921
|
-
var _excluded$
|
|
4913
|
+
var _excluded$43 = ["gradient"];
|
|
4922
4914
|
|
|
4923
4915
|
/**
|
|
4924
4916
|
* @component DollarDocumentIcon
|
|
@@ -4948,7 +4940,7 @@
|
|
|
4948
4940
|
*/
|
|
4949
4941
|
var DollarDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4950
4942
|
var gradient = _ref.gradient,
|
|
4951
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4943
|
+
props = _objectWithoutProperties(_ref, _excluded$43);
|
|
4952
4944
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4953
4945
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4954
4946
|
width: 24,
|
|
@@ -4969,7 +4961,7 @@
|
|
|
4969
4961
|
DollarDocumentIcon.displayName = "DollarDocumentIcon";
|
|
4970
4962
|
var DollarDocumentIcon$1 = DollarDocumentIcon;
|
|
4971
4963
|
|
|
4972
|
-
var _excluded$
|
|
4964
|
+
var _excluded$42 = ["gradient"];
|
|
4973
4965
|
|
|
4974
4966
|
/**
|
|
4975
4967
|
* @component DollarOffSmallIcon
|
|
@@ -4999,7 +4991,7 @@
|
|
|
4999
4991
|
*/
|
|
5000
4992
|
var DollarOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5001
4993
|
var gradient = _ref.gradient,
|
|
5002
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4994
|
+
props = _objectWithoutProperties(_ref, _excluded$42);
|
|
5003
4995
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5004
4996
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5005
4997
|
width: 12,
|
|
@@ -5019,7 +5011,7 @@
|
|
|
5019
5011
|
DollarOffSmallIcon.displayName = "DollarOffSmallIcon";
|
|
5020
5012
|
var DollarOffSmallIcon$1 = DollarOffSmallIcon;
|
|
5021
5013
|
|
|
5022
|
-
var _excluded$
|
|
5014
|
+
var _excluded$41 = ["gradient"];
|
|
5023
5015
|
|
|
5024
5016
|
/**
|
|
5025
5017
|
* @component DollarOffIcon
|
|
@@ -5049,7 +5041,7 @@
|
|
|
5049
5041
|
*/
|
|
5050
5042
|
var DollarOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5051
5043
|
var gradient = _ref.gradient,
|
|
5052
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5044
|
+
props = _objectWithoutProperties(_ref, _excluded$41);
|
|
5053
5045
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5054
5046
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5055
5047
|
width: 24,
|
|
@@ -5069,7 +5061,7 @@
|
|
|
5069
5061
|
DollarOffIcon.displayName = "DollarOffIcon";
|
|
5070
5062
|
var DollarOffIcon$1 = DollarOffIcon;
|
|
5071
5063
|
|
|
5072
|
-
var _excluded$
|
|
5064
|
+
var _excluded$40 = ["gradient"];
|
|
5073
5065
|
|
|
5074
5066
|
/**
|
|
5075
5067
|
* @component DollarSmallIcon
|
|
@@ -5099,7 +5091,7 @@
|
|
|
5099
5091
|
*/
|
|
5100
5092
|
var DollarSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5101
5093
|
var gradient = _ref.gradient,
|
|
5102
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5094
|
+
props = _objectWithoutProperties(_ref, _excluded$40);
|
|
5103
5095
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5104
5096
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5105
5097
|
width: 12,
|
|
@@ -5119,7 +5111,7 @@
|
|
|
5119
5111
|
DollarSmallIcon.displayName = "DollarSmallIcon";
|
|
5120
5112
|
var DollarSmallIcon$1 = DollarSmallIcon;
|
|
5121
5113
|
|
|
5122
|
-
var _excluded$
|
|
5114
|
+
var _excluded$3$ = ["gradient"];
|
|
5123
5115
|
|
|
5124
5116
|
/**
|
|
5125
5117
|
* @component DollarIcon
|
|
@@ -5149,7 +5141,7 @@
|
|
|
5149
5141
|
*/
|
|
5150
5142
|
var DollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5151
5143
|
var gradient = _ref.gradient,
|
|
5152
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5144
|
+
props = _objectWithoutProperties(_ref, _excluded$3$);
|
|
5153
5145
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5154
5146
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5155
5147
|
width: 24,
|
|
@@ -5169,7 +5161,7 @@
|
|
|
5169
5161
|
DollarIcon.displayName = "DollarIcon";
|
|
5170
5162
|
var DollarIcon$1 = DollarIcon;
|
|
5171
5163
|
|
|
5172
|
-
var _excluded$
|
|
5164
|
+
var _excluded$3_ = ["gradient"];
|
|
5173
5165
|
|
|
5174
5166
|
/**
|
|
5175
5167
|
* @component DownloadIcon
|
|
@@ -5199,7 +5191,7 @@
|
|
|
5199
5191
|
*/
|
|
5200
5192
|
var DownloadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5201
5193
|
var gradient = _ref.gradient,
|
|
5202
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5194
|
+
props = _objectWithoutProperties(_ref, _excluded$3_);
|
|
5203
5195
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5204
5196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5205
5197
|
width: 24,
|
|
@@ -5219,7 +5211,7 @@
|
|
|
5219
5211
|
DownloadIcon.displayName = "DownloadIcon";
|
|
5220
5212
|
var DownloadIcon$1 = DownloadIcon;
|
|
5221
5213
|
|
|
5222
|
-
var _excluded$
|
|
5214
|
+
var _excluded$3Z = ["gradient"];
|
|
5223
5215
|
|
|
5224
5216
|
/**
|
|
5225
5217
|
* @component DrawIcon
|
|
@@ -5249,7 +5241,7 @@
|
|
|
5249
5241
|
*/
|
|
5250
5242
|
var DrawIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5251
5243
|
var gradient = _ref.gradient,
|
|
5252
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5244
|
+
props = _objectWithoutProperties(_ref, _excluded$3Z);
|
|
5253
5245
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5254
5246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5255
5247
|
width: 24,
|
|
@@ -5270,7 +5262,7 @@
|
|
|
5270
5262
|
DrawIcon.displayName = "DrawIcon";
|
|
5271
5263
|
var DrawIcon$1 = DrawIcon;
|
|
5272
5264
|
|
|
5273
|
-
var _excluded$
|
|
5265
|
+
var _excluded$3Y = ["gradient"];
|
|
5274
5266
|
|
|
5275
5267
|
/**
|
|
5276
5268
|
* @component DriveIcon
|
|
@@ -5300,7 +5292,7 @@
|
|
|
5300
5292
|
*/
|
|
5301
5293
|
var DriveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5302
5294
|
var gradient = _ref.gradient,
|
|
5303
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5295
|
+
props = _objectWithoutProperties(_ref, _excluded$3Y);
|
|
5304
5296
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5305
5297
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5306
5298
|
width: 24,
|
|
@@ -5320,7 +5312,7 @@
|
|
|
5320
5312
|
DriveIcon.displayName = "DriveIcon";
|
|
5321
5313
|
var DriveIcon$1 = DriveIcon;
|
|
5322
5314
|
|
|
5323
|
-
var _excluded$
|
|
5315
|
+
var _excluded$3X = ["gradient"];
|
|
5324
5316
|
|
|
5325
5317
|
/**
|
|
5326
5318
|
* @component DropboxIcon
|
|
@@ -5350,7 +5342,7 @@
|
|
|
5350
5342
|
*/
|
|
5351
5343
|
var DropboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5352
5344
|
var gradient = _ref.gradient,
|
|
5353
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5345
|
+
props = _objectWithoutProperties(_ref, _excluded$3X);
|
|
5354
5346
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5355
5347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5356
5348
|
width: 24,
|
|
@@ -5370,7 +5362,7 @@
|
|
|
5370
5362
|
DropboxIcon.displayName = "DropboxIcon";
|
|
5371
5363
|
var DropboxIcon$1 = DropboxIcon;
|
|
5372
5364
|
|
|
5373
|
-
var _excluded$
|
|
5365
|
+
var _excluded$3W = ["gradient"];
|
|
5374
5366
|
|
|
5375
5367
|
/**
|
|
5376
5368
|
* @component DuplicateIcon
|
|
@@ -5400,7 +5392,7 @@
|
|
|
5400
5392
|
*/
|
|
5401
5393
|
var DuplicateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5402
5394
|
var gradient = _ref.gradient,
|
|
5403
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5395
|
+
props = _objectWithoutProperties(_ref, _excluded$3W);
|
|
5404
5396
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5405
5397
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5406
5398
|
width: 24,
|
|
@@ -5420,7 +5412,7 @@
|
|
|
5420
5412
|
DuplicateIcon.displayName = "DuplicateIcon";
|
|
5421
5413
|
var DuplicateIcon$1 = DuplicateIcon;
|
|
5422
5414
|
|
|
5423
|
-
var _excluded$
|
|
5415
|
+
var _excluded$3V = ["gradient"];
|
|
5424
5416
|
|
|
5425
5417
|
/**
|
|
5426
5418
|
* @component EditMultipleIcon
|
|
@@ -5450,7 +5442,7 @@
|
|
|
5450
5442
|
*/
|
|
5451
5443
|
var EditMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5452
5444
|
var gradient = _ref.gradient,
|
|
5453
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5445
|
+
props = _objectWithoutProperties(_ref, _excluded$3V);
|
|
5454
5446
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5455
5447
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5456
5448
|
width: 24,
|
|
@@ -5470,7 +5462,7 @@
|
|
|
5470
5462
|
EditMultipleIcon.displayName = "EditMultipleIcon";
|
|
5471
5463
|
var EditMultipleIcon$1 = EditMultipleIcon;
|
|
5472
5464
|
|
|
5473
|
-
var _excluded$
|
|
5465
|
+
var _excluded$3U = ["gradient"];
|
|
5474
5466
|
|
|
5475
5467
|
/**
|
|
5476
5468
|
* @component EditIcon
|
|
@@ -5500,7 +5492,7 @@
|
|
|
5500
5492
|
*/
|
|
5501
5493
|
var EditIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5502
5494
|
var gradient = _ref.gradient,
|
|
5503
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5495
|
+
props = _objectWithoutProperties(_ref, _excluded$3U);
|
|
5504
5496
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5505
5497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5506
5498
|
width: 24,
|
|
@@ -5520,7 +5512,7 @@
|
|
|
5520
5512
|
EditIcon.displayName = "EditIcon";
|
|
5521
5513
|
var EditIcon$1 = EditIcon;
|
|
5522
5514
|
|
|
5523
|
-
var _excluded$
|
|
5515
|
+
var _excluded$3T = ["gradient"];
|
|
5524
5516
|
|
|
5525
5517
|
/**
|
|
5526
5518
|
* @component EmojiIcon
|
|
@@ -5550,7 +5542,7 @@
|
|
|
5550
5542
|
*/
|
|
5551
5543
|
var EmojiIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5552
5544
|
var gradient = _ref.gradient,
|
|
5553
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5545
|
+
props = _objectWithoutProperties(_ref, _excluded$3T);
|
|
5554
5546
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5555
5547
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5556
5548
|
width: 24,
|
|
@@ -5570,7 +5562,7 @@
|
|
|
5570
5562
|
EmojiIcon.displayName = "EmojiIcon";
|
|
5571
5563
|
var EmojiIcon$1 = EmojiIcon;
|
|
5572
5564
|
|
|
5573
|
-
var _excluded$
|
|
5565
|
+
var _excluded$3S = ["gradient"];
|
|
5574
5566
|
|
|
5575
5567
|
/**
|
|
5576
5568
|
* @component EstimatePlusIcon
|
|
@@ -5600,7 +5592,7 @@
|
|
|
5600
5592
|
*/
|
|
5601
5593
|
var EstimatePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5602
5594
|
var gradient = _ref.gradient,
|
|
5603
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5595
|
+
props = _objectWithoutProperties(_ref, _excluded$3S);
|
|
5604
5596
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5605
5597
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5606
5598
|
width: 24,
|
|
@@ -5621,7 +5613,7 @@
|
|
|
5621
5613
|
EstimatePlusIcon.displayName = "EstimatePlusIcon";
|
|
5622
5614
|
var EstimatePlusIcon$1 = EstimatePlusIcon;
|
|
5623
5615
|
|
|
5624
|
-
var _excluded$
|
|
5616
|
+
var _excluded$3R = ["gradient"];
|
|
5625
5617
|
|
|
5626
5618
|
/**
|
|
5627
5619
|
* @component EstimatesIcon
|
|
@@ -5651,7 +5643,7 @@
|
|
|
5651
5643
|
*/
|
|
5652
5644
|
var EstimatesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5653
5645
|
var gradient = _ref.gradient,
|
|
5654
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5646
|
+
props = _objectWithoutProperties(_ref, _excluded$3R);
|
|
5655
5647
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5656
5648
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5657
5649
|
width: 24,
|
|
@@ -5675,7 +5667,7 @@
|
|
|
5675
5667
|
EstimatesIcon.displayName = "EstimatesIcon";
|
|
5676
5668
|
var EstimatesIcon$1 = EstimatesIcon;
|
|
5677
5669
|
|
|
5678
|
-
var _excluded$
|
|
5670
|
+
var _excluded$3Q = ["gradient"];
|
|
5679
5671
|
|
|
5680
5672
|
/**
|
|
5681
5673
|
* @component ExpandAllIcon
|
|
@@ -5705,7 +5697,7 @@
|
|
|
5705
5697
|
*/
|
|
5706
5698
|
var ExpandAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5707
5699
|
var gradient = _ref.gradient,
|
|
5708
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5700
|
+
props = _objectWithoutProperties(_ref, _excluded$3Q);
|
|
5709
5701
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5710
5702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5711
5703
|
width: 24,
|
|
@@ -5725,7 +5717,7 @@
|
|
|
5725
5717
|
ExpandAllIcon.displayName = "ExpandAllIcon";
|
|
5726
5718
|
var ExpandAllIcon$1 = ExpandAllIcon;
|
|
5727
5719
|
|
|
5728
|
-
var _excluded$
|
|
5720
|
+
var _excluded$3P = ["gradient"];
|
|
5729
5721
|
|
|
5730
5722
|
/**
|
|
5731
5723
|
* @component ExpenseAddIcon
|
|
@@ -5755,7 +5747,7 @@
|
|
|
5755
5747
|
*/
|
|
5756
5748
|
var ExpenseAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5757
5749
|
var gradient = _ref.gradient,
|
|
5758
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5750
|
+
props = _objectWithoutProperties(_ref, _excluded$3P);
|
|
5759
5751
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5760
5752
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5761
5753
|
width: 24,
|
|
@@ -5775,7 +5767,7 @@
|
|
|
5775
5767
|
ExpenseAddIcon.displayName = "ExpenseAddIcon";
|
|
5776
5768
|
var ExpenseAddIcon$1 = ExpenseAddIcon;
|
|
5777
5769
|
|
|
5778
|
-
var _excluded$
|
|
5770
|
+
var _excluded$3O = ["gradient"];
|
|
5779
5771
|
|
|
5780
5772
|
/**
|
|
5781
5773
|
* @component ExpensePlusIcon
|
|
@@ -5805,7 +5797,7 @@
|
|
|
5805
5797
|
*/
|
|
5806
5798
|
var ExpensePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5807
5799
|
var gradient = _ref.gradient,
|
|
5808
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5800
|
+
props = _objectWithoutProperties(_ref, _excluded$3O);
|
|
5809
5801
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5810
5802
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5811
5803
|
width: 24,
|
|
@@ -5827,7 +5819,7 @@
|
|
|
5827
5819
|
ExpensePlusIcon.displayName = "ExpensePlusIcon";
|
|
5828
5820
|
var ExpensePlusIcon$1 = ExpensePlusIcon;
|
|
5829
5821
|
|
|
5830
|
-
var _excluded$
|
|
5822
|
+
var _excluded$3N = ["gradient"];
|
|
5831
5823
|
|
|
5832
5824
|
/**
|
|
5833
5825
|
* @component EyeOffSmallIcon
|
|
@@ -5857,7 +5849,7 @@
|
|
|
5857
5849
|
*/
|
|
5858
5850
|
var EyeOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5859
5851
|
var gradient = _ref.gradient,
|
|
5860
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5852
|
+
props = _objectWithoutProperties(_ref, _excluded$3N);
|
|
5861
5853
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5862
5854
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5863
5855
|
width: 12,
|
|
@@ -5877,7 +5869,7 @@
|
|
|
5877
5869
|
EyeOffSmallIcon.displayName = "EyeOffSmallIcon";
|
|
5878
5870
|
var EyeOffSmallIcon$1 = EyeOffSmallIcon;
|
|
5879
5871
|
|
|
5880
|
-
var _excluded$
|
|
5872
|
+
var _excluded$3M = ["gradient"];
|
|
5881
5873
|
|
|
5882
5874
|
/**
|
|
5883
5875
|
* @component EyeOffIcon
|
|
@@ -5907,7 +5899,7 @@
|
|
|
5907
5899
|
*/
|
|
5908
5900
|
var EyeOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5909
5901
|
var gradient = _ref.gradient,
|
|
5910
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5902
|
+
props = _objectWithoutProperties(_ref, _excluded$3M);
|
|
5911
5903
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5912
5904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5913
5905
|
width: 24,
|
|
@@ -5927,7 +5919,7 @@
|
|
|
5927
5919
|
EyeOffIcon.displayName = "EyeOffIcon";
|
|
5928
5920
|
var EyeOffIcon$1 = EyeOffIcon;
|
|
5929
5921
|
|
|
5930
|
-
var _excluded$
|
|
5922
|
+
var _excluded$3L = ["gradient"];
|
|
5931
5923
|
|
|
5932
5924
|
/**
|
|
5933
5925
|
* @component EyeSmallIcon
|
|
@@ -5957,7 +5949,7 @@
|
|
|
5957
5949
|
*/
|
|
5958
5950
|
var EyeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5959
5951
|
var gradient = _ref.gradient,
|
|
5960
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5952
|
+
props = _objectWithoutProperties(_ref, _excluded$3L);
|
|
5961
5953
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5962
5954
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5963
5955
|
width: 12,
|
|
@@ -5977,7 +5969,7 @@
|
|
|
5977
5969
|
EyeSmallIcon.displayName = "EyeSmallIcon";
|
|
5978
5970
|
var EyeSmallIcon$1 = EyeSmallIcon;
|
|
5979
5971
|
|
|
5980
|
-
var _excluded$
|
|
5972
|
+
var _excluded$3K = ["gradient"];
|
|
5981
5973
|
|
|
5982
5974
|
/**
|
|
5983
5975
|
* @component EyeIcon
|
|
@@ -6007,7 +5999,7 @@
|
|
|
6007
5999
|
*/
|
|
6008
6000
|
var EyeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6009
6001
|
var gradient = _ref.gradient,
|
|
6010
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6002
|
+
props = _objectWithoutProperties(_ref, _excluded$3K);
|
|
6011
6003
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6012
6004
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6013
6005
|
width: 24,
|
|
@@ -6027,7 +6019,7 @@
|
|
|
6027
6019
|
EyeIcon.displayName = "EyeIcon";
|
|
6028
6020
|
var EyeIcon$1 = EyeIcon;
|
|
6029
6021
|
|
|
6030
|
-
var _excluded$
|
|
6022
|
+
var _excluded$3J = ["gradient"];
|
|
6031
6023
|
|
|
6032
6024
|
/**
|
|
6033
6025
|
* @component FilterIcon
|
|
@@ -6057,7 +6049,7 @@
|
|
|
6057
6049
|
*/
|
|
6058
6050
|
var FilterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6059
6051
|
var gradient = _ref.gradient,
|
|
6060
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6052
|
+
props = _objectWithoutProperties(_ref, _excluded$3J);
|
|
6061
6053
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6062
6054
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6063
6055
|
width: 24,
|
|
@@ -6077,7 +6069,7 @@
|
|
|
6077
6069
|
FilterIcon.displayName = "FilterIcon";
|
|
6078
6070
|
var FilterIcon$1 = FilterIcon;
|
|
6079
6071
|
|
|
6080
|
-
var _excluded$
|
|
6072
|
+
var _excluded$3I = ["gradient"];
|
|
6081
6073
|
|
|
6082
6074
|
/**
|
|
6083
6075
|
* @component FolderMoveIcon
|
|
@@ -6107,7 +6099,7 @@
|
|
|
6107
6099
|
*/
|
|
6108
6100
|
var FolderMoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6109
6101
|
var gradient = _ref.gradient,
|
|
6110
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6102
|
+
props = _objectWithoutProperties(_ref, _excluded$3I);
|
|
6111
6103
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6112
6104
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6113
6105
|
width: 24,
|
|
@@ -6127,7 +6119,7 @@
|
|
|
6127
6119
|
FolderMoveIcon.displayName = "FolderMoveIcon";
|
|
6128
6120
|
var FolderMoveIcon$1 = FolderMoveIcon;
|
|
6129
6121
|
|
|
6130
|
-
var _excluded$
|
|
6122
|
+
var _excluded$3H = ["gradient"];
|
|
6131
6123
|
|
|
6132
6124
|
/**
|
|
6133
6125
|
* @component FolderOutlineIcon
|
|
@@ -6157,7 +6149,7 @@
|
|
|
6157
6149
|
*/
|
|
6158
6150
|
var FolderOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6159
6151
|
var gradient = _ref.gradient,
|
|
6160
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6152
|
+
props = _objectWithoutProperties(_ref, _excluded$3H);
|
|
6161
6153
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6162
6154
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6163
6155
|
width: 24,
|
|
@@ -6177,7 +6169,7 @@
|
|
|
6177
6169
|
FolderOutlineIcon.displayName = "FolderOutlineIcon";
|
|
6178
6170
|
var FolderOutlineIcon$1 = FolderOutlineIcon;
|
|
6179
6171
|
|
|
6180
|
-
var _excluded$
|
|
6172
|
+
var _excluded$3G = ["gradient"];
|
|
6181
6173
|
|
|
6182
6174
|
/**
|
|
6183
6175
|
* @component GearIcon
|
|
@@ -6190,7 +6182,7 @@
|
|
|
6190
6182
|
*/
|
|
6191
6183
|
var GearIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6192
6184
|
var gradient = _ref.gradient,
|
|
6193
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6185
|
+
props = _objectWithoutProperties(_ref, _excluded$3G);
|
|
6194
6186
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6195
6187
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6196
6188
|
width: 24,
|
|
@@ -6215,7 +6207,7 @@
|
|
|
6215
6207
|
GearIcon.displayName = "GearIcon";
|
|
6216
6208
|
var GearIcon$1 = GearIcon;
|
|
6217
6209
|
|
|
6218
|
-
var _excluded$
|
|
6210
|
+
var _excluded$3F = ["gradient"];
|
|
6219
6211
|
var maskUid$1 = 0;
|
|
6220
6212
|
|
|
6221
6213
|
/**
|
|
@@ -6231,7 +6223,7 @@
|
|
|
6231
6223
|
*/
|
|
6232
6224
|
var GearFailedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6233
6225
|
var gradient = _ref.gradient,
|
|
6234
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6226
|
+
props = _objectWithoutProperties(_ref, _excluded$3F);
|
|
6235
6227
|
var _useState = React.useState(function () {
|
|
6236
6228
|
return "gear-failed-cut-".concat(++maskUid$1);
|
|
6237
6229
|
}),
|
|
@@ -6282,7 +6274,7 @@
|
|
|
6282
6274
|
GearFailedIcon.displayName = "GearFailedIcon";
|
|
6283
6275
|
var GearFailedIcon$1 = GearFailedIcon;
|
|
6284
6276
|
|
|
6285
|
-
var _excluded$
|
|
6277
|
+
var _excluded$3E = ["gradient"];
|
|
6286
6278
|
|
|
6287
6279
|
/**
|
|
6288
6280
|
* @component GiftIcon
|
|
@@ -6312,7 +6304,7 @@
|
|
|
6312
6304
|
*/
|
|
6313
6305
|
var GiftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6314
6306
|
var gradient = _ref.gradient,
|
|
6315
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6307
|
+
props = _objectWithoutProperties(_ref, _excluded$3E);
|
|
6316
6308
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6317
6309
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6318
6310
|
width: 24,
|
|
@@ -6333,7 +6325,7 @@
|
|
|
6333
6325
|
GiftIcon.displayName = "GiftIcon";
|
|
6334
6326
|
var GiftIcon$1 = GiftIcon;
|
|
6335
6327
|
|
|
6336
|
-
var _excluded$
|
|
6328
|
+
var _excluded$3D = ["gradient"];
|
|
6337
6329
|
|
|
6338
6330
|
/**
|
|
6339
6331
|
* @component GitBranchIcon
|
|
@@ -6346,7 +6338,7 @@
|
|
|
6346
6338
|
*/
|
|
6347
6339
|
var GitBranchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6348
6340
|
var gradient = _ref.gradient,
|
|
6349
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6341
|
+
props = _objectWithoutProperties(_ref, _excluded$3D);
|
|
6350
6342
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6351
6343
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6352
6344
|
width: 24,
|
|
@@ -6377,7 +6369,7 @@
|
|
|
6377
6369
|
GitBranchIcon.displayName = "GitBranchIcon";
|
|
6378
6370
|
var GitBranchIcon$1 = GitBranchIcon;
|
|
6379
6371
|
|
|
6380
|
-
var _excluded$
|
|
6372
|
+
var _excluded$3C = ["gradient"];
|
|
6381
6373
|
|
|
6382
6374
|
/**
|
|
6383
6375
|
* @component GitCommitIcon
|
|
@@ -6390,7 +6382,7 @@
|
|
|
6390
6382
|
*/
|
|
6391
6383
|
var GitCommitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6392
6384
|
var gradient = _ref.gradient,
|
|
6393
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6385
|
+
props = _objectWithoutProperties(_ref, _excluded$3C);
|
|
6394
6386
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6395
6387
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6396
6388
|
width: 24,
|
|
@@ -6417,7 +6409,7 @@
|
|
|
6417
6409
|
GitCommitIcon.displayName = "GitCommitIcon";
|
|
6418
6410
|
var GitCommitIcon$1 = GitCommitIcon;
|
|
6419
6411
|
|
|
6420
|
-
var _excluded$
|
|
6412
|
+
var _excluded$3B = ["gradient"];
|
|
6421
6413
|
|
|
6422
6414
|
/**
|
|
6423
6415
|
* @component GitHubIcon
|
|
@@ -6432,7 +6424,7 @@
|
|
|
6432
6424
|
*/
|
|
6433
6425
|
var GitHubIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6434
6426
|
var gradient = _ref.gradient,
|
|
6435
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6427
|
+
props = _objectWithoutProperties(_ref, _excluded$3B);
|
|
6436
6428
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6437
6429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6438
6430
|
width: 24,
|
|
@@ -6453,7 +6445,7 @@
|
|
|
6453
6445
|
GitHubIcon.displayName = "GitHubIcon";
|
|
6454
6446
|
var GitHubIcon$1 = GitHubIcon;
|
|
6455
6447
|
|
|
6456
|
-
var _excluded$
|
|
6448
|
+
var _excluded$3A = ["gradient"];
|
|
6457
6449
|
|
|
6458
6450
|
/**
|
|
6459
6451
|
* @component GitIcon
|
|
@@ -6468,7 +6460,7 @@
|
|
|
6468
6460
|
*/
|
|
6469
6461
|
var GitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6470
6462
|
var gradient = _ref.gradient,
|
|
6471
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6463
|
+
props = _objectWithoutProperties(_ref, _excluded$3A);
|
|
6472
6464
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6473
6465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6474
6466
|
width: 24,
|
|
@@ -6489,7 +6481,7 @@
|
|
|
6489
6481
|
GitIcon.displayName = "GitIcon";
|
|
6490
6482
|
var GitIcon$1 = GitIcon;
|
|
6491
6483
|
|
|
6492
|
-
var _excluded$
|
|
6484
|
+
var _excluded$3z = ["gradient"];
|
|
6493
6485
|
|
|
6494
6486
|
/**
|
|
6495
6487
|
* @component GitLabIcon
|
|
@@ -6504,7 +6496,7 @@
|
|
|
6504
6496
|
*/
|
|
6505
6497
|
var GitLabIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6506
6498
|
var gradient = _ref.gradient,
|
|
6507
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6499
|
+
props = _objectWithoutProperties(_ref, _excluded$3z);
|
|
6508
6500
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6509
6501
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6510
6502
|
width: 24,
|
|
@@ -6525,7 +6517,7 @@
|
|
|
6525
6517
|
GitLabIcon.displayName = "GitLabIcon";
|
|
6526
6518
|
var GitLabIcon$1 = GitLabIcon;
|
|
6527
6519
|
|
|
6528
|
-
var _excluded$
|
|
6520
|
+
var _excluded$3y = ["gradient"];
|
|
6529
6521
|
|
|
6530
6522
|
/**
|
|
6531
6523
|
* @component GitMergeIcon
|
|
@@ -6540,7 +6532,7 @@
|
|
|
6540
6532
|
*/
|
|
6541
6533
|
var GitMergeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6542
6534
|
var gradient = _ref.gradient,
|
|
6543
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6535
|
+
props = _objectWithoutProperties(_ref, _excluded$3y);
|
|
6544
6536
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6545
6537
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6546
6538
|
width: 24,
|
|
@@ -6571,7 +6563,7 @@
|
|
|
6571
6563
|
GitMergeIcon.displayName = "GitMergeIcon";
|
|
6572
6564
|
var GitMergeIcon$1 = GitMergeIcon;
|
|
6573
6565
|
|
|
6574
|
-
var _excluded$
|
|
6566
|
+
var _excluded$3x = ["gradient"];
|
|
6575
6567
|
|
|
6576
6568
|
/**
|
|
6577
6569
|
* @component GitPullRequestIcon
|
|
@@ -6584,7 +6576,7 @@
|
|
|
6584
6576
|
*/
|
|
6585
6577
|
var GitPullRequestIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6586
6578
|
var gradient = _ref.gradient,
|
|
6587
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6579
|
+
props = _objectWithoutProperties(_ref, _excluded$3x);
|
|
6588
6580
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6589
6581
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6590
6582
|
width: 24,
|
|
@@ -6617,7 +6609,7 @@
|
|
|
6617
6609
|
GitPullRequestIcon.displayName = "GitPullRequestIcon";
|
|
6618
6610
|
var GitPullRequestIcon$1 = GitPullRequestIcon;
|
|
6619
6611
|
|
|
6620
|
-
var _excluded$
|
|
6612
|
+
var _excluded$3w = ["gradient"];
|
|
6621
6613
|
|
|
6622
6614
|
/**
|
|
6623
6615
|
* @component GitPullRequestDraftIcon
|
|
@@ -6632,7 +6624,7 @@
|
|
|
6632
6624
|
*/
|
|
6633
6625
|
var GitPullRequestDraftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6634
6626
|
var gradient = _ref.gradient,
|
|
6635
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6627
|
+
props = _objectWithoutProperties(_ref, _excluded$3w);
|
|
6636
6628
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6637
6629
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6638
6630
|
width: 24,
|
|
@@ -6666,7 +6658,7 @@
|
|
|
6666
6658
|
GitPullRequestDraftIcon.displayName = "GitPullRequestDraftIcon";
|
|
6667
6659
|
var GitPullRequestDraftIcon$1 = GitPullRequestDraftIcon;
|
|
6668
6660
|
|
|
6669
|
-
var _excluded$
|
|
6661
|
+
var _excluded$3v = ["gradient"];
|
|
6670
6662
|
|
|
6671
6663
|
/**
|
|
6672
6664
|
* @component GitPullRequestClosedIcon
|
|
@@ -6682,7 +6674,7 @@
|
|
|
6682
6674
|
*/
|
|
6683
6675
|
var GitPullRequestClosedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6684
6676
|
var gradient = _ref.gradient,
|
|
6685
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6677
|
+
props = _objectWithoutProperties(_ref, _excluded$3v);
|
|
6686
6678
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6687
6679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6688
6680
|
width: 24,
|
|
@@ -6719,7 +6711,7 @@
|
|
|
6719
6711
|
GitPullRequestClosedIcon.displayName = "GitPullRequestClosedIcon";
|
|
6720
6712
|
var GitPullRequestClosedIcon$1 = GitPullRequestClosedIcon;
|
|
6721
6713
|
|
|
6722
|
-
var _excluded$
|
|
6714
|
+
var _excluded$3u = ["gradient"];
|
|
6723
6715
|
|
|
6724
6716
|
/**
|
|
6725
6717
|
* @component GitRepositoryIcon
|
|
@@ -6733,7 +6725,7 @@
|
|
|
6733
6725
|
*/
|
|
6734
6726
|
var GitRepositoryIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6735
6727
|
var gradient = _ref.gradient,
|
|
6736
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6728
|
+
props = _objectWithoutProperties(_ref, _excluded$3u);
|
|
6737
6729
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6738
6730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6739
6731
|
width: 24,
|
|
@@ -6762,7 +6754,7 @@
|
|
|
6762
6754
|
GitRepositoryIcon.displayName = "GitRepositoryIcon";
|
|
6763
6755
|
var GitRepositoryIcon$1 = GitRepositoryIcon;
|
|
6764
6756
|
|
|
6765
|
-
var _excluded$
|
|
6757
|
+
var _excluded$3t = ["gradient"];
|
|
6766
6758
|
var maskUid = 0;
|
|
6767
6759
|
|
|
6768
6760
|
/**
|
|
@@ -6778,7 +6770,7 @@
|
|
|
6778
6770
|
*/
|
|
6779
6771
|
var GitRepositoryConnectIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6780
6772
|
var gradient = _ref.gradient,
|
|
6781
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6773
|
+
props = _objectWithoutProperties(_ref, _excluded$3t);
|
|
6782
6774
|
var _useState = React.useState(function () {
|
|
6783
6775
|
return "git-repository-connect-cut-".concat(++maskUid);
|
|
6784
6776
|
}),
|
|
@@ -6839,7 +6831,7 @@
|
|
|
6839
6831
|
GitRepositoryConnectIcon.displayName = "GitRepositoryConnectIcon";
|
|
6840
6832
|
var GitRepositoryConnectIcon$1 = GitRepositoryConnectIcon;
|
|
6841
6833
|
|
|
6842
|
-
var _excluded$
|
|
6834
|
+
var _excluded$3s = ["gradient"];
|
|
6843
6835
|
|
|
6844
6836
|
/**
|
|
6845
6837
|
* @component GroupByIcon
|
|
@@ -6869,7 +6861,7 @@
|
|
|
6869
6861
|
*/
|
|
6870
6862
|
var GroupByIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6871
6863
|
var gradient = _ref.gradient,
|
|
6872
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6864
|
+
props = _objectWithoutProperties(_ref, _excluded$3s);
|
|
6873
6865
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6874
6866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6875
6867
|
width: 24,
|
|
@@ -6888,7 +6880,7 @@
|
|
|
6888
6880
|
GroupByIcon.displayName = "GroupByIcon";
|
|
6889
6881
|
var GroupByIcon$1 = GroupByIcon;
|
|
6890
6882
|
|
|
6891
|
-
var _excluded$
|
|
6883
|
+
var _excluded$3r = ["gradient"];
|
|
6892
6884
|
|
|
6893
6885
|
/**
|
|
6894
6886
|
* @component HashtagIcon
|
|
@@ -6918,7 +6910,7 @@
|
|
|
6918
6910
|
*/
|
|
6919
6911
|
var HashtagIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6920
6912
|
var gradient = _ref.gradient,
|
|
6921
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6913
|
+
props = _objectWithoutProperties(_ref, _excluded$3r);
|
|
6922
6914
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6923
6915
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6924
6916
|
width: 24,
|
|
@@ -6939,7 +6931,7 @@
|
|
|
6939
6931
|
HashtagIcon.displayName = "HashtagIcon";
|
|
6940
6932
|
var HashtagIcon$1 = HashtagIcon;
|
|
6941
6933
|
|
|
6942
|
-
var _excluded$
|
|
6934
|
+
var _excluded$3q = ["gradient"];
|
|
6943
6935
|
|
|
6944
6936
|
/**
|
|
6945
6937
|
* @component HelpIcon
|
|
@@ -6969,7 +6961,7 @@
|
|
|
6969
6961
|
*/
|
|
6970
6962
|
var HelpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6971
6963
|
var gradient = _ref.gradient,
|
|
6972
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6964
|
+
props = _objectWithoutProperties(_ref, _excluded$3q);
|
|
6973
6965
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6974
6966
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6975
6967
|
width: 24,
|
|
@@ -6989,7 +6981,7 @@
|
|
|
6989
6981
|
HelpIcon.displayName = "HelpIcon";
|
|
6990
6982
|
var HelpIcon$1 = HelpIcon;
|
|
6991
6983
|
|
|
6992
|
-
var _excluded$
|
|
6984
|
+
var _excluded$3p = ["gradient"];
|
|
6993
6985
|
|
|
6994
6986
|
/**
|
|
6995
6987
|
* @component HistoryOfChangesIcon
|
|
@@ -7019,7 +7011,7 @@
|
|
|
7019
7011
|
*/
|
|
7020
7012
|
var HistoryOfChangesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7021
7013
|
var gradient = _ref.gradient,
|
|
7022
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7014
|
+
props = _objectWithoutProperties(_ref, _excluded$3p);
|
|
7023
7015
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7024
7016
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7025
7017
|
width: 24,
|
|
@@ -7040,7 +7032,7 @@
|
|
|
7040
7032
|
HistoryOfChangesIcon.displayName = "HistoryOfChangesIcon";
|
|
7041
7033
|
var HistoryOfChangesIcon$1 = HistoryOfChangesIcon;
|
|
7042
7034
|
|
|
7043
|
-
var _excluded$
|
|
7035
|
+
var _excluded$3o = ["gradient"];
|
|
7044
7036
|
|
|
7045
7037
|
/**
|
|
7046
7038
|
* @component ImageIcon
|
|
@@ -7070,7 +7062,7 @@
|
|
|
7070
7062
|
*/
|
|
7071
7063
|
var ImageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7072
7064
|
var gradient = _ref.gradient,
|
|
7073
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7065
|
+
props = _objectWithoutProperties(_ref, _excluded$3o);
|
|
7074
7066
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7075
7067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7076
7068
|
width: 24,
|
|
@@ -7091,7 +7083,7 @@
|
|
|
7091
7083
|
ImageIcon.displayName = "ImageIcon";
|
|
7092
7084
|
var ImageIcon$1 = ImageIcon;
|
|
7093
7085
|
|
|
7094
|
-
var _excluded$
|
|
7086
|
+
var _excluded$3n = ["gradient"];
|
|
7095
7087
|
|
|
7096
7088
|
/**
|
|
7097
7089
|
* @component InfoSmallIcon
|
|
@@ -7121,7 +7113,7 @@
|
|
|
7121
7113
|
*/
|
|
7122
7114
|
var InfoSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7123
7115
|
var gradient = _ref.gradient,
|
|
7124
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7116
|
+
props = _objectWithoutProperties(_ref, _excluded$3n);
|
|
7125
7117
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7126
7118
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7127
7119
|
width: 15,
|
|
@@ -7141,7 +7133,7 @@
|
|
|
7141
7133
|
InfoSmallIcon.displayName = "InfoSmallIcon";
|
|
7142
7134
|
var InfoSmallIcon$1 = InfoSmallIcon;
|
|
7143
7135
|
|
|
7144
|
-
var _excluded$
|
|
7136
|
+
var _excluded$3m = ["gradient"];
|
|
7145
7137
|
|
|
7146
7138
|
/**
|
|
7147
7139
|
* @component InfoIcon
|
|
@@ -7171,7 +7163,7 @@
|
|
|
7171
7163
|
*/
|
|
7172
7164
|
var InfoIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7173
7165
|
var gradient = _ref.gradient,
|
|
7174
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7166
|
+
props = _objectWithoutProperties(_ref, _excluded$3m);
|
|
7175
7167
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7176
7168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7177
7169
|
width: 24,
|
|
@@ -7191,7 +7183,7 @@
|
|
|
7191
7183
|
InfoIcon.displayName = "InfoIcon";
|
|
7192
7184
|
var InfoIcon$1 = InfoIcon;
|
|
7193
7185
|
|
|
7194
|
-
var _excluded$
|
|
7186
|
+
var _excluded$3l = ["gradient"];
|
|
7195
7187
|
|
|
7196
7188
|
/**
|
|
7197
7189
|
* @component InsertLinkIcon
|
|
@@ -7221,7 +7213,7 @@
|
|
|
7221
7213
|
*/
|
|
7222
7214
|
var InsertLinkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7223
7215
|
var gradient = _ref.gradient,
|
|
7224
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7216
|
+
props = _objectWithoutProperties(_ref, _excluded$3l);
|
|
7225
7217
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7226
7218
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7227
7219
|
width: 24,
|
|
@@ -7241,7 +7233,7 @@
|
|
|
7241
7233
|
InsertLinkIcon.displayName = "InsertLinkIcon";
|
|
7242
7234
|
var InsertLinkIcon$1 = InsertLinkIcon;
|
|
7243
7235
|
|
|
7244
|
-
var _excluded$
|
|
7236
|
+
var _excluded$3k = ["gradient"];
|
|
7245
7237
|
|
|
7246
7238
|
/**
|
|
7247
7239
|
* @component IntegrationsIcon
|
|
@@ -7271,7 +7263,7 @@
|
|
|
7271
7263
|
*/
|
|
7272
7264
|
var IntegrationsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7273
7265
|
var gradient = _ref.gradient,
|
|
7274
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7266
|
+
props = _objectWithoutProperties(_ref, _excluded$3k);
|
|
7275
7267
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7276
7268
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7277
7269
|
width: 24,
|
|
@@ -7295,7 +7287,7 @@
|
|
|
7295
7287
|
IntegrationsIcon.displayName = "IntegrationsIcon";
|
|
7296
7288
|
var IntegrationsIcon$1 = IntegrationsIcon;
|
|
7297
7289
|
|
|
7298
|
-
var _excluded$
|
|
7290
|
+
var _excluded$3j = ["gradient"];
|
|
7299
7291
|
|
|
7300
7292
|
/**
|
|
7301
7293
|
* @component InvoicesIcon
|
|
@@ -7325,7 +7317,7 @@
|
|
|
7325
7317
|
*/
|
|
7326
7318
|
var InvoicesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7327
7319
|
var gradient = _ref.gradient,
|
|
7328
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7320
|
+
props = _objectWithoutProperties(_ref, _excluded$3j);
|
|
7329
7321
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7330
7322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7331
7323
|
width: 24,
|
|
@@ -7349,7 +7341,7 @@
|
|
|
7349
7341
|
InvoicesIcon.displayName = "InvoicesIcon";
|
|
7350
7342
|
var InvoicesIcon$1 = InvoicesIcon;
|
|
7351
7343
|
|
|
7352
|
-
var _excluded$
|
|
7344
|
+
var _excluded$3i = ["gradient"];
|
|
7353
7345
|
|
|
7354
7346
|
/**
|
|
7355
7347
|
* @component KeyIcon
|
|
@@ -7379,7 +7371,7 @@
|
|
|
7379
7371
|
*/
|
|
7380
7372
|
var KeyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7381
7373
|
var gradient = _ref.gradient,
|
|
7382
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7374
|
+
props = _objectWithoutProperties(_ref, _excluded$3i);
|
|
7383
7375
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7384
7376
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7385
7377
|
width: 24,
|
|
@@ -7398,7 +7390,7 @@
|
|
|
7398
7390
|
KeyIcon.displayName = "KeyIcon";
|
|
7399
7391
|
var KeyIcon$1 = KeyIcon;
|
|
7400
7392
|
|
|
7401
|
-
var _excluded$
|
|
7393
|
+
var _excluded$3h = ["gradient"];
|
|
7402
7394
|
|
|
7403
7395
|
/**
|
|
7404
7396
|
* @component LabelsIcon
|
|
@@ -7428,7 +7420,7 @@
|
|
|
7428
7420
|
*/
|
|
7429
7421
|
var LabelsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7430
7422
|
var gradient = _ref.gradient,
|
|
7431
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7423
|
+
props = _objectWithoutProperties(_ref, _excluded$3h);
|
|
7432
7424
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7433
7425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7434
7426
|
width: 24,
|
|
@@ -7448,7 +7440,7 @@
|
|
|
7448
7440
|
LabelsIcon.displayName = "LabelsIcon";
|
|
7449
7441
|
var LabelsIcon$1 = LabelsIcon;
|
|
7450
7442
|
|
|
7451
|
-
var _excluded$
|
|
7443
|
+
var _excluded$3g = ["gradient"];
|
|
7452
7444
|
|
|
7453
7445
|
/**
|
|
7454
7446
|
* @component LetterArrowRightIcon
|
|
@@ -7478,7 +7470,7 @@
|
|
|
7478
7470
|
*/
|
|
7479
7471
|
var LetterArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7480
7472
|
var gradient = _ref.gradient,
|
|
7481
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7473
|
+
props = _objectWithoutProperties(_ref, _excluded$3g);
|
|
7482
7474
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7483
7475
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7484
7476
|
width: 24,
|
|
@@ -7499,7 +7491,7 @@
|
|
|
7499
7491
|
LetterArrowRightIcon.displayName = "LetterArrowRightIcon";
|
|
7500
7492
|
var LetterArrowRightIcon$1 = LetterArrowRightIcon;
|
|
7501
7493
|
|
|
7502
|
-
var _excluded$
|
|
7494
|
+
var _excluded$3f = ["gradient"];
|
|
7503
7495
|
|
|
7504
7496
|
/**
|
|
7505
7497
|
* @component LetterFastIcon
|
|
@@ -7529,7 +7521,7 @@
|
|
|
7529
7521
|
*/
|
|
7530
7522
|
var LetterFastIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7531
7523
|
var gradient = _ref.gradient,
|
|
7532
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7524
|
+
props = _objectWithoutProperties(_ref, _excluded$3f);
|
|
7533
7525
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7534
7526
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7535
7527
|
width: 24,
|
|
@@ -7549,7 +7541,7 @@
|
|
|
7549
7541
|
LetterFastIcon.displayName = "LetterFastIcon";
|
|
7550
7542
|
var LetterFastIcon$1 = LetterFastIcon;
|
|
7551
7543
|
|
|
7552
|
-
var _excluded$
|
|
7544
|
+
var _excluded$3e = ["gradient"];
|
|
7553
7545
|
|
|
7554
7546
|
/**
|
|
7555
7547
|
* @component LetterIcon
|
|
@@ -7579,7 +7571,7 @@
|
|
|
7579
7571
|
*/
|
|
7580
7572
|
var LetterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7581
7573
|
var gradient = _ref.gradient,
|
|
7582
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7574
|
+
props = _objectWithoutProperties(_ref, _excluded$3e);
|
|
7583
7575
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7584
7576
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7585
7577
|
width: 24,
|
|
@@ -7600,7 +7592,7 @@
|
|
|
7600
7592
|
LetterIcon.displayName = "LetterIcon";
|
|
7601
7593
|
var LetterIcon$1 = LetterIcon;
|
|
7602
7594
|
|
|
7603
|
-
var _excluded$
|
|
7595
|
+
var _excluded$3d = ["gradient"];
|
|
7604
7596
|
|
|
7605
7597
|
/**
|
|
7606
7598
|
* @component LockSmallIcon
|
|
@@ -7630,7 +7622,7 @@
|
|
|
7630
7622
|
*/
|
|
7631
7623
|
var LockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7632
7624
|
var gradient = _ref.gradient,
|
|
7633
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7625
|
+
props = _objectWithoutProperties(_ref, _excluded$3d);
|
|
7634
7626
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7635
7627
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7636
7628
|
width: 12,
|
|
@@ -7650,7 +7642,7 @@
|
|
|
7650
7642
|
LockSmallIcon.displayName = "LockSmallIcon";
|
|
7651
7643
|
var LockSmallIcon$1 = LockSmallIcon;
|
|
7652
7644
|
|
|
7653
|
-
var _excluded$
|
|
7645
|
+
var _excluded$3c = ["gradient"];
|
|
7654
7646
|
|
|
7655
7647
|
/**
|
|
7656
7648
|
* @component LockIcon
|
|
@@ -7680,7 +7672,7 @@
|
|
|
7680
7672
|
*/
|
|
7681
7673
|
var LockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7682
7674
|
var gradient = _ref.gradient,
|
|
7683
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7675
|
+
props = _objectWithoutProperties(_ref, _excluded$3c);
|
|
7684
7676
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7685
7677
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7686
7678
|
width: 24,
|
|
@@ -7700,7 +7692,7 @@
|
|
|
7700
7692
|
LockIcon.displayName = "LockIcon";
|
|
7701
7693
|
var LockIcon$1 = LockIcon;
|
|
7702
7694
|
|
|
7703
|
-
var _excluded$
|
|
7695
|
+
var _excluded$3b = ["gradient"];
|
|
7704
7696
|
|
|
7705
7697
|
/**
|
|
7706
7698
|
* @component MarkerIcon
|
|
@@ -7730,7 +7722,7 @@
|
|
|
7730
7722
|
*/
|
|
7731
7723
|
var MarkerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7732
7724
|
var gradient = _ref.gradient,
|
|
7733
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7725
|
+
props = _objectWithoutProperties(_ref, _excluded$3b);
|
|
7734
7726
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7735
7727
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7736
7728
|
width: 24,
|
|
@@ -7750,7 +7742,7 @@
|
|
|
7750
7742
|
MarkerIcon.displayName = "MarkerIcon";
|
|
7751
7743
|
var MarkerIcon$1 = MarkerIcon;
|
|
7752
7744
|
|
|
7753
|
-
var _excluded$
|
|
7745
|
+
var _excluded$3a = ["gradient"];
|
|
7754
7746
|
|
|
7755
7747
|
/**
|
|
7756
7748
|
* @component MessageAddIcon
|
|
@@ -7780,7 +7772,7 @@
|
|
|
7780
7772
|
*/
|
|
7781
7773
|
var MessageAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7782
7774
|
var gradient = _ref.gradient,
|
|
7783
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7775
|
+
props = _objectWithoutProperties(_ref, _excluded$3a);
|
|
7784
7776
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7785
7777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7786
7778
|
width: 24,
|
|
@@ -7799,7 +7791,7 @@
|
|
|
7799
7791
|
MessageAddIcon.displayName = "MessageAddIcon";
|
|
7800
7792
|
var MessageAddIcon$1 = MessageAddIcon;
|
|
7801
7793
|
|
|
7802
|
-
var _excluded$
|
|
7794
|
+
var _excluded$39 = ["gradient"];
|
|
7803
7795
|
|
|
7804
7796
|
/**
|
|
7805
7797
|
* @component MessageEmptyIcon
|
|
@@ -7829,7 +7821,7 @@
|
|
|
7829
7821
|
*/
|
|
7830
7822
|
var MessageEmptyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7831
7823
|
var gradient = _ref.gradient,
|
|
7832
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7824
|
+
props = _objectWithoutProperties(_ref, _excluded$39);
|
|
7833
7825
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7834
7826
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7835
7827
|
width: 24,
|
|
@@ -7849,7 +7841,7 @@
|
|
|
7849
7841
|
MessageEmptyIcon.displayName = "MessageEmptyIcon";
|
|
7850
7842
|
var MessageEmptyIcon$1 = MessageEmptyIcon;
|
|
7851
7843
|
|
|
7852
|
-
var _excluded$
|
|
7844
|
+
var _excluded$38 = ["gradient"];
|
|
7853
7845
|
|
|
7854
7846
|
/**
|
|
7855
7847
|
* @component MessageSmallIcon
|
|
@@ -7879,7 +7871,7 @@
|
|
|
7879
7871
|
*/
|
|
7880
7872
|
var MessageSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7881
7873
|
var gradient = _ref.gradient,
|
|
7882
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7874
|
+
props = _objectWithoutProperties(_ref, _excluded$38);
|
|
7883
7875
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7884
7876
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7885
7877
|
width: 12,
|
|
@@ -7899,7 +7891,7 @@
|
|
|
7899
7891
|
MessageSmallIcon.displayName = "MessageSmallIcon";
|
|
7900
7892
|
var MessageSmallIcon$1 = MessageSmallIcon;
|
|
7901
7893
|
|
|
7902
|
-
var _excluded$
|
|
7894
|
+
var _excluded$37 = ["gradient"];
|
|
7903
7895
|
|
|
7904
7896
|
/**
|
|
7905
7897
|
* @component MessageSolidIcon
|
|
@@ -7929,7 +7921,7 @@
|
|
|
7929
7921
|
*/
|
|
7930
7922
|
var MessageSolidIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7931
7923
|
var gradient = _ref.gradient,
|
|
7932
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7924
|
+
props = _objectWithoutProperties(_ref, _excluded$37);
|
|
7933
7925
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7934
7926
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7935
7927
|
width: 24,
|
|
@@ -7949,7 +7941,7 @@
|
|
|
7949
7941
|
MessageSolidIcon.displayName = "MessageSolidIcon";
|
|
7950
7942
|
var MessageSolidIcon$1 = MessageSolidIcon;
|
|
7951
7943
|
|
|
7952
|
-
var _excluded$
|
|
7944
|
+
var _excluded$36 = ["gradient"];
|
|
7953
7945
|
|
|
7954
7946
|
/**
|
|
7955
7947
|
* @component MessageStarIcon
|
|
@@ -7979,7 +7971,7 @@
|
|
|
7979
7971
|
*/
|
|
7980
7972
|
var MessageStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7981
7973
|
var gradient = _ref.gradient,
|
|
7982
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7974
|
+
props = _objectWithoutProperties(_ref, _excluded$36);
|
|
7983
7975
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7984
7976
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7985
7977
|
width: 24,
|
|
@@ -8002,7 +7994,7 @@
|
|
|
8002
7994
|
MessageStarIcon.displayName = "MessageStarIcon";
|
|
8003
7995
|
var MessageStarIcon$1 = MessageStarIcon;
|
|
8004
7996
|
|
|
8005
|
-
var _excluded$
|
|
7997
|
+
var _excluded$35 = ["gradient"];
|
|
8006
7998
|
|
|
8007
7999
|
/**
|
|
8008
8000
|
* @component MessageIcon
|
|
@@ -8032,7 +8024,7 @@
|
|
|
8032
8024
|
*/
|
|
8033
8025
|
var MessageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8034
8026
|
var gradient = _ref.gradient,
|
|
8035
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8027
|
+
props = _objectWithoutProperties(_ref, _excluded$35);
|
|
8036
8028
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8037
8029
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8038
8030
|
width: 24,
|
|
@@ -8052,7 +8044,7 @@
|
|
|
8052
8044
|
MessageIcon.displayName = "MessageIcon";
|
|
8053
8045
|
var MessageIcon$1 = MessageIcon;
|
|
8054
8046
|
|
|
8055
|
-
var _excluded$
|
|
8047
|
+
var _excluded$34 = ["gradient"];
|
|
8056
8048
|
|
|
8057
8049
|
/**
|
|
8058
8050
|
* @component MinusIcon
|
|
@@ -8082,7 +8074,7 @@
|
|
|
8082
8074
|
*/
|
|
8083
8075
|
var MinusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8084
8076
|
var gradient = _ref.gradient,
|
|
8085
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8077
|
+
props = _objectWithoutProperties(_ref, _excluded$34);
|
|
8086
8078
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8087
8079
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8088
8080
|
width: 24,
|
|
@@ -8106,7 +8098,7 @@
|
|
|
8106
8098
|
MinusIcon.displayName = "MinusIcon";
|
|
8107
8099
|
var MinusIcon$1 = MinusIcon;
|
|
8108
8100
|
|
|
8109
|
-
var _excluded$
|
|
8101
|
+
var _excluded$33 = ["gradient"];
|
|
8110
8102
|
|
|
8111
8103
|
/**
|
|
8112
8104
|
* @component MobileMenuIcon
|
|
@@ -8136,7 +8128,7 @@
|
|
|
8136
8128
|
*/
|
|
8137
8129
|
var MobileMenuIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8138
8130
|
var gradient = _ref.gradient,
|
|
8139
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8131
|
+
props = _objectWithoutProperties(_ref, _excluded$33);
|
|
8140
8132
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8141
8133
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8142
8134
|
width: 24,
|
|
@@ -8157,7 +8149,7 @@
|
|
|
8157
8149
|
MobileMenuIcon.displayName = "MobileMenuIcon";
|
|
8158
8150
|
var MobileMenuIcon$1 = MobileMenuIcon;
|
|
8159
8151
|
|
|
8160
|
-
var _excluded$
|
|
8152
|
+
var _excluded$32 = ["gradient"];
|
|
8161
8153
|
|
|
8162
8154
|
/**
|
|
8163
8155
|
* @component MoneyStackIcon
|
|
@@ -8187,7 +8179,7 @@
|
|
|
8187
8179
|
*/
|
|
8188
8180
|
var MoneyStackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8189
8181
|
var gradient = _ref.gradient,
|
|
8190
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8182
|
+
props = _objectWithoutProperties(_ref, _excluded$32);
|
|
8191
8183
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8192
8184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8193
8185
|
width: 24,
|
|
@@ -8214,7 +8206,7 @@
|
|
|
8214
8206
|
MoneyStackIcon.displayName = "MoneyStackIcon";
|
|
8215
8207
|
var MoneyStackIcon$1 = MoneyStackIcon;
|
|
8216
8208
|
|
|
8217
|
-
var _excluded$
|
|
8209
|
+
var _excluded$31 = ["gradient"];
|
|
8218
8210
|
|
|
8219
8211
|
/**
|
|
8220
8212
|
* @component MoonIcon
|
|
@@ -8244,7 +8236,7 @@
|
|
|
8244
8236
|
*/
|
|
8245
8237
|
var MoonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8246
8238
|
var gradient = _ref.gradient,
|
|
8247
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8239
|
+
props = _objectWithoutProperties(_ref, _excluded$31);
|
|
8248
8240
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8249
8241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8250
8242
|
width: 20,
|
|
@@ -8265,7 +8257,7 @@
|
|
|
8265
8257
|
MoonIcon.displayName = "MoonIcon";
|
|
8266
8258
|
var MoonIcon$1 = MoonIcon;
|
|
8267
8259
|
|
|
8268
|
-
var _excluded$
|
|
8260
|
+
var _excluded$30 = ["gradient"];
|
|
8269
8261
|
|
|
8270
8262
|
/**
|
|
8271
8263
|
* @component MoveTriggerIcon
|
|
@@ -8295,7 +8287,7 @@
|
|
|
8295
8287
|
*/
|
|
8296
8288
|
var MoveTriggerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8297
8289
|
var gradient = _ref.gradient,
|
|
8298
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8290
|
+
props = _objectWithoutProperties(_ref, _excluded$30);
|
|
8299
8291
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8300
8292
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8301
8293
|
width: 10,
|
|
@@ -8315,7 +8307,7 @@
|
|
|
8315
8307
|
MoveTriggerIcon.displayName = "MoveTriggerIcon";
|
|
8316
8308
|
var MoveTriggerIcon$1 = MoveTriggerIcon;
|
|
8317
8309
|
|
|
8318
|
-
var _excluded$
|
|
8310
|
+
var _excluded$2$ = ["gradient"];
|
|
8319
8311
|
|
|
8320
8312
|
/**
|
|
8321
8313
|
* @component MoveIcon
|
|
@@ -8345,7 +8337,7 @@
|
|
|
8345
8337
|
*/
|
|
8346
8338
|
var MoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8347
8339
|
var gradient = _ref.gradient,
|
|
8348
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8340
|
+
props = _objectWithoutProperties(_ref, _excluded$2$);
|
|
8349
8341
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8350
8342
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8351
8343
|
width: 24,
|
|
@@ -8366,7 +8358,7 @@
|
|
|
8366
8358
|
MoveIcon.displayName = "MoveIcon";
|
|
8367
8359
|
var MoveIcon$1 = MoveIcon;
|
|
8368
8360
|
|
|
8369
|
-
var _excluded$
|
|
8361
|
+
var _excluded$2_ = ["gradient"];
|
|
8370
8362
|
|
|
8371
8363
|
/**
|
|
8372
8364
|
* @component MyWorkIcon
|
|
@@ -8396,7 +8388,7 @@
|
|
|
8396
8388
|
*/
|
|
8397
8389
|
var MyWorkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8398
8390
|
var gradient = _ref.gradient,
|
|
8399
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8391
|
+
props = _objectWithoutProperties(_ref, _excluded$2_);
|
|
8400
8392
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8401
8393
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8402
8394
|
width: 24,
|
|
@@ -8420,7 +8412,7 @@
|
|
|
8420
8412
|
MyWorkIcon.displayName = "MyWorkIcon";
|
|
8421
8413
|
var MyWorkIcon$1 = MyWorkIcon;
|
|
8422
8414
|
|
|
8423
|
-
var _excluded$
|
|
8415
|
+
var _excluded$2Z = ["gradient"];
|
|
8424
8416
|
|
|
8425
8417
|
/**
|
|
8426
8418
|
* @component NoteAddIcon
|
|
@@ -8450,7 +8442,7 @@
|
|
|
8450
8442
|
*/
|
|
8451
8443
|
var NoteAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8452
8444
|
var gradient = _ref.gradient,
|
|
8453
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8445
|
+
props = _objectWithoutProperties(_ref, _excluded$2Z);
|
|
8454
8446
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8455
8447
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8456
8448
|
width: 24,
|
|
@@ -8470,7 +8462,7 @@
|
|
|
8470
8462
|
NoteAddIcon.displayName = "NoteAddIcon";
|
|
8471
8463
|
var NoteAddIcon$1 = NoteAddIcon;
|
|
8472
8464
|
|
|
8473
|
-
var _excluded$
|
|
8465
|
+
var _excluded$2Y = ["gradient"];
|
|
8474
8466
|
|
|
8475
8467
|
/**
|
|
8476
8468
|
* @component NoteIcon
|
|
@@ -8500,7 +8492,7 @@
|
|
|
8500
8492
|
*/
|
|
8501
8493
|
var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8502
8494
|
var gradient = _ref.gradient,
|
|
8503
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8495
|
+
props = _objectWithoutProperties(_ref, _excluded$2Y);
|
|
8504
8496
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8505
8497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8506
8498
|
width: 24,
|
|
@@ -8520,7 +8512,7 @@
|
|
|
8520
8512
|
NoteIcon.displayName = "NoteIcon";
|
|
8521
8513
|
var NoteIcon$1 = NoteIcon;
|
|
8522
8514
|
|
|
8523
|
-
var _excluded$
|
|
8515
|
+
var _excluded$2X = ["gradient"];
|
|
8524
8516
|
|
|
8525
8517
|
/**
|
|
8526
8518
|
* @component NotebookIcon
|
|
@@ -8550,7 +8542,7 @@
|
|
|
8550
8542
|
*/
|
|
8551
8543
|
var NotebookIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8552
8544
|
var gradient = _ref.gradient,
|
|
8553
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8545
|
+
props = _objectWithoutProperties(_ref, _excluded$2X);
|
|
8554
8546
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8555
8547
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8556
8548
|
width: 24,
|
|
@@ -8570,7 +8562,7 @@
|
|
|
8570
8562
|
NotebookIcon.displayName = "NotebookIcon";
|
|
8571
8563
|
var NotebookIcon$1 = NotebookIcon;
|
|
8572
8564
|
|
|
8573
|
-
var _excluded$
|
|
8565
|
+
var _excluded$2W = ["gradient"];
|
|
8574
8566
|
|
|
8575
8567
|
/**
|
|
8576
8568
|
* @component NotificationBellIcon
|
|
@@ -8600,7 +8592,7 @@
|
|
|
8600
8592
|
*/
|
|
8601
8593
|
var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8602
8594
|
var gradient = _ref.gradient,
|
|
8603
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8595
|
+
props = _objectWithoutProperties(_ref, _excluded$2W);
|
|
8604
8596
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8605
8597
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8606
8598
|
width: 24,
|
|
@@ -8619,7 +8611,7 @@
|
|
|
8619
8611
|
NotificationBellIcon.displayName = "NotificationBellIcon";
|
|
8620
8612
|
var NotificationBellIcon$1 = NotificationBellIcon;
|
|
8621
8613
|
|
|
8622
|
-
var _excluded$
|
|
8614
|
+
var _excluded$2V = ["gradient"];
|
|
8623
8615
|
|
|
8624
8616
|
/**
|
|
8625
8617
|
* @component OpenExpandedIcon
|
|
@@ -8649,7 +8641,7 @@
|
|
|
8649
8641
|
*/
|
|
8650
8642
|
var OpenExpandedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8651
8643
|
var gradient = _ref.gradient,
|
|
8652
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8644
|
+
props = _objectWithoutProperties(_ref, _excluded$2V);
|
|
8653
8645
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8654
8646
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8655
8647
|
width: 24,
|
|
@@ -8669,7 +8661,7 @@
|
|
|
8669
8661
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
8670
8662
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
8671
8663
|
|
|
8672
|
-
var _excluded$
|
|
8664
|
+
var _excluded$2U = ["gradient"];
|
|
8673
8665
|
|
|
8674
8666
|
/**
|
|
8675
8667
|
* @component OpenSheetIcon
|
|
@@ -8699,7 +8691,7 @@
|
|
|
8699
8691
|
*/
|
|
8700
8692
|
var OpenSheetIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8701
8693
|
var gradient = _ref.gradient,
|
|
8702
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8694
|
+
props = _objectWithoutProperties(_ref, _excluded$2U);
|
|
8703
8695
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8704
8696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8705
8697
|
width: 24,
|
|
@@ -8724,7 +8716,7 @@
|
|
|
8724
8716
|
OpenSheetIcon.displayName = "OpenSheetIcon";
|
|
8725
8717
|
var OpenSheetIcon$1 = OpenSheetIcon;
|
|
8726
8718
|
|
|
8727
|
-
var _excluded$
|
|
8719
|
+
var _excluded$2T = ["gradient"];
|
|
8728
8720
|
|
|
8729
8721
|
/**
|
|
8730
8722
|
* @component OrderFirstIcon
|
|
@@ -8754,7 +8746,7 @@
|
|
|
8754
8746
|
*/
|
|
8755
8747
|
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8756
8748
|
var gradient = _ref.gradient,
|
|
8757
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8749
|
+
props = _objectWithoutProperties(_ref, _excluded$2T);
|
|
8758
8750
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8759
8751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8760
8752
|
width: 24,
|
|
@@ -8774,7 +8766,7 @@
|
|
|
8774
8766
|
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
8775
8767
|
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
8776
8768
|
|
|
8777
|
-
var _excluded$
|
|
8769
|
+
var _excluded$2S = ["gradient"];
|
|
8778
8770
|
|
|
8779
8771
|
/**
|
|
8780
8772
|
* @component PaidSmallIcon
|
|
@@ -8804,7 +8796,7 @@
|
|
|
8804
8796
|
*/
|
|
8805
8797
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8806
8798
|
var gradient = _ref.gradient,
|
|
8807
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8799
|
+
props = _objectWithoutProperties(_ref, _excluded$2S);
|
|
8808
8800
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8809
8801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8810
8802
|
width: 12,
|
|
@@ -8824,7 +8816,7 @@
|
|
|
8824
8816
|
PaidSmallIcon.displayName = "PaidSmallIcon";
|
|
8825
8817
|
var PaidSmallIcon$1 = PaidSmallIcon;
|
|
8826
8818
|
|
|
8827
|
-
var _excluded$
|
|
8819
|
+
var _excluded$2R = ["gradient"];
|
|
8828
8820
|
|
|
8829
8821
|
/**
|
|
8830
8822
|
* @component PauseCircleOutlineIcon
|
|
@@ -8854,7 +8846,7 @@
|
|
|
8854
8846
|
*/
|
|
8855
8847
|
var PauseCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8856
8848
|
var gradient = _ref.gradient,
|
|
8857
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8849
|
+
props = _objectWithoutProperties(_ref, _excluded$2R);
|
|
8858
8850
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8859
8851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8860
8852
|
width: 24,
|
|
@@ -8874,7 +8866,7 @@
|
|
|
8874
8866
|
PauseCircleOutlineIcon.displayName = "PauseCircleOutlineIcon";
|
|
8875
8867
|
var PauseCircleOutlineIcon$1 = PauseCircleOutlineIcon;
|
|
8876
8868
|
|
|
8877
|
-
var _excluded$
|
|
8869
|
+
var _excluded$2Q = ["gradient"];
|
|
8878
8870
|
|
|
8879
8871
|
/**
|
|
8880
8872
|
* @component PauseIcon
|
|
@@ -8904,7 +8896,7 @@
|
|
|
8904
8896
|
*/
|
|
8905
8897
|
var PauseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8906
8898
|
var gradient = _ref.gradient,
|
|
8907
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8899
|
+
props = _objectWithoutProperties(_ref, _excluded$2Q);
|
|
8908
8900
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8909
8901
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8910
8902
|
width: 24,
|
|
@@ -8924,7 +8916,7 @@
|
|
|
8924
8916
|
PauseIcon.displayName = "PauseIcon";
|
|
8925
8917
|
var PauseIcon$1 = PauseIcon;
|
|
8926
8918
|
|
|
8927
|
-
var _excluded$
|
|
8919
|
+
var _excluded$2P = ["gradient"];
|
|
8928
8920
|
|
|
8929
8921
|
/**
|
|
8930
8922
|
* @component PauseSmallIcon
|
|
@@ -8954,7 +8946,7 @@
|
|
|
8954
8946
|
*/
|
|
8955
8947
|
var PauseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8956
8948
|
var gradient = _ref.gradient,
|
|
8957
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8949
|
+
props = _objectWithoutProperties(_ref, _excluded$2P);
|
|
8958
8950
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8959
8951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8960
8952
|
width: 24,
|
|
@@ -8974,7 +8966,7 @@
|
|
|
8974
8966
|
PauseSmallIcon.displayName = "PauseSmallIcon";
|
|
8975
8967
|
var PauseSmallIcon$1 = PauseSmallIcon;
|
|
8976
8968
|
|
|
8977
|
-
var _excluded$
|
|
8969
|
+
var _excluded$2O = ["gradient"];
|
|
8978
8970
|
|
|
8979
8971
|
/**
|
|
8980
8972
|
* @component PencilSmallIcon
|
|
@@ -9004,7 +8996,7 @@
|
|
|
9004
8996
|
*/
|
|
9005
8997
|
var PencilSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9006
8998
|
var gradient = _ref.gradient,
|
|
9007
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8999
|
+
props = _objectWithoutProperties(_ref, _excluded$2O);
|
|
9008
9000
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9009
9001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9010
9002
|
width: 12,
|
|
@@ -9023,7 +9015,7 @@
|
|
|
9023
9015
|
PencilSmallIcon.displayName = "PencilSmallIcon";
|
|
9024
9016
|
var PencilSmallIcon$1 = PencilSmallIcon;
|
|
9025
9017
|
|
|
9026
|
-
var _excluded$
|
|
9018
|
+
var _excluded$2N = ["gradient"];
|
|
9027
9019
|
|
|
9028
9020
|
/**
|
|
9029
9021
|
* @component PencilIcon
|
|
@@ -9053,7 +9045,7 @@
|
|
|
9053
9045
|
*/
|
|
9054
9046
|
var PencilIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9055
9047
|
var gradient = _ref.gradient,
|
|
9056
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9048
|
+
props = _objectWithoutProperties(_ref, _excluded$2N);
|
|
9057
9049
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9058
9050
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9059
9051
|
width: 24,
|
|
@@ -9072,7 +9064,7 @@
|
|
|
9072
9064
|
PencilIcon.displayName = "PencilIcon";
|
|
9073
9065
|
var PencilIcon$1 = PencilIcon;
|
|
9074
9066
|
|
|
9075
|
-
var _excluded$
|
|
9067
|
+
var _excluded$2M = ["gradient"];
|
|
9076
9068
|
|
|
9077
9069
|
/**
|
|
9078
9070
|
* @component PendingPaymentSmallIcon
|
|
@@ -9102,7 +9094,7 @@
|
|
|
9102
9094
|
*/
|
|
9103
9095
|
var PendingPaymentSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9104
9096
|
var gradient = _ref.gradient,
|
|
9105
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9097
|
+
props = _objectWithoutProperties(_ref, _excluded$2M);
|
|
9106
9098
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9107
9099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9108
9100
|
width: 12,
|
|
@@ -9122,7 +9114,7 @@
|
|
|
9122
9114
|
PendingPaymentSmallIcon.displayName = "PendingPaymentSmallIcon";
|
|
9123
9115
|
var PendingPaymentSmallIcon$1 = PendingPaymentSmallIcon;
|
|
9124
9116
|
|
|
9125
|
-
var _excluded$
|
|
9117
|
+
var _excluded$2L = ["gradient"];
|
|
9126
9118
|
|
|
9127
9119
|
/**
|
|
9128
9120
|
* @component PeopleIcon
|
|
@@ -9152,7 +9144,7 @@
|
|
|
9152
9144
|
*/
|
|
9153
9145
|
var PeopleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9154
9146
|
var gradient = _ref.gradient,
|
|
9155
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9147
|
+
props = _objectWithoutProperties(_ref, _excluded$2L);
|
|
9156
9148
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9157
9149
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9158
9150
|
width: 24,
|
|
@@ -9176,7 +9168,7 @@
|
|
|
9176
9168
|
PeopleIcon.displayName = "PeopleIcon";
|
|
9177
9169
|
var PeopleIcon$1 = PeopleIcon;
|
|
9178
9170
|
|
|
9179
|
-
var _excluded$
|
|
9171
|
+
var _excluded$2K = ["gradient"];
|
|
9180
9172
|
|
|
9181
9173
|
/**
|
|
9182
9174
|
* @component PersonArrowOutCircleIcon
|
|
@@ -9206,7 +9198,7 @@
|
|
|
9206
9198
|
*/
|
|
9207
9199
|
var PersonArrowOutCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9208
9200
|
var gradient = _ref.gradient,
|
|
9209
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9201
|
+
props = _objectWithoutProperties(_ref, _excluded$2K);
|
|
9210
9202
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9211
9203
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9212
9204
|
width: 24,
|
|
@@ -9227,7 +9219,7 @@
|
|
|
9227
9219
|
PersonArrowOutCircleIcon.displayName = "PersonArrowOutCircleIcon";
|
|
9228
9220
|
var PersonArrowOutCircleIcon$1 = PersonArrowOutCircleIcon;
|
|
9229
9221
|
|
|
9230
|
-
var _excluded$
|
|
9222
|
+
var _excluded$2J = ["gradient"];
|
|
9231
9223
|
|
|
9232
9224
|
/**
|
|
9233
9225
|
* @component PersonCircleOffIcon
|
|
@@ -9257,7 +9249,7 @@
|
|
|
9257
9249
|
*/
|
|
9258
9250
|
var PersonCircleOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9259
9251
|
var gradient = _ref.gradient,
|
|
9260
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9252
|
+
props = _objectWithoutProperties(_ref, _excluded$2J);
|
|
9261
9253
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9262
9254
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9263
9255
|
width: 24,
|
|
@@ -9277,7 +9269,7 @@
|
|
|
9277
9269
|
PersonCircleOffIcon.displayName = "PersonCircleOffIcon";
|
|
9278
9270
|
var PersonCircleOffIcon$1 = PersonCircleOffIcon;
|
|
9279
9271
|
|
|
9280
|
-
var _excluded$
|
|
9272
|
+
var _excluded$2I = ["gradient"];
|
|
9281
9273
|
|
|
9282
9274
|
/**
|
|
9283
9275
|
* @component PersonCircleIcon
|
|
@@ -9307,7 +9299,7 @@
|
|
|
9307
9299
|
*/
|
|
9308
9300
|
var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9309
9301
|
var gradient = _ref.gradient,
|
|
9310
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9302
|
+
props = _objectWithoutProperties(_ref, _excluded$2I);
|
|
9311
9303
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9312
9304
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9313
9305
|
width: 24,
|
|
@@ -9327,7 +9319,7 @@
|
|
|
9327
9319
|
PersonCircleIcon.displayName = "PersonCircleIcon";
|
|
9328
9320
|
var PersonCircleIcon$1 = PersonCircleIcon;
|
|
9329
9321
|
|
|
9330
|
-
var _excluded$
|
|
9322
|
+
var _excluded$2H = ["gradient"];
|
|
9331
9323
|
|
|
9332
9324
|
/**
|
|
9333
9325
|
* @component PersonListIcon
|
|
@@ -9357,7 +9349,7 @@
|
|
|
9357
9349
|
*/
|
|
9358
9350
|
var PersonListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9359
9351
|
var gradient = _ref.gradient,
|
|
9360
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9352
|
+
props = _objectWithoutProperties(_ref, _excluded$2H);
|
|
9361
9353
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9362
9354
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9363
9355
|
width: 24,
|
|
@@ -9378,7 +9370,7 @@
|
|
|
9378
9370
|
PersonListIcon.displayName = "PersonListIcon";
|
|
9379
9371
|
var PersonListIcon$1 = PersonListIcon;
|
|
9380
9372
|
|
|
9381
|
-
var _excluded$
|
|
9373
|
+
var _excluded$2G = ["gradient"];
|
|
9382
9374
|
|
|
9383
9375
|
/**
|
|
9384
9376
|
* @component PersonPlusIcon
|
|
@@ -9408,7 +9400,7 @@
|
|
|
9408
9400
|
*/
|
|
9409
9401
|
var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9410
9402
|
var gradient = _ref.gradient,
|
|
9411
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9403
|
+
props = _objectWithoutProperties(_ref, _excluded$2G);
|
|
9412
9404
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9413
9405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9414
9406
|
width: 24,
|
|
@@ -9428,7 +9420,7 @@
|
|
|
9428
9420
|
PersonPlusIcon.displayName = "PersonPlusIcon";
|
|
9429
9421
|
var PersonPlusIcon$1 = PersonPlusIcon;
|
|
9430
9422
|
|
|
9431
|
-
var _excluded$
|
|
9423
|
+
var _excluded$2F = ["gradient"];
|
|
9432
9424
|
|
|
9433
9425
|
/**
|
|
9434
9426
|
* @component PersonIcon
|
|
@@ -9458,7 +9450,7 @@
|
|
|
9458
9450
|
*/
|
|
9459
9451
|
var PersonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9460
9452
|
var gradient = _ref.gradient,
|
|
9461
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9453
|
+
props = _objectWithoutProperties(_ref, _excluded$2F);
|
|
9462
9454
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9463
9455
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9464
9456
|
width: 24,
|
|
@@ -9478,7 +9470,7 @@
|
|
|
9478
9470
|
PersonIcon.displayName = "PersonIcon";
|
|
9479
9471
|
var PersonIcon$1 = PersonIcon;
|
|
9480
9472
|
|
|
9481
|
-
var _excluded$
|
|
9473
|
+
var _excluded$2E = ["gradient"];
|
|
9482
9474
|
|
|
9483
9475
|
/**
|
|
9484
9476
|
* @component PinSmallIcon
|
|
@@ -9508,7 +9500,7 @@
|
|
|
9508
9500
|
*/
|
|
9509
9501
|
var PinSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9510
9502
|
var gradient = _ref.gradient,
|
|
9511
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9503
|
+
props = _objectWithoutProperties(_ref, _excluded$2E);
|
|
9512
9504
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9513
9505
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9514
9506
|
width: 12,
|
|
@@ -9529,7 +9521,7 @@
|
|
|
9529
9521
|
PinSmallIcon.displayName = "PinSmallIcon";
|
|
9530
9522
|
var PinSmallIcon$1 = PinSmallIcon;
|
|
9531
9523
|
|
|
9532
|
-
var _excluded$
|
|
9524
|
+
var _excluded$2D = ["gradient"];
|
|
9533
9525
|
|
|
9534
9526
|
/**
|
|
9535
9527
|
* @component PinIcon
|
|
@@ -9559,7 +9551,7 @@
|
|
|
9559
9551
|
*/
|
|
9560
9552
|
var PinIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9561
9553
|
var gradient = _ref.gradient,
|
|
9562
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9554
|
+
props = _objectWithoutProperties(_ref, _excluded$2D);
|
|
9563
9555
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9564
9556
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9565
9557
|
width: 24,
|
|
@@ -9579,7 +9571,7 @@
|
|
|
9579
9571
|
PinIcon.displayName = "PinIcon";
|
|
9580
9572
|
var PinIcon$1 = PinIcon;
|
|
9581
9573
|
|
|
9582
|
-
var _excluded$
|
|
9574
|
+
var _excluded$2C = ["gradient"];
|
|
9583
9575
|
|
|
9584
9576
|
/**
|
|
9585
9577
|
* @component PlayCircleOutlineIcon
|
|
@@ -9609,7 +9601,7 @@
|
|
|
9609
9601
|
*/
|
|
9610
9602
|
var PlayCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9611
9603
|
var gradient = _ref.gradient,
|
|
9612
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9604
|
+
props = _objectWithoutProperties(_ref, _excluded$2C);
|
|
9613
9605
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9614
9606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9615
9607
|
width: 24,
|
|
@@ -9629,7 +9621,7 @@
|
|
|
9629
9621
|
PlayCircleOutlineIcon.displayName = "PlayCircleOutlineIcon";
|
|
9630
9622
|
var PlayCircleOutlineIcon$1 = PlayCircleOutlineIcon;
|
|
9631
9623
|
|
|
9632
|
-
var _excluded$
|
|
9624
|
+
var _excluded$2B = ["gradient"];
|
|
9633
9625
|
|
|
9634
9626
|
/**
|
|
9635
9627
|
* @component PlayIcon
|
|
@@ -9659,7 +9651,7 @@
|
|
|
9659
9651
|
*/
|
|
9660
9652
|
var PlayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9661
9653
|
var gradient = _ref.gradient,
|
|
9662
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9654
|
+
props = _objectWithoutProperties(_ref, _excluded$2B);
|
|
9663
9655
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9664
9656
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9665
9657
|
width: 24,
|
|
@@ -9679,7 +9671,7 @@
|
|
|
9679
9671
|
PlayIcon.displayName = "PlayIcon";
|
|
9680
9672
|
var PlayIcon$1 = PlayIcon;
|
|
9681
9673
|
|
|
9682
|
-
var _excluded$
|
|
9674
|
+
var _excluded$2A = ["gradient"];
|
|
9683
9675
|
|
|
9684
9676
|
/**
|
|
9685
9677
|
* @component PlaySmallIcon
|
|
@@ -9709,7 +9701,7 @@
|
|
|
9709
9701
|
*/
|
|
9710
9702
|
var PlaySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9711
9703
|
var gradient = _ref.gradient,
|
|
9712
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9704
|
+
props = _objectWithoutProperties(_ref, _excluded$2A);
|
|
9713
9705
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9714
9706
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9715
9707
|
width: 24,
|
|
@@ -9729,7 +9721,7 @@
|
|
|
9729
9721
|
PlaySmallIcon.displayName = "PlaySmallIcon";
|
|
9730
9722
|
var PlaySmallIcon$1 = PlaySmallIcon;
|
|
9731
9723
|
|
|
9732
|
-
var _excluded$
|
|
9724
|
+
var _excluded$2z = ["gradient"];
|
|
9733
9725
|
|
|
9734
9726
|
/**
|
|
9735
9727
|
* @component PriorityLowIcon
|
|
@@ -9759,7 +9751,7 @@
|
|
|
9759
9751
|
*/
|
|
9760
9752
|
var PriorityLowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9761
9753
|
var gradient = _ref.gradient,
|
|
9762
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9754
|
+
props = _objectWithoutProperties(_ref, _excluded$2z);
|
|
9763
9755
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9764
9756
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9765
9757
|
width: 24,
|
|
@@ -9780,7 +9772,7 @@
|
|
|
9780
9772
|
PriorityLowIcon.displayName = "PriorityLowIcon";
|
|
9781
9773
|
var PriorityLowIcon$1 = PriorityLowIcon;
|
|
9782
9774
|
|
|
9783
|
-
var _excluded$
|
|
9775
|
+
var _excluded$2y = ["gradient"];
|
|
9784
9776
|
|
|
9785
9777
|
/**
|
|
9786
9778
|
* @component ProjectAddIcon
|
|
@@ -9810,7 +9802,7 @@
|
|
|
9810
9802
|
*/
|
|
9811
9803
|
var ProjectAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9812
9804
|
var gradient = _ref.gradient,
|
|
9813
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9805
|
+
props = _objectWithoutProperties(_ref, _excluded$2y);
|
|
9814
9806
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9815
9807
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9816
9808
|
width: 24,
|
|
@@ -9830,7 +9822,7 @@
|
|
|
9830
9822
|
ProjectAddIcon.displayName = "ProjectAddIcon";
|
|
9831
9823
|
var ProjectAddIcon$1 = ProjectAddIcon;
|
|
9832
9824
|
|
|
9833
|
-
var _excluded$
|
|
9825
|
+
var _excluded$2x = ["gradient"];
|
|
9834
9826
|
|
|
9835
9827
|
/**
|
|
9836
9828
|
* @component ProjectSearchIcon
|
|
@@ -9860,7 +9852,7 @@
|
|
|
9860
9852
|
*/
|
|
9861
9853
|
var ProjectSearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9862
9854
|
var gradient = _ref.gradient,
|
|
9863
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9855
|
+
props = _objectWithoutProperties(_ref, _excluded$2x);
|
|
9864
9856
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9865
9857
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9866
9858
|
width: 24,
|
|
@@ -9881,7 +9873,7 @@
|
|
|
9881
9873
|
ProjectSearchIcon.displayName = "ProjectSearchIcon";
|
|
9882
9874
|
var ProjectSearchIcon$1 = ProjectSearchIcon;
|
|
9883
9875
|
|
|
9884
|
-
var _excluded$
|
|
9876
|
+
var _excluded$2w = ["gradient"];
|
|
9885
9877
|
|
|
9886
9878
|
/**
|
|
9887
9879
|
* @component ProjectStarIcon
|
|
@@ -9911,7 +9903,7 @@
|
|
|
9911
9903
|
*/
|
|
9912
9904
|
var ProjectStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9913
9905
|
var gradient = _ref.gradient,
|
|
9914
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9906
|
+
props = _objectWithoutProperties(_ref, _excluded$2w);
|
|
9915
9907
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9916
9908
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9917
9909
|
width: 24,
|
|
@@ -9934,7 +9926,7 @@
|
|
|
9934
9926
|
ProjectStarIcon.displayName = "ProjectStarIcon";
|
|
9935
9927
|
var ProjectStarIcon$1 = ProjectStarIcon;
|
|
9936
9928
|
|
|
9937
|
-
var _excluded$
|
|
9929
|
+
var _excluded$2v = ["gradient"];
|
|
9938
9930
|
|
|
9939
9931
|
/**
|
|
9940
9932
|
* @component ProjectTemplateAddIcon
|
|
@@ -9964,7 +9956,7 @@
|
|
|
9964
9956
|
*/
|
|
9965
9957
|
var ProjectTemplateAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9966
9958
|
var gradient = _ref.gradient,
|
|
9967
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9959
|
+
props = _objectWithoutProperties(_ref, _excluded$2v);
|
|
9968
9960
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9969
9961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9970
9962
|
width: 24,
|
|
@@ -9984,7 +9976,7 @@
|
|
|
9984
9976
|
ProjectTemplateAddIcon.displayName = "ProjectTemplateAddIcon";
|
|
9985
9977
|
var ProjectTemplateAddIcon$1 = ProjectTemplateAddIcon;
|
|
9986
9978
|
|
|
9987
|
-
var _excluded$
|
|
9979
|
+
var _excluded$2u = ["gradient"];
|
|
9988
9980
|
|
|
9989
9981
|
/**
|
|
9990
9982
|
* @component ProjectTemplateConvertIcon
|
|
@@ -10014,7 +10006,7 @@
|
|
|
10014
10006
|
*/
|
|
10015
10007
|
var ProjectTemplateConvertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10016
10008
|
var gradient = _ref.gradient,
|
|
10017
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10009
|
+
props = _objectWithoutProperties(_ref, _excluded$2u);
|
|
10018
10010
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10019
10011
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10020
10012
|
width: 24,
|
|
@@ -10034,7 +10026,7 @@
|
|
|
10034
10026
|
ProjectTemplateConvertIcon.displayName = "ProjectTemplateConvertIcon";
|
|
10035
10027
|
var ProjectTemplateConvertIcon$1 = ProjectTemplateConvertIcon;
|
|
10036
10028
|
|
|
10037
|
-
var _excluded$
|
|
10029
|
+
var _excluded$2t = ["gradient"];
|
|
10038
10030
|
|
|
10039
10031
|
/**
|
|
10040
10032
|
* @component ProjectTemplateIcon
|
|
@@ -10064,7 +10056,7 @@
|
|
|
10064
10056
|
*/
|
|
10065
10057
|
var ProjectTemplateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10066
10058
|
var gradient = _ref.gradient,
|
|
10067
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10059
|
+
props = _objectWithoutProperties(_ref, _excluded$2t);
|
|
10068
10060
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10069
10061
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10070
10062
|
width: 24,
|
|
@@ -10084,7 +10076,7 @@
|
|
|
10084
10076
|
ProjectTemplateIcon.displayName = "ProjectTemplateIcon";
|
|
10085
10077
|
var ProjectTemplateIcon$1 = ProjectTemplateIcon;
|
|
10086
10078
|
|
|
10087
|
-
var _excluded$
|
|
10079
|
+
var _excluded$2s = ["gradient"];
|
|
10088
10080
|
|
|
10089
10081
|
/**
|
|
10090
10082
|
* @component ProjectsIcon
|
|
@@ -10114,7 +10106,7 @@
|
|
|
10114
10106
|
*/
|
|
10115
10107
|
var ProjectsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10116
10108
|
var gradient = _ref.gradient,
|
|
10117
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10109
|
+
props = _objectWithoutProperties(_ref, _excluded$2s);
|
|
10118
10110
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10119
10111
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10120
10112
|
width: 24,
|
|
@@ -10138,7 +10130,7 @@
|
|
|
10138
10130
|
ProjectsIcon.displayName = "ProjectsIcon";
|
|
10139
10131
|
var ProjectsIcon$1 = ProjectsIcon;
|
|
10140
10132
|
|
|
10141
|
-
var _excluded$
|
|
10133
|
+
var _excluded$2r = ["gradient"];
|
|
10142
10134
|
|
|
10143
10135
|
/**
|
|
10144
10136
|
* @component PuzzleIcon
|
|
@@ -10168,7 +10160,7 @@
|
|
|
10168
10160
|
*/
|
|
10169
10161
|
var PuzzleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10170
10162
|
var gradient = _ref.gradient,
|
|
10171
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10163
|
+
props = _objectWithoutProperties(_ref, _excluded$2r);
|
|
10172
10164
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10173
10165
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10174
10166
|
width: 24,
|
|
@@ -10189,7 +10181,7 @@
|
|
|
10189
10181
|
PuzzleIcon.displayName = "PuzzleIcon";
|
|
10190
10182
|
var PuzzleIcon$1 = PuzzleIcon;
|
|
10191
10183
|
|
|
10192
|
-
var _excluded$
|
|
10184
|
+
var _excluded$2q = ["gradient"];
|
|
10193
10185
|
|
|
10194
10186
|
/**
|
|
10195
10187
|
* @component RadioBlankIcon
|
|
@@ -10219,7 +10211,7 @@
|
|
|
10219
10211
|
*/
|
|
10220
10212
|
var RadioBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10221
10213
|
var gradient = _ref.gradient,
|
|
10222
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10214
|
+
props = _objectWithoutProperties(_ref, _excluded$2q);
|
|
10223
10215
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10224
10216
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10225
10217
|
width: 24,
|
|
@@ -10239,7 +10231,7 @@
|
|
|
10239
10231
|
RadioBlankIcon.displayName = "RadioBlankIcon";
|
|
10240
10232
|
var RadioBlankIcon$1 = RadioBlankIcon;
|
|
10241
10233
|
|
|
10242
|
-
var _excluded$
|
|
10234
|
+
var _excluded$2p = ["gradient"];
|
|
10243
10235
|
|
|
10244
10236
|
/**
|
|
10245
10237
|
* @component RadioButtonIcon
|
|
@@ -10269,7 +10261,7 @@
|
|
|
10269
10261
|
*/
|
|
10270
10262
|
var RadioButtonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10271
10263
|
var gradient = _ref.gradient,
|
|
10272
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10264
|
+
props = _objectWithoutProperties(_ref, _excluded$2p);
|
|
10273
10265
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10274
10266
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10275
10267
|
width: 16,
|
|
@@ -10297,7 +10289,7 @@
|
|
|
10297
10289
|
RadioButtonIcon.displayName = "RadioButtonIcon";
|
|
10298
10290
|
var RadioButtonIcon$1 = RadioButtonIcon;
|
|
10299
10291
|
|
|
10300
|
-
var _excluded$
|
|
10292
|
+
var _excluded$2o = ["gradient"];
|
|
10301
10293
|
|
|
10302
10294
|
/**
|
|
10303
10295
|
* @component RearangeIcon
|
|
@@ -10327,7 +10319,7 @@
|
|
|
10327
10319
|
*/
|
|
10328
10320
|
var RearangeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10329
10321
|
var gradient = _ref.gradient,
|
|
10330
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10322
|
+
props = _objectWithoutProperties(_ref, _excluded$2o);
|
|
10331
10323
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10332
10324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10333
10325
|
width: 24,
|
|
@@ -10347,7 +10339,7 @@
|
|
|
10347
10339
|
RearangeIcon.displayName = "RearangeIcon";
|
|
10348
10340
|
var RearangeIcon$1 = RearangeIcon;
|
|
10349
10341
|
|
|
10350
|
-
var _excluded$
|
|
10342
|
+
var _excluded$2n = ["gradient"];
|
|
10351
10343
|
|
|
10352
10344
|
/**
|
|
10353
10345
|
* @component RearrangeSmallIcon
|
|
@@ -10377,7 +10369,7 @@
|
|
|
10377
10369
|
*/
|
|
10378
10370
|
var RearrangeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10379
10371
|
var gradient = _ref.gradient,
|
|
10380
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10372
|
+
props = _objectWithoutProperties(_ref, _excluded$2n);
|
|
10381
10373
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10382
10374
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10383
10375
|
width: 12,
|
|
@@ -10397,7 +10389,7 @@
|
|
|
10397
10389
|
RearrangeSmallIcon.displayName = "RearrangeSmallIcon";
|
|
10398
10390
|
var RearrangeSmallIcon$1 = RearrangeSmallIcon;
|
|
10399
10391
|
|
|
10400
|
-
var _excluded$
|
|
10392
|
+
var _excluded$2m = ["gradient"];
|
|
10401
10393
|
|
|
10402
10394
|
/**
|
|
10403
10395
|
* @component RecurringCheckmarkSmallIcon
|
|
@@ -10427,7 +10419,7 @@
|
|
|
10427
10419
|
*/
|
|
10428
10420
|
var RecurringCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10429
10421
|
var gradient = _ref.gradient,
|
|
10430
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10422
|
+
props = _objectWithoutProperties(_ref, _excluded$2m);
|
|
10431
10423
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10432
10424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10433
10425
|
width: 12,
|
|
@@ -10447,7 +10439,7 @@
|
|
|
10447
10439
|
RecurringCheckmarkSmallIcon.displayName = "RecurringCheckmarkSmallIcon";
|
|
10448
10440
|
var RecurringCheckmarkSmallIcon$1 = RecurringCheckmarkSmallIcon;
|
|
10449
10441
|
|
|
10450
|
-
var _excluded$
|
|
10442
|
+
var _excluded$2l = ["gradient"];
|
|
10451
10443
|
|
|
10452
10444
|
/**
|
|
10453
10445
|
* @component RecurringCheckmarkIcon
|
|
@@ -10477,7 +10469,7 @@
|
|
|
10477
10469
|
*/
|
|
10478
10470
|
var RecurringCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10479
10471
|
var gradient = _ref.gradient,
|
|
10480
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10472
|
+
props = _objectWithoutProperties(_ref, _excluded$2l);
|
|
10481
10473
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10482
10474
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10483
10475
|
width: 24,
|
|
@@ -10497,7 +10489,7 @@
|
|
|
10497
10489
|
RecurringCheckmarkIcon.displayName = "RecurringCheckmarkIcon";
|
|
10498
10490
|
var RecurringCheckmarkIcon$1 = RecurringCheckmarkIcon;
|
|
10499
10491
|
|
|
10500
|
-
var _excluded$
|
|
10492
|
+
var _excluded$2k = ["gradient"];
|
|
10501
10493
|
|
|
10502
10494
|
/**
|
|
10503
10495
|
* @component RecurringDollarIcon
|
|
@@ -10527,7 +10519,7 @@
|
|
|
10527
10519
|
*/
|
|
10528
10520
|
var RecurringDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10529
10521
|
var gradient = _ref.gradient,
|
|
10530
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10522
|
+
props = _objectWithoutProperties(_ref, _excluded$2k);
|
|
10531
10523
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10532
10524
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10533
10525
|
width: 24,
|
|
@@ -10549,7 +10541,7 @@
|
|
|
10549
10541
|
RecurringDollarIcon.displayName = "RecurringDollarIcon";
|
|
10550
10542
|
var RecurringDollarIcon$1 = RecurringDollarIcon;
|
|
10551
10543
|
|
|
10552
|
-
var _excluded$
|
|
10544
|
+
var _excluded$2j = ["gradient"];
|
|
10553
10545
|
|
|
10554
10546
|
/**
|
|
10555
10547
|
* @component RecurringSmallIcon
|
|
@@ -10579,7 +10571,7 @@
|
|
|
10579
10571
|
*/
|
|
10580
10572
|
var RecurringSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10581
10573
|
var gradient = _ref.gradient,
|
|
10582
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10574
|
+
props = _objectWithoutProperties(_ref, _excluded$2j);
|
|
10583
10575
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10584
10576
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10585
10577
|
width: 12,
|
|
@@ -10600,7 +10592,7 @@
|
|
|
10600
10592
|
RecurringSmallIcon.displayName = "RecurringSmallIcon";
|
|
10601
10593
|
var RecurringSmallIcon$1 = RecurringSmallIcon;
|
|
10602
10594
|
|
|
10603
|
-
var _excluded$
|
|
10595
|
+
var _excluded$2i = ["gradient"];
|
|
10604
10596
|
|
|
10605
10597
|
/**
|
|
10606
10598
|
* @component ReminderIcon
|
|
@@ -10630,7 +10622,7 @@
|
|
|
10630
10622
|
*/
|
|
10631
10623
|
var ReminderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10632
10624
|
var gradient = _ref.gradient,
|
|
10633
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10625
|
+
props = _objectWithoutProperties(_ref, _excluded$2i);
|
|
10634
10626
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10635
10627
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10636
10628
|
width: 18,
|
|
@@ -10656,7 +10648,7 @@
|
|
|
10656
10648
|
ReminderIcon.displayName = "ReminderIcon";
|
|
10657
10649
|
var ReminderIcon$1 = ReminderIcon;
|
|
10658
10650
|
|
|
10659
|
-
var _excluded$
|
|
10651
|
+
var _excluded$2h = ["gradient"];
|
|
10660
10652
|
|
|
10661
10653
|
/**
|
|
10662
10654
|
* @component ReorderIcon
|
|
@@ -10686,7 +10678,7 @@
|
|
|
10686
10678
|
*/
|
|
10687
10679
|
var ReorderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10688
10680
|
var gradient = _ref.gradient,
|
|
10689
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10681
|
+
props = _objectWithoutProperties(_ref, _excluded$2h);
|
|
10690
10682
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10691
10683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10692
10684
|
width: 24,
|
|
@@ -10705,7 +10697,7 @@
|
|
|
10705
10697
|
ReorderIcon.displayName = "ReorderIcon";
|
|
10706
10698
|
var ReorderIcon$1 = ReorderIcon;
|
|
10707
10699
|
|
|
10708
|
-
var _excluded$
|
|
10700
|
+
var _excluded$2g = ["gradient"];
|
|
10709
10701
|
|
|
10710
10702
|
/**
|
|
10711
10703
|
* @component ReportTimeIcon
|
|
@@ -10735,7 +10727,7 @@
|
|
|
10735
10727
|
*/
|
|
10736
10728
|
var ReportTimeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10737
10729
|
var gradient = _ref.gradient,
|
|
10738
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10730
|
+
props = _objectWithoutProperties(_ref, _excluded$2g);
|
|
10739
10731
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10740
10732
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10741
10733
|
width: 24,
|
|
@@ -10755,7 +10747,7 @@
|
|
|
10755
10747
|
ReportTimeIcon.displayName = "ReportTimeIcon";
|
|
10756
10748
|
var ReportTimeIcon$1 = ReportTimeIcon;
|
|
10757
10749
|
|
|
10758
|
-
var _excluded$
|
|
10750
|
+
var _excluded$2f = ["gradient"];
|
|
10759
10751
|
|
|
10760
10752
|
/**
|
|
10761
10753
|
* @component ReportsIcon
|
|
@@ -10785,7 +10777,7 @@
|
|
|
10785
10777
|
*/
|
|
10786
10778
|
var ReportsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10787
10779
|
var gradient = _ref.gradient,
|
|
10788
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10780
|
+
props = _objectWithoutProperties(_ref, _excluded$2f);
|
|
10789
10781
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10790
10782
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10791
10783
|
width: 24,
|
|
@@ -10809,7 +10801,7 @@
|
|
|
10809
10801
|
ReportsIcon.displayName = "ReportsIcon";
|
|
10810
10802
|
var ReportsIcon$1 = ReportsIcon;
|
|
10811
10803
|
|
|
10812
|
-
var _excluded$
|
|
10804
|
+
var _excluded$2e = ["gradient"];
|
|
10813
10805
|
|
|
10814
10806
|
/**
|
|
10815
10807
|
* @component RobotIcon
|
|
@@ -10839,7 +10831,7 @@
|
|
|
10839
10831
|
*/
|
|
10840
10832
|
var RobotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10841
10833
|
var gradient = _ref.gradient,
|
|
10842
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10834
|
+
props = _objectWithoutProperties(_ref, _excluded$2e);
|
|
10843
10835
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10844
10836
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10845
10837
|
width: 24,
|
|
@@ -10862,7 +10854,7 @@
|
|
|
10862
10854
|
RobotIcon.displayName = "RobotIcon";
|
|
10863
10855
|
var RobotIcon$1 = RobotIcon;
|
|
10864
10856
|
|
|
10865
|
-
var _excluded$
|
|
10857
|
+
var _excluded$2d = ["gradient"];
|
|
10866
10858
|
|
|
10867
10859
|
/**
|
|
10868
10860
|
* @component RocketSmallIcon
|
|
@@ -10892,7 +10884,7 @@
|
|
|
10892
10884
|
*/
|
|
10893
10885
|
var RocketSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10894
10886
|
var gradient = _ref.gradient,
|
|
10895
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10887
|
+
props = _objectWithoutProperties(_ref, _excluded$2d);
|
|
10896
10888
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10897
10889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10898
10890
|
width: 18,
|
|
@@ -10910,7 +10902,7 @@
|
|
|
10910
10902
|
RocketSmallIcon.displayName = "RocketSmallIcon";
|
|
10911
10903
|
var RocketSmallIcon$1 = RocketSmallIcon;
|
|
10912
10904
|
|
|
10913
|
-
var _excluded$
|
|
10905
|
+
var _excluded$2c = ["gradient"];
|
|
10914
10906
|
|
|
10915
10907
|
/**
|
|
10916
10908
|
* @component RocketIcon
|
|
@@ -10940,7 +10932,7 @@
|
|
|
10940
10932
|
*/
|
|
10941
10933
|
var RocketIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10942
10934
|
var gradient = _ref.gradient,
|
|
10943
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10935
|
+
props = _objectWithoutProperties(_ref, _excluded$2c);
|
|
10944
10936
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10945
10937
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10946
10938
|
width: 24,
|
|
@@ -10959,7 +10951,7 @@
|
|
|
10959
10951
|
RocketIcon.displayName = "RocketIcon";
|
|
10960
10952
|
var RocketIcon$1 = RocketIcon;
|
|
10961
10953
|
|
|
10962
|
-
var _excluded$
|
|
10954
|
+
var _excluded$2b = ["gradient"];
|
|
10963
10955
|
|
|
10964
10956
|
/**
|
|
10965
10957
|
* @component RoundedRectangleIcon
|
|
@@ -10989,7 +10981,7 @@
|
|
|
10989
10981
|
*/
|
|
10990
10982
|
var RoundedRectangleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10991
10983
|
var gradient = _ref.gradient,
|
|
10992
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10984
|
+
props = _objectWithoutProperties(_ref, _excluded$2b);
|
|
10993
10985
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10994
10986
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10995
10987
|
width: 24,
|
|
@@ -11015,7 +11007,7 @@
|
|
|
11015
11007
|
RoundedRectangleIcon.displayName = "RoundedRectangleIcon";
|
|
11016
11008
|
var RoundedRectangleIcon$1 = RoundedRectangleIcon;
|
|
11017
11009
|
|
|
11018
|
-
var _excluded$
|
|
11010
|
+
var _excluded$2a = ["gradient"];
|
|
11019
11011
|
|
|
11020
11012
|
/**
|
|
11021
11013
|
* @component SaveIcon
|
|
@@ -11045,7 +11037,7 @@
|
|
|
11045
11037
|
*/
|
|
11046
11038
|
var SaveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11047
11039
|
var gradient = _ref.gradient,
|
|
11048
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11040
|
+
props = _objectWithoutProperties(_ref, _excluded$2a);
|
|
11049
11041
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11050
11042
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11051
11043
|
width: 24,
|
|
@@ -11066,7 +11058,7 @@
|
|
|
11066
11058
|
SaveIcon.displayName = "SaveIcon";
|
|
11067
11059
|
var SaveIcon$1 = SaveIcon;
|
|
11068
11060
|
|
|
11069
|
-
var _excluded$
|
|
11061
|
+
var _excluded$29 = ["gradient"];
|
|
11070
11062
|
|
|
11071
11063
|
/**
|
|
11072
11064
|
* @component SearchLargeIcon
|
|
@@ -11096,7 +11088,7 @@
|
|
|
11096
11088
|
*/
|
|
11097
11089
|
var SearchLargeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11098
11090
|
var gradient = _ref.gradient,
|
|
11099
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11091
|
+
props = _objectWithoutProperties(_ref, _excluded$29);
|
|
11100
11092
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11101
11093
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11102
11094
|
width: 32,
|
|
@@ -11117,7 +11109,7 @@
|
|
|
11117
11109
|
SearchLargeIcon.displayName = "SearchLargeIcon";
|
|
11118
11110
|
var SearchLargeIcon$1 = SearchLargeIcon;
|
|
11119
11111
|
|
|
11120
|
-
var _excluded$
|
|
11112
|
+
var _excluded$28 = ["gradient"];
|
|
11121
11113
|
|
|
11122
11114
|
/**
|
|
11123
11115
|
* @component SearchPlusIcon
|
|
@@ -11147,7 +11139,7 @@
|
|
|
11147
11139
|
*/
|
|
11148
11140
|
var SearchPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11149
11141
|
var gradient = _ref.gradient,
|
|
11150
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11142
|
+
props = _objectWithoutProperties(_ref, _excluded$28);
|
|
11151
11143
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11152
11144
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11153
11145
|
width: 24,
|
|
@@ -11171,7 +11163,7 @@
|
|
|
11171
11163
|
SearchPlusIcon.displayName = "SearchPlusIcon";
|
|
11172
11164
|
var SearchPlusIcon$1 = SearchPlusIcon;
|
|
11173
11165
|
|
|
11174
|
-
var _excluded$
|
|
11166
|
+
var _excluded$27 = ["gradient"];
|
|
11175
11167
|
|
|
11176
11168
|
/**
|
|
11177
11169
|
* @component SearchIcon
|
|
@@ -11201,7 +11193,7 @@
|
|
|
11201
11193
|
*/
|
|
11202
11194
|
var SearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11203
11195
|
var gradient = _ref.gradient,
|
|
11204
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11196
|
+
props = _objectWithoutProperties(_ref, _excluded$27);
|
|
11205
11197
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11206
11198
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11207
11199
|
width: 24,
|
|
@@ -11220,7 +11212,7 @@
|
|
|
11220
11212
|
SearchIcon.displayName = "SearchIcon";
|
|
11221
11213
|
var SearchIcon$1 = SearchIcon;
|
|
11222
11214
|
|
|
11223
|
-
var _excluded$
|
|
11215
|
+
var _excluded$26 = ["gradient"];
|
|
11224
11216
|
|
|
11225
11217
|
/**
|
|
11226
11218
|
* @component SendBlankIcon
|
|
@@ -11250,7 +11242,7 @@
|
|
|
11250
11242
|
*/
|
|
11251
11243
|
var SendBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11252
11244
|
var gradient = _ref.gradient,
|
|
11253
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11245
|
+
props = _objectWithoutProperties(_ref, _excluded$26);
|
|
11254
11246
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11255
11247
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11256
11248
|
width: 24,
|
|
@@ -11269,7 +11261,7 @@
|
|
|
11269
11261
|
SendBlankIcon.displayName = "SendBlankIcon";
|
|
11270
11262
|
var SendBlankIcon$1 = SendBlankIcon;
|
|
11271
11263
|
|
|
11272
|
-
var _excluded$
|
|
11264
|
+
var _excluded$25 = ["gradient"];
|
|
11273
11265
|
|
|
11274
11266
|
/**
|
|
11275
11267
|
* @component SendFilledIcon
|
|
@@ -11299,7 +11291,7 @@
|
|
|
11299
11291
|
*/
|
|
11300
11292
|
var SendFilledIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11301
11293
|
var gradient = _ref.gradient,
|
|
11302
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11294
|
+
props = _objectWithoutProperties(_ref, _excluded$25);
|
|
11303
11295
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11304
11296
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11305
11297
|
width: 24,
|
|
@@ -11318,7 +11310,7 @@
|
|
|
11318
11310
|
SendFilledIcon.displayName = "SendFilledIcon";
|
|
11319
11311
|
var SendFilledIcon$1 = SendFilledIcon;
|
|
11320
11312
|
|
|
11321
|
-
var _excluded$
|
|
11313
|
+
var _excluded$24 = ["gradient"];
|
|
11322
11314
|
|
|
11323
11315
|
/**
|
|
11324
11316
|
* @component SettingsIcon
|
|
@@ -11348,7 +11340,7 @@
|
|
|
11348
11340
|
*/
|
|
11349
11341
|
var SettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11350
11342
|
var gradient = _ref.gradient,
|
|
11351
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11343
|
+
props = _objectWithoutProperties(_ref, _excluded$24);
|
|
11352
11344
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11353
11345
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11354
11346
|
width: 24,
|
|
@@ -11368,6 +11360,56 @@
|
|
|
11368
11360
|
SettingsIcon.displayName = "SettingsIcon";
|
|
11369
11361
|
var SettingsIcon$1 = SettingsIcon;
|
|
11370
11362
|
|
|
11363
|
+
var _excluded$23 = ["gradient"];
|
|
11364
|
+
|
|
11365
|
+
/**
|
|
11366
|
+
* @component ShapesIcon
|
|
11367
|
+
* @description
|
|
11368
|
+
*
|
|
11369
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
11370
|
+
* The Icon component is
|
|
11371
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
11372
|
+
*
|
|
11373
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
11374
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
11375
|
+
*
|
|
11376
|
+
* @example
|
|
11377
|
+
* return (
|
|
11378
|
+
* <ShapesIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
11379
|
+
* )
|
|
11380
|
+
*
|
|
11381
|
+
* @example
|
|
11382
|
+
* return (
|
|
11383
|
+
* <ShapesIcon className="mr-2" />
|
|
11384
|
+
* )
|
|
11385
|
+
*
|
|
11386
|
+
* @see
|
|
11387
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
11388
|
+
* @see
|
|
11389
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
11390
|
+
*/
|
|
11391
|
+
var ShapesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11392
|
+
var gradient = _ref.gradient,
|
|
11393
|
+
props = _objectWithoutProperties(_ref, _excluded$23);
|
|
11394
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11395
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11396
|
+
width: 24,
|
|
11397
|
+
height: 24,
|
|
11398
|
+
viewBox: "0 0 24 24",
|
|
11399
|
+
"data-testid": "ShapesIcon",
|
|
11400
|
+
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
11401
|
+
focusable: false,
|
|
11402
|
+
ref: ref
|
|
11403
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
11404
|
+
gradient: gradient
|
|
11405
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
11406
|
+
fillRule: "evenodd",
|
|
11407
|
+
d: "M10.11 16.47a7 7 0 1 1 6.36-6.36l-1.99-.17a5 5 0 1 0-4.54 4.54ZM14.5 12h4a2.5 2.5 0 0 1 2.5 2.5v4a2.5 2.5 0 0 1-2.5 2.5h-4a2.5 2.5 0 0 1-2.5-2.5v-4a2.5 2.5 0 0 1 2.5-2.5m0 2h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5"
|
|
11408
|
+
}));
|
|
11409
|
+
});
|
|
11410
|
+
ShapesIcon.displayName = "ShapesIcon";
|
|
11411
|
+
var ShapesIcon$1 = ShapesIcon;
|
|
11412
|
+
|
|
11371
11413
|
var _excluded$22 = ["gradient"];
|
|
11372
11414
|
|
|
11373
11415
|
/**
|
|
@@ -26998,7 +27040,7 @@
|
|
|
26998
27040
|
var StyledStackedCardCoverFill = styled__default["default"].div.withConfig({
|
|
26999
27041
|
displayName: "Styles__StyledStackedCardCoverFill",
|
|
27000
27042
|
componentId: "sc-vnqm9x-3"
|
|
27001
|
-
})(["position:absolute;inset:0;> *{width:100%;height:100%;}> img{display:block;object-fit:cover;}"]);
|
|
27043
|
+
})(["position:absolute;inset:0;> *{width:100%;height:100%;}> img{display:block;object-fit:cover;}> img,> svg{-webkit-user-drag:none;user-select:none;pointer-events:none;}"]);
|
|
27002
27044
|
StyledStackedCardCoverFill.displayName = "StyledStackedCardCoverFill";
|
|
27003
27045
|
var StyledStackedCardCoverCenter = styled__default["default"].div.withConfig({
|
|
27004
27046
|
displayName: "Styles__StyledStackedCardCoverCenter",
|
|
@@ -27076,7 +27118,7 @@
|
|
|
27076
27118
|
return $priorityColor && styled.css(["&::before{content:\"\";position:absolute;top:0;bottom:0;left:0;width:4px;background:", ";z-index:2;}"], $priorityColor);
|
|
27077
27119
|
}, function (_ref0) {
|
|
27078
27120
|
var $selected = _ref0.$selected;
|
|
27079
|
-
return $selected && styled.css(["border-color:", ";box-shadow:0 0 0 2px ", ";"], SELECTION_RING, SELECTION_RING);
|
|
27121
|
+
return $selected && styled.css(["&&{border-color:", ";box-shadow:0 0 0 2px ", ";}"], SELECTION_RING, SELECTION_RING);
|
|
27080
27122
|
}, function (_ref1) {
|
|
27081
27123
|
var $disabled = _ref1.$disabled;
|
|
27082
27124
|
return $disabled && styled.css(["opacity:0.5;pointer-events:none;"]);
|
|
@@ -27624,6 +27666,7 @@
|
|
|
27624
27666
|
exports.SendBlankIcon = SendBlankIcon$1;
|
|
27625
27667
|
exports.SendFilledIcon = SendFilledIcon$1;
|
|
27626
27668
|
exports.SettingsIcon = SettingsIcon$1;
|
|
27669
|
+
exports.ShapesIcon = ShapesIcon$1;
|
|
27627
27670
|
exports.Sheet = Sheet;
|
|
27628
27671
|
exports.ShieldIcon = ShieldIcon$1;
|
|
27629
27672
|
exports.Signifier = Signifier;
|