@activecollab/components 2.0.343 → 2.0.345
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/{SourceCode.js → GitRepository.js} +13 -11
- package/dist/cjs/components/Icons/collection/GitRepository.js.map +1 -0
- package/dist/cjs/components/Icons/collection/GitRepositoryConnect.js +95 -0
- package/dist/cjs/components/Icons/collection/GitRepositoryConnect.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +14 -7
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/cjs/presentation/shared/headers.js +326 -47
- package/dist/cjs/presentation/shared/headers.js.map +1 -1
- package/dist/esm/components/Icons/collection/GitRepository.d.ts +16 -0
- package/dist/esm/components/Icons/collection/GitRepository.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/{SourceCode.js → GitRepository.js} +13 -11
- package/dist/esm/components/Icons/collection/GitRepository.js.map +1 -0
- package/dist/esm/components/Icons/collection/GitRepositoryConnect.d.ts +17 -0
- package/dist/esm/components/Icons/collection/GitRepositoryConnect.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/GitRepositoryConnect.js +78 -0
- package/dist/esm/components/Icons/collection/GitRepositoryConnect.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +2 -1
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +2 -1
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/presentation/shared/headers.d.ts +8 -1
- package/dist/esm/presentation/shared/headers.d.ts.map +1 -1
- package/dist/esm/presentation/shared/headers.js +294 -43
- package/dist/esm/presentation/shared/headers.js.map +1 -1
- package/dist/index.js +529 -449
- 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/cjs/components/Icons/collection/SourceCode.js.map +0 -1
- package/dist/esm/components/Icons/collection/SourceCode.d.ts +0 -16
- package/dist/esm/components/Icons/collection/SourceCode.d.ts.map +0 -1
- package/dist/esm/components/Icons/collection/SourceCode.js.map +0 -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$59 = ["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$59);
|
|
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$58 = ["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$58);
|
|
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$57 = ["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$57);
|
|
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$56 = ["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$56);
|
|
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$55 = ["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$55);
|
|
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$54 = ["className"];
|
|
424
424
|
var ListSeparator = function ListSeparator(_ref) {
|
|
425
425
|
var className = _ref.className,
|
|
426
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
426
|
+
props = _objectWithoutProperties(_ref, _excluded$54);
|
|
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$53 = ["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$53);
|
|
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$52 = ["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$52);
|
|
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$51 = ["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$51);
|
|
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$50 = ["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$50);
|
|
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$4$ = ["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$4$);
|
|
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$4_ = ["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$4_);
|
|
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$4Z = ["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$4Z);
|
|
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$4Y = ["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$4Y);
|
|
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$4X = ["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$4X);
|
|
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$4W = ["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$4W);
|
|
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$4V = ["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$4V);
|
|
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$4U = ["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$4U);
|
|
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$4T = ["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$4T);
|
|
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$4S = ["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$4S);
|
|
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$4R = ["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$4R);
|
|
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$4Q = ["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$4Q);
|
|
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$4P = ["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$4P);
|
|
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$4O = ["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$4O);
|
|
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$4N = ["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$4N);
|
|
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$4M = ["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$4M);
|
|
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$4L = ["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$4L);
|
|
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$4K = ["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$4K);
|
|
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$4J = ["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$4J);
|
|
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$4I = ["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$4I);
|
|
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$4H = ["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$4H);
|
|
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$4G = ["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$4G);
|
|
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$4F = ["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$4F);
|
|
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$4E = ["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$4E);
|
|
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$4D = ["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$4D);
|
|
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$4C = ["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$4C);
|
|
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$4B = ["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$4B);
|
|
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$4A = ["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$4A);
|
|
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$4z = ["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$4z);
|
|
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$4y = ["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$4y);
|
|
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$4x = ["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$4x);
|
|
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$4w = ["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$4w);
|
|
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$4v = ["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$4v);
|
|
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$4u = ["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$4u);
|
|
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$4t = ["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$4t);
|
|
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$4s = ["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$4s);
|
|
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$4r = ["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$4r);
|
|
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$4q = ["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$4q);
|
|
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$4p = ["gradient"];
|
|
3025
3025
|
|
|
3026
3026
|
/**
|
|
3027
3027
|
* @component CircleIcon
|
|
@@ -3051,7 +3051,7 @@
|
|
|
3051
3051
|
*/
|
|
3052
3052
|
var CircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3053
3053
|
var gradient = _ref.gradient,
|
|
3054
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3054
|
+
props = _objectWithoutProperties(_ref, _excluded$4p);
|
|
3055
3055
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3056
3056
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3057
3057
|
width: 24,
|
|
@@ -3070,7 +3070,7 @@
|
|
|
3070
3070
|
CircleIcon.displayName = "CircleIcon";
|
|
3071
3071
|
var CircleIcon$1 = CircleIcon;
|
|
3072
3072
|
|
|
3073
|
-
var _excluded$
|
|
3073
|
+
var _excluded$4o = ["gradient"];
|
|
3074
3074
|
|
|
3075
3075
|
/**
|
|
3076
3076
|
* @component CircleMultipleIcon
|
|
@@ -3100,7 +3100,7 @@
|
|
|
3100
3100
|
*/
|
|
3101
3101
|
var CircleMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3102
3102
|
var gradient = _ref.gradient,
|
|
3103
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3103
|
+
props = _objectWithoutProperties(_ref, _excluded$4o);
|
|
3104
3104
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3105
3105
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3106
3106
|
width: 24,
|
|
@@ -3120,7 +3120,7 @@
|
|
|
3120
3120
|
CircleMultipleIcon.displayName = "CircleMultipleIcon";
|
|
3121
3121
|
var CircleMultipleIcon$1 = CircleMultipleIcon;
|
|
3122
3122
|
|
|
3123
|
-
var _excluded$
|
|
3123
|
+
var _excluded$4n = ["gradient"];
|
|
3124
3124
|
|
|
3125
3125
|
/**
|
|
3126
3126
|
* @component ClockAddIcon
|
|
@@ -3150,7 +3150,7 @@
|
|
|
3150
3150
|
*/
|
|
3151
3151
|
var ClockAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3152
3152
|
var gradient = _ref.gradient,
|
|
3153
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3153
|
+
props = _objectWithoutProperties(_ref, _excluded$4n);
|
|
3154
3154
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3155
3155
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3156
3156
|
width: 24,
|
|
@@ -3170,7 +3170,7 @@
|
|
|
3170
3170
|
ClockAddIcon.displayName = "ClockAddIcon";
|
|
3171
3171
|
var ClockAddIcon$1 = ClockAddIcon;
|
|
3172
3172
|
|
|
3173
|
-
var _excluded$
|
|
3173
|
+
var _excluded$4m = ["gradient"];
|
|
3174
3174
|
|
|
3175
3175
|
/**
|
|
3176
3176
|
* @component ClockDollarIcon
|
|
@@ -3200,7 +3200,7 @@
|
|
|
3200
3200
|
*/
|
|
3201
3201
|
var ClockDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3202
3202
|
var gradient = _ref.gradient,
|
|
3203
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3203
|
+
props = _objectWithoutProperties(_ref, _excluded$4m);
|
|
3204
3204
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3205
3205
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3206
3206
|
width: 24,
|
|
@@ -3223,7 +3223,7 @@
|
|
|
3223
3223
|
ClockDollarIcon.displayName = "ClockDollarIcon";
|
|
3224
3224
|
var ClockDollarIcon$1 = ClockDollarIcon;
|
|
3225
3225
|
|
|
3226
|
-
var _excluded$
|
|
3226
|
+
var _excluded$4l = ["gradient"];
|
|
3227
3227
|
|
|
3228
3228
|
/**
|
|
3229
3229
|
* @component ClockSmallIcon
|
|
@@ -3253,7 +3253,7 @@
|
|
|
3253
3253
|
*/
|
|
3254
3254
|
var ClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3255
3255
|
var gradient = _ref.gradient,
|
|
3256
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3256
|
+
props = _objectWithoutProperties(_ref, _excluded$4l);
|
|
3257
3257
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3258
3258
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3259
3259
|
width: 12,
|
|
@@ -3273,7 +3273,7 @@
|
|
|
3273
3273
|
ClockSmallIcon.displayName = "ClockSmallIcon";
|
|
3274
3274
|
var ClockSmallIcon$1 = ClockSmallIcon;
|
|
3275
3275
|
|
|
3276
|
-
var _excluded$
|
|
3276
|
+
var _excluded$4k = ["gradient"];
|
|
3277
3277
|
|
|
3278
3278
|
/**
|
|
3279
3279
|
* @component ClockStopwatchIndicatorIcon
|
|
@@ -3303,7 +3303,7 @@
|
|
|
3303
3303
|
*/
|
|
3304
3304
|
var ClockStopwatchIndicatorIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3305
3305
|
var gradient = _ref.gradient,
|
|
3306
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3306
|
+
props = _objectWithoutProperties(_ref, _excluded$4k);
|
|
3307
3307
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3308
3308
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3309
3309
|
width: 24,
|
|
@@ -3324,7 +3324,7 @@
|
|
|
3324
3324
|
ClockStopwatchIndicatorIcon.displayName = "ClockStopwatchIndicatorIcon";
|
|
3325
3325
|
var ClockStopwatchIndicatorIcon$1 = ClockStopwatchIndicatorIcon;
|
|
3326
3326
|
|
|
3327
|
-
var _excluded$
|
|
3327
|
+
var _excluded$4j = ["gradient"];
|
|
3328
3328
|
|
|
3329
3329
|
/**
|
|
3330
3330
|
* @component ClockStopwatchSmallIcon
|
|
@@ -3354,7 +3354,7 @@
|
|
|
3354
3354
|
*/
|
|
3355
3355
|
var ClockStopwatchSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3356
3356
|
var gradient = _ref.gradient,
|
|
3357
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3357
|
+
props = _objectWithoutProperties(_ref, _excluded$4j);
|
|
3358
3358
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3359
3359
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3360
3360
|
width: 12,
|
|
@@ -3374,7 +3374,7 @@
|
|
|
3374
3374
|
ClockStopwatchSmallIcon.displayName = "ClockStopwatchSmallIcon";
|
|
3375
3375
|
var ClockStopwatchSmallIcon$1 = ClockStopwatchSmallIcon;
|
|
3376
3376
|
|
|
3377
|
-
var _excluded$
|
|
3377
|
+
var _excluded$4i = ["gradient"];
|
|
3378
3378
|
|
|
3379
3379
|
/**
|
|
3380
3380
|
* @component ClockStopwatchIcon
|
|
@@ -3404,7 +3404,7 @@
|
|
|
3404
3404
|
*/
|
|
3405
3405
|
var ClockStopwatchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3406
3406
|
var gradient = _ref.gradient,
|
|
3407
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3407
|
+
props = _objectWithoutProperties(_ref, _excluded$4i);
|
|
3408
3408
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3409
3409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3410
3410
|
width: 24,
|
|
@@ -3424,7 +3424,7 @@
|
|
|
3424
3424
|
ClockStopwatchIcon.displayName = "ClockStopwatchIcon";
|
|
3425
3425
|
var ClockStopwatchIcon$1 = ClockStopwatchIcon;
|
|
3426
3426
|
|
|
3427
|
-
var _excluded$
|
|
3427
|
+
var _excluded$4h = ["gradient"];
|
|
3428
3428
|
|
|
3429
3429
|
/**
|
|
3430
3430
|
* @component ClockIcon
|
|
@@ -3454,7 +3454,7 @@
|
|
|
3454
3454
|
*/
|
|
3455
3455
|
var ClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3456
3456
|
var gradient = _ref.gradient,
|
|
3457
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3457
|
+
props = _objectWithoutProperties(_ref, _excluded$4h);
|
|
3458
3458
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3459
3459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3460
3460
|
width: 24,
|
|
@@ -3474,7 +3474,7 @@
|
|
|
3474
3474
|
ClockIcon.displayName = "ClockIcon";
|
|
3475
3475
|
var ClockIcon$1 = ClockIcon;
|
|
3476
3476
|
|
|
3477
|
-
var _excluded$
|
|
3477
|
+
var _excluded$4g = ["gradient"];
|
|
3478
3478
|
|
|
3479
3479
|
/**
|
|
3480
3480
|
* @component CloseCircleIcon
|
|
@@ -3504,7 +3504,7 @@
|
|
|
3504
3504
|
*/
|
|
3505
3505
|
var CloseCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3506
3506
|
var gradient = _ref.gradient,
|
|
3507
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3507
|
+
props = _objectWithoutProperties(_ref, _excluded$4g);
|
|
3508
3508
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3509
3509
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3510
3510
|
width: 24,
|
|
@@ -3525,7 +3525,7 @@
|
|
|
3525
3525
|
CloseCircleIcon.displayName = "CloseCircleIcon";
|
|
3526
3526
|
var CloseCircleIcon$1 = CloseCircleIcon;
|
|
3527
3527
|
|
|
3528
|
-
var _excluded$
|
|
3528
|
+
var _excluded$4f = ["gradient"];
|
|
3529
3529
|
|
|
3530
3530
|
/**
|
|
3531
3531
|
* @component CloseDocumentIcon
|
|
@@ -3555,7 +3555,7 @@
|
|
|
3555
3555
|
*/
|
|
3556
3556
|
var CloseDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3557
3557
|
var gradient = _ref.gradient,
|
|
3558
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3558
|
+
props = _objectWithoutProperties(_ref, _excluded$4f);
|
|
3559
3559
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3560
3560
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3561
3561
|
width: 24,
|
|
@@ -3575,7 +3575,7 @@
|
|
|
3575
3575
|
CloseDocumentIcon.displayName = "CloseDocumentIcon";
|
|
3576
3576
|
var CloseDocumentIcon$1 = CloseDocumentIcon;
|
|
3577
3577
|
|
|
3578
|
-
var _excluded$
|
|
3578
|
+
var _excluded$4e = ["gradient"];
|
|
3579
3579
|
|
|
3580
3580
|
/**
|
|
3581
3581
|
* @component CloseSmallIcon
|
|
@@ -3605,7 +3605,7 @@
|
|
|
3605
3605
|
*/
|
|
3606
3606
|
var CloseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3607
3607
|
var gradient = _ref.gradient,
|
|
3608
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3608
|
+
props = _objectWithoutProperties(_ref, _excluded$4e);
|
|
3609
3609
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3610
3610
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3611
3611
|
width: 24,
|
|
@@ -3625,7 +3625,7 @@
|
|
|
3625
3625
|
CloseSmallIcon.displayName = "CloseSmallIcon";
|
|
3626
3626
|
var CloseSmallIcon$1 = CloseSmallIcon;
|
|
3627
3627
|
|
|
3628
|
-
var _excluded$
|
|
3628
|
+
var _excluded$4d = ["gradient"];
|
|
3629
3629
|
|
|
3630
3630
|
/**
|
|
3631
3631
|
* @component CloseIcon
|
|
@@ -3655,7 +3655,7 @@
|
|
|
3655
3655
|
*/
|
|
3656
3656
|
var CloseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3657
3657
|
var gradient = _ref.gradient,
|
|
3658
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3658
|
+
props = _objectWithoutProperties(_ref, _excluded$4d);
|
|
3659
3659
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3660
3660
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3661
3661
|
width: 24,
|
|
@@ -3676,7 +3676,7 @@
|
|
|
3676
3676
|
CloseIcon.displayName = "CloseIcon";
|
|
3677
3677
|
var CloseIcon$1 = CloseIcon;
|
|
3678
3678
|
|
|
3679
|
-
var _excluded$
|
|
3679
|
+
var _excluded$4c = ["gradient"];
|
|
3680
3680
|
|
|
3681
3681
|
/**
|
|
3682
3682
|
* @component CollapsIcon
|
|
@@ -3706,7 +3706,7 @@
|
|
|
3706
3706
|
*/
|
|
3707
3707
|
var CollapsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3708
3708
|
var gradient = _ref.gradient,
|
|
3709
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3709
|
+
props = _objectWithoutProperties(_ref, _excluded$4c);
|
|
3710
3710
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3711
3711
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3712
3712
|
width: 6,
|
|
@@ -3726,7 +3726,7 @@
|
|
|
3726
3726
|
CollapsIcon.displayName = "CollapsIcon";
|
|
3727
3727
|
var CollapsIcon$1 = CollapsIcon;
|
|
3728
3728
|
|
|
3729
|
-
var _excluded$
|
|
3729
|
+
var _excluded$4b = ["gradient"];
|
|
3730
3730
|
|
|
3731
3731
|
/**
|
|
3732
3732
|
* @component CollapseAllIcon
|
|
@@ -3756,7 +3756,7 @@
|
|
|
3756
3756
|
*/
|
|
3757
3757
|
var CollapseAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3758
3758
|
var gradient = _ref.gradient,
|
|
3759
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3759
|
+
props = _objectWithoutProperties(_ref, _excluded$4b);
|
|
3760
3760
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3761
3761
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3762
3762
|
width: 24,
|
|
@@ -3776,7 +3776,7 @@
|
|
|
3776
3776
|
CollapseAllIcon.displayName = "CollapseAllIcon";
|
|
3777
3777
|
var CollapseAllIcon$1 = CollapseAllIcon;
|
|
3778
3778
|
|
|
3779
|
-
var _excluded$
|
|
3779
|
+
var _excluded$4a = ["gradient"];
|
|
3780
3780
|
|
|
3781
3781
|
/**
|
|
3782
3782
|
* @component CollapseExpandSingleIcon
|
|
@@ -3806,7 +3806,7 @@
|
|
|
3806
3806
|
*/
|
|
3807
3807
|
var CollapseExpandSingleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3808
3808
|
var gradient = _ref.gradient,
|
|
3809
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3809
|
+
props = _objectWithoutProperties(_ref, _excluded$4a);
|
|
3810
3810
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3811
3811
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3812
3812
|
width: 24,
|
|
@@ -3826,7 +3826,7 @@
|
|
|
3826
3826
|
CollapseExpandSingleIcon.displayName = "CollapseExpandSingleIcon";
|
|
3827
3827
|
var CollapseExpandSingleIcon$1 = CollapseExpandSingleIcon;
|
|
3828
3828
|
|
|
3829
|
-
var _excluded$
|
|
3829
|
+
var _excluded$49 = ["gradient"];
|
|
3830
3830
|
|
|
3831
3831
|
/**
|
|
3832
3832
|
* @component CompanyAddIcon
|
|
@@ -3856,7 +3856,7 @@
|
|
|
3856
3856
|
*/
|
|
3857
3857
|
var CompanyAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3858
3858
|
var gradient = _ref.gradient,
|
|
3859
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3859
|
+
props = _objectWithoutProperties(_ref, _excluded$49);
|
|
3860
3860
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3861
3861
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3862
3862
|
width: 18,
|
|
@@ -3877,7 +3877,7 @@
|
|
|
3877
3877
|
CompanyAddIcon.displayName = "CompanyAddIcon";
|
|
3878
3878
|
var CompanyAddIcon$1 = CompanyAddIcon;
|
|
3879
3879
|
|
|
3880
|
-
var _excluded$
|
|
3880
|
+
var _excluded$48 = ["gradient"];
|
|
3881
3881
|
|
|
3882
3882
|
/**
|
|
3883
3883
|
* @component CompanyIcon
|
|
@@ -3907,7 +3907,7 @@
|
|
|
3907
3907
|
*/
|
|
3908
3908
|
var CompanyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3909
3909
|
var gradient = _ref.gradient,
|
|
3910
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3910
|
+
props = _objectWithoutProperties(_ref, _excluded$48);
|
|
3911
3911
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3912
3912
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3913
3913
|
width: 24,
|
|
@@ -3928,7 +3928,7 @@
|
|
|
3928
3928
|
CompanyIcon.displayName = "CompanyIcon";
|
|
3929
3929
|
var CompanyIcon$1 = CompanyIcon;
|
|
3930
3930
|
|
|
3931
|
-
var _excluded$
|
|
3931
|
+
var _excluded$47 = ["gradient"];
|
|
3932
3932
|
|
|
3933
3933
|
/**
|
|
3934
3934
|
* @component ComputerIcon
|
|
@@ -3958,7 +3958,7 @@
|
|
|
3958
3958
|
*/
|
|
3959
3959
|
var ComputerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3960
3960
|
var gradient = _ref.gradient,
|
|
3961
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3961
|
+
props = _objectWithoutProperties(_ref, _excluded$47);
|
|
3962
3962
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3963
3963
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3964
3964
|
width: 24,
|
|
@@ -3978,7 +3978,7 @@
|
|
|
3978
3978
|
ComputerIcon.displayName = "ComputerIcon";
|
|
3979
3979
|
var ComputerIcon$1 = ComputerIcon;
|
|
3980
3980
|
|
|
3981
|
-
var _excluded$
|
|
3981
|
+
var _excluded$46 = ["gradient"];
|
|
3982
3982
|
|
|
3983
3983
|
/**
|
|
3984
3984
|
* @component ConnectionIcon
|
|
@@ -4008,7 +4008,7 @@
|
|
|
4008
4008
|
*/
|
|
4009
4009
|
var ConnectionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4010
4010
|
var gradient = _ref.gradient,
|
|
4011
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4011
|
+
props = _objectWithoutProperties(_ref, _excluded$46);
|
|
4012
4012
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4013
4013
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4014
4014
|
width: 24,
|
|
@@ -4043,7 +4043,7 @@
|
|
|
4043
4043
|
ConnectionIcon.displayName = "ConnectionIcon";
|
|
4044
4044
|
var ConnectionIcon$1 = ConnectionIcon;
|
|
4045
4045
|
|
|
4046
|
-
var _excluded$
|
|
4046
|
+
var _excluded$45 = ["gradient"];
|
|
4047
4047
|
|
|
4048
4048
|
/**
|
|
4049
4049
|
* @component CopyIcon
|
|
@@ -4073,7 +4073,7 @@
|
|
|
4073
4073
|
*/
|
|
4074
4074
|
var CopyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4075
4075
|
var gradient = _ref.gradient,
|
|
4076
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4076
|
+
props = _objectWithoutProperties(_ref, _excluded$45);
|
|
4077
4077
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4078
4078
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4079
4079
|
width: 24,
|
|
@@ -4093,7 +4093,7 @@
|
|
|
4093
4093
|
CopyIcon.displayName = "CopyIcon";
|
|
4094
4094
|
var CopyIcon$1 = CopyIcon;
|
|
4095
4095
|
|
|
4096
|
-
var _excluded$
|
|
4096
|
+
var _excluded$44 = ["gradient"];
|
|
4097
4097
|
|
|
4098
4098
|
/**
|
|
4099
4099
|
* @component CrownBlankIcon
|
|
@@ -4123,7 +4123,7 @@
|
|
|
4123
4123
|
*/
|
|
4124
4124
|
var CrownBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4125
4125
|
var gradient = _ref.gradient,
|
|
4126
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4126
|
+
props = _objectWithoutProperties(_ref, _excluded$44);
|
|
4127
4127
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4128
4128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4129
4129
|
width: 24,
|
|
@@ -4143,7 +4143,7 @@
|
|
|
4143
4143
|
CrownBlankIcon.displayName = "CrownBlankIcon";
|
|
4144
4144
|
var CrownBlankIcon$1 = CrownBlankIcon;
|
|
4145
4145
|
|
|
4146
|
-
var _excluded$
|
|
4146
|
+
var _excluded$43 = ["gradient"];
|
|
4147
4147
|
|
|
4148
4148
|
/**
|
|
4149
4149
|
* @component CrownSelectedIcon
|
|
@@ -4173,7 +4173,7 @@
|
|
|
4173
4173
|
*/
|
|
4174
4174
|
var CrownSelectedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4175
4175
|
var gradient = _ref.gradient,
|
|
4176
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4176
|
+
props = _objectWithoutProperties(_ref, _excluded$43);
|
|
4177
4177
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4178
4178
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4179
4179
|
width: 24,
|
|
@@ -4193,7 +4193,7 @@
|
|
|
4193
4193
|
CrownSelectedIcon.displayName = "CrownSelectedIcon";
|
|
4194
4194
|
var CrownSelectedIcon$1 = CrownSelectedIcon;
|
|
4195
4195
|
|
|
4196
|
-
var _excluded$
|
|
4196
|
+
var _excluded$42 = ["gradient"];
|
|
4197
4197
|
|
|
4198
4198
|
/**
|
|
4199
4199
|
* @component DependencySmallIcon
|
|
@@ -4223,7 +4223,7 @@
|
|
|
4223
4223
|
*/
|
|
4224
4224
|
var DependencySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4225
4225
|
var gradient = _ref.gradient,
|
|
4226
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4226
|
+
props = _objectWithoutProperties(_ref, _excluded$42);
|
|
4227
4227
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4228
4228
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4229
4229
|
width: 12,
|
|
@@ -4243,7 +4243,7 @@
|
|
|
4243
4243
|
DependencySmallIcon.displayName = "DependencySmallIcon";
|
|
4244
4244
|
var DependencySmallIcon$1 = DependencySmallIcon;
|
|
4245
4245
|
|
|
4246
|
-
var _excluded$
|
|
4246
|
+
var _excluded$41 = ["gradient"];
|
|
4247
4247
|
|
|
4248
4248
|
/**
|
|
4249
4249
|
* @component DependencyIcon
|
|
@@ -4273,7 +4273,7 @@
|
|
|
4273
4273
|
*/
|
|
4274
4274
|
var DependencyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4275
4275
|
var gradient = _ref.gradient,
|
|
4276
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4276
|
+
props = _objectWithoutProperties(_ref, _excluded$41);
|
|
4277
4277
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4278
4278
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4279
4279
|
width: 24,
|
|
@@ -4293,7 +4293,7 @@
|
|
|
4293
4293
|
DependencyIcon.displayName = "DependencyIcon";
|
|
4294
4294
|
var DependencyIcon$1 = DependencyIcon;
|
|
4295
4295
|
|
|
4296
|
-
var _excluded$
|
|
4296
|
+
var _excluded$40 = ["gradient"];
|
|
4297
4297
|
|
|
4298
4298
|
/**
|
|
4299
4299
|
* @component DescriptionSmallIcon
|
|
@@ -4323,7 +4323,7 @@
|
|
|
4323
4323
|
*/
|
|
4324
4324
|
var DescriptionSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4325
4325
|
var gradient = _ref.gradient,
|
|
4326
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4326
|
+
props = _objectWithoutProperties(_ref, _excluded$40);
|
|
4327
4327
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4328
4328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4329
4329
|
width: 18,
|
|
@@ -4344,7 +4344,7 @@
|
|
|
4344
4344
|
DescriptionSmallIcon.displayName = "DescriptionSmallIcon";
|
|
4345
4345
|
var DescriptionSmallIcon$1 = DescriptionSmallIcon;
|
|
4346
4346
|
|
|
4347
|
-
var _excluded$
|
|
4347
|
+
var _excluded$3$ = ["gradient"];
|
|
4348
4348
|
|
|
4349
4349
|
/**
|
|
4350
4350
|
* @component DescriptionIcon
|
|
@@ -4374,7 +4374,7 @@
|
|
|
4374
4374
|
*/
|
|
4375
4375
|
var DescriptionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4376
4376
|
var gradient = _ref.gradient,
|
|
4377
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4377
|
+
props = _objectWithoutProperties(_ref, _excluded$3$);
|
|
4378
4378
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4379
4379
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4380
4380
|
width: 24,
|
|
@@ -4394,7 +4394,7 @@
|
|
|
4394
4394
|
DescriptionIcon.displayName = "DescriptionIcon";
|
|
4395
4395
|
var DescriptionIcon$1 = DescriptionIcon;
|
|
4396
4396
|
|
|
4397
|
-
var _excluded$
|
|
4397
|
+
var _excluded$3_ = ["gradient"];
|
|
4398
4398
|
|
|
4399
4399
|
/**
|
|
4400
4400
|
* @component DiscussionAddIcon
|
|
@@ -4424,7 +4424,7 @@
|
|
|
4424
4424
|
*/
|
|
4425
4425
|
var DiscussionAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4426
4426
|
var gradient = _ref.gradient,
|
|
4427
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4427
|
+
props = _objectWithoutProperties(_ref, _excluded$3_);
|
|
4428
4428
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4429
4429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4430
4430
|
width: 24,
|
|
@@ -4444,7 +4444,7 @@
|
|
|
4444
4444
|
DiscussionAddIcon.displayName = "DiscussionAddIcon";
|
|
4445
4445
|
var DiscussionAddIcon$1 = DiscussionAddIcon;
|
|
4446
4446
|
|
|
4447
|
-
var _excluded$
|
|
4447
|
+
var _excluded$3Z = ["gradient"];
|
|
4448
4448
|
|
|
4449
4449
|
/**
|
|
4450
4450
|
* @component DiscussionIcon
|
|
@@ -4474,7 +4474,7 @@
|
|
|
4474
4474
|
*/
|
|
4475
4475
|
var DiscussionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4476
4476
|
var gradient = _ref.gradient,
|
|
4477
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4477
|
+
props = _objectWithoutProperties(_ref, _excluded$3Z);
|
|
4478
4478
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4479
4479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4480
4480
|
width: 24,
|
|
@@ -4495,7 +4495,7 @@
|
|
|
4495
4495
|
DiscussionIcon.displayName = "DiscussionIcon";
|
|
4496
4496
|
var DiscussionIcon$1 = DiscussionIcon;
|
|
4497
4497
|
|
|
4498
|
-
var _excluded$
|
|
4498
|
+
var _excluded$3Y = ["gradient"];
|
|
4499
4499
|
|
|
4500
4500
|
/**
|
|
4501
4501
|
* @component DollarCheckmarkSmallIcon
|
|
@@ -4525,7 +4525,7 @@
|
|
|
4525
4525
|
*/
|
|
4526
4526
|
var DollarCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4527
4527
|
var gradient = _ref.gradient,
|
|
4528
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4528
|
+
props = _objectWithoutProperties(_ref, _excluded$3Y);
|
|
4529
4529
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4530
4530
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4531
4531
|
width: 12,
|
|
@@ -4545,7 +4545,7 @@
|
|
|
4545
4545
|
DollarCheckmarkSmallIcon.displayName = "DollarCheckmarkSmallIcon";
|
|
4546
4546
|
var DollarCheckmarkSmallIcon$1 = DollarCheckmarkSmallIcon;
|
|
4547
4547
|
|
|
4548
|
-
var _excluded$
|
|
4548
|
+
var _excluded$3X = ["gradient"];
|
|
4549
4549
|
|
|
4550
4550
|
/**
|
|
4551
4551
|
* @component DollarCheckmarkIcon
|
|
@@ -4575,7 +4575,7 @@
|
|
|
4575
4575
|
*/
|
|
4576
4576
|
var DollarCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4577
4577
|
var gradient = _ref.gradient,
|
|
4578
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4578
|
+
props = _objectWithoutProperties(_ref, _excluded$3X);
|
|
4579
4579
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4580
4580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4581
4581
|
width: 24,
|
|
@@ -4595,7 +4595,7 @@
|
|
|
4595
4595
|
DollarCheckmarkIcon.displayName = "DollarCheckmarkIcon";
|
|
4596
4596
|
var DollarCheckmarkIcon$1 = DollarCheckmarkIcon;
|
|
4597
4597
|
|
|
4598
|
-
var _excluded$
|
|
4598
|
+
var _excluded$3W = ["gradient"];
|
|
4599
4599
|
|
|
4600
4600
|
/**
|
|
4601
4601
|
* @component DollarClockSmallIcon
|
|
@@ -4625,7 +4625,7 @@
|
|
|
4625
4625
|
*/
|
|
4626
4626
|
var DollarClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4627
4627
|
var gradient = _ref.gradient,
|
|
4628
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4628
|
+
props = _objectWithoutProperties(_ref, _excluded$3W);
|
|
4629
4629
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4630
4630
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4631
4631
|
width: 12,
|
|
@@ -4645,7 +4645,7 @@
|
|
|
4645
4645
|
DollarClockSmallIcon.displayName = "DollarClockSmallIcon";
|
|
4646
4646
|
var DollarClockSmallIcon$1 = DollarClockSmallIcon;
|
|
4647
4647
|
|
|
4648
|
-
var _excluded$
|
|
4648
|
+
var _excluded$3V = ["gradient"];
|
|
4649
4649
|
|
|
4650
4650
|
/**
|
|
4651
4651
|
* @component DollarClockIcon
|
|
@@ -4675,7 +4675,7 @@
|
|
|
4675
4675
|
*/
|
|
4676
4676
|
var DollarClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4677
4677
|
var gradient = _ref.gradient,
|
|
4678
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4678
|
+
props = _objectWithoutProperties(_ref, _excluded$3V);
|
|
4679
4679
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4680
4680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4681
4681
|
width: 24,
|
|
@@ -4695,7 +4695,7 @@
|
|
|
4695
4695
|
DollarClockIcon.displayName = "DollarClockIcon";
|
|
4696
4696
|
var DollarClockIcon$1 = DollarClockIcon;
|
|
4697
4697
|
|
|
4698
|
-
var _excluded$
|
|
4698
|
+
var _excluded$3U = ["gradient"];
|
|
4699
4699
|
|
|
4700
4700
|
/**
|
|
4701
4701
|
* @component DollarDocumentPlusIcon
|
|
@@ -4725,7 +4725,7 @@
|
|
|
4725
4725
|
*/
|
|
4726
4726
|
var DollarDocumentPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4727
4727
|
var gradient = _ref.gradient,
|
|
4728
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4728
|
+
props = _objectWithoutProperties(_ref, _excluded$3U);
|
|
4729
4729
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4730
4730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4731
4731
|
width: 24,
|
|
@@ -4745,7 +4745,7 @@
|
|
|
4745
4745
|
DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
|
|
4746
4746
|
var DollarDocumentPlusIcon$1 = DollarDocumentPlusIcon;
|
|
4747
4747
|
|
|
4748
|
-
var _excluded$
|
|
4748
|
+
var _excluded$3T = ["gradient"];
|
|
4749
4749
|
|
|
4750
4750
|
/**
|
|
4751
4751
|
* @component DollarDocumentIcon
|
|
@@ -4775,7 +4775,7 @@
|
|
|
4775
4775
|
*/
|
|
4776
4776
|
var DollarDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4777
4777
|
var gradient = _ref.gradient,
|
|
4778
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4778
|
+
props = _objectWithoutProperties(_ref, _excluded$3T);
|
|
4779
4779
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4780
4780
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4781
4781
|
width: 24,
|
|
@@ -4796,7 +4796,7 @@
|
|
|
4796
4796
|
DollarDocumentIcon.displayName = "DollarDocumentIcon";
|
|
4797
4797
|
var DollarDocumentIcon$1 = DollarDocumentIcon;
|
|
4798
4798
|
|
|
4799
|
-
var _excluded$
|
|
4799
|
+
var _excluded$3S = ["gradient"];
|
|
4800
4800
|
|
|
4801
4801
|
/**
|
|
4802
4802
|
* @component DollarOffSmallIcon
|
|
@@ -4826,7 +4826,7 @@
|
|
|
4826
4826
|
*/
|
|
4827
4827
|
var DollarOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4828
4828
|
var gradient = _ref.gradient,
|
|
4829
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4829
|
+
props = _objectWithoutProperties(_ref, _excluded$3S);
|
|
4830
4830
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4831
4831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4832
4832
|
width: 12,
|
|
@@ -4846,7 +4846,7 @@
|
|
|
4846
4846
|
DollarOffSmallIcon.displayName = "DollarOffSmallIcon";
|
|
4847
4847
|
var DollarOffSmallIcon$1 = DollarOffSmallIcon;
|
|
4848
4848
|
|
|
4849
|
-
var _excluded$
|
|
4849
|
+
var _excluded$3R = ["gradient"];
|
|
4850
4850
|
|
|
4851
4851
|
/**
|
|
4852
4852
|
* @component DollarOffIcon
|
|
@@ -4876,7 +4876,7 @@
|
|
|
4876
4876
|
*/
|
|
4877
4877
|
var DollarOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4878
4878
|
var gradient = _ref.gradient,
|
|
4879
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4879
|
+
props = _objectWithoutProperties(_ref, _excluded$3R);
|
|
4880
4880
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4881
4881
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4882
4882
|
width: 24,
|
|
@@ -4896,7 +4896,7 @@
|
|
|
4896
4896
|
DollarOffIcon.displayName = "DollarOffIcon";
|
|
4897
4897
|
var DollarOffIcon$1 = DollarOffIcon;
|
|
4898
4898
|
|
|
4899
|
-
var _excluded$
|
|
4899
|
+
var _excluded$3Q = ["gradient"];
|
|
4900
4900
|
|
|
4901
4901
|
/**
|
|
4902
4902
|
* @component DollarSmallIcon
|
|
@@ -4926,7 +4926,7 @@
|
|
|
4926
4926
|
*/
|
|
4927
4927
|
var DollarSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4928
4928
|
var gradient = _ref.gradient,
|
|
4929
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4929
|
+
props = _objectWithoutProperties(_ref, _excluded$3Q);
|
|
4930
4930
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4931
4931
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4932
4932
|
width: 12,
|
|
@@ -4946,7 +4946,7 @@
|
|
|
4946
4946
|
DollarSmallIcon.displayName = "DollarSmallIcon";
|
|
4947
4947
|
var DollarSmallIcon$1 = DollarSmallIcon;
|
|
4948
4948
|
|
|
4949
|
-
var _excluded$
|
|
4949
|
+
var _excluded$3P = ["gradient"];
|
|
4950
4950
|
|
|
4951
4951
|
/**
|
|
4952
4952
|
* @component DollarIcon
|
|
@@ -4976,7 +4976,7 @@
|
|
|
4976
4976
|
*/
|
|
4977
4977
|
var DollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4978
4978
|
var gradient = _ref.gradient,
|
|
4979
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4979
|
+
props = _objectWithoutProperties(_ref, _excluded$3P);
|
|
4980
4980
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4981
4981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4982
4982
|
width: 24,
|
|
@@ -4996,7 +4996,7 @@
|
|
|
4996
4996
|
DollarIcon.displayName = "DollarIcon";
|
|
4997
4997
|
var DollarIcon$1 = DollarIcon;
|
|
4998
4998
|
|
|
4999
|
-
var _excluded$
|
|
4999
|
+
var _excluded$3O = ["gradient"];
|
|
5000
5000
|
|
|
5001
5001
|
/**
|
|
5002
5002
|
* @component DownloadIcon
|
|
@@ -5026,7 +5026,7 @@
|
|
|
5026
5026
|
*/
|
|
5027
5027
|
var DownloadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5028
5028
|
var gradient = _ref.gradient,
|
|
5029
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5029
|
+
props = _objectWithoutProperties(_ref, _excluded$3O);
|
|
5030
5030
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5031
5031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5032
5032
|
width: 24,
|
|
@@ -5046,7 +5046,7 @@
|
|
|
5046
5046
|
DownloadIcon.displayName = "DownloadIcon";
|
|
5047
5047
|
var DownloadIcon$1 = DownloadIcon;
|
|
5048
5048
|
|
|
5049
|
-
var _excluded$
|
|
5049
|
+
var _excluded$3N = ["gradient"];
|
|
5050
5050
|
|
|
5051
5051
|
/**
|
|
5052
5052
|
* @component DrawIcon
|
|
@@ -5076,7 +5076,7 @@
|
|
|
5076
5076
|
*/
|
|
5077
5077
|
var DrawIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5078
5078
|
var gradient = _ref.gradient,
|
|
5079
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5079
|
+
props = _objectWithoutProperties(_ref, _excluded$3N);
|
|
5080
5080
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5081
5081
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5082
5082
|
width: 24,
|
|
@@ -5097,7 +5097,7 @@
|
|
|
5097
5097
|
DrawIcon.displayName = "DrawIcon";
|
|
5098
5098
|
var DrawIcon$1 = DrawIcon;
|
|
5099
5099
|
|
|
5100
|
-
var _excluded$
|
|
5100
|
+
var _excluded$3M = ["gradient"];
|
|
5101
5101
|
|
|
5102
5102
|
/**
|
|
5103
5103
|
* @component DriveIcon
|
|
@@ -5127,7 +5127,7 @@
|
|
|
5127
5127
|
*/
|
|
5128
5128
|
var DriveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5129
5129
|
var gradient = _ref.gradient,
|
|
5130
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5130
|
+
props = _objectWithoutProperties(_ref, _excluded$3M);
|
|
5131
5131
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5132
5132
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5133
5133
|
width: 24,
|
|
@@ -5147,7 +5147,7 @@
|
|
|
5147
5147
|
DriveIcon.displayName = "DriveIcon";
|
|
5148
5148
|
var DriveIcon$1 = DriveIcon;
|
|
5149
5149
|
|
|
5150
|
-
var _excluded$
|
|
5150
|
+
var _excluded$3L = ["gradient"];
|
|
5151
5151
|
|
|
5152
5152
|
/**
|
|
5153
5153
|
* @component DropboxIcon
|
|
@@ -5177,7 +5177,7 @@
|
|
|
5177
5177
|
*/
|
|
5178
5178
|
var DropboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5179
5179
|
var gradient = _ref.gradient,
|
|
5180
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5180
|
+
props = _objectWithoutProperties(_ref, _excluded$3L);
|
|
5181
5181
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5182
5182
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5183
5183
|
width: 24,
|
|
@@ -5197,7 +5197,7 @@
|
|
|
5197
5197
|
DropboxIcon.displayName = "DropboxIcon";
|
|
5198
5198
|
var DropboxIcon$1 = DropboxIcon;
|
|
5199
5199
|
|
|
5200
|
-
var _excluded$
|
|
5200
|
+
var _excluded$3K = ["gradient"];
|
|
5201
5201
|
|
|
5202
5202
|
/**
|
|
5203
5203
|
* @component DuplicateIcon
|
|
@@ -5227,7 +5227,7 @@
|
|
|
5227
5227
|
*/
|
|
5228
5228
|
var DuplicateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5229
5229
|
var gradient = _ref.gradient,
|
|
5230
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5230
|
+
props = _objectWithoutProperties(_ref, _excluded$3K);
|
|
5231
5231
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5232
5232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5233
5233
|
width: 24,
|
|
@@ -5247,7 +5247,7 @@
|
|
|
5247
5247
|
DuplicateIcon.displayName = "DuplicateIcon";
|
|
5248
5248
|
var DuplicateIcon$1 = DuplicateIcon;
|
|
5249
5249
|
|
|
5250
|
-
var _excluded$
|
|
5250
|
+
var _excluded$3J = ["gradient"];
|
|
5251
5251
|
|
|
5252
5252
|
/**
|
|
5253
5253
|
* @component EditMultipleIcon
|
|
@@ -5277,7 +5277,7 @@
|
|
|
5277
5277
|
*/
|
|
5278
5278
|
var EditMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5279
5279
|
var gradient = _ref.gradient,
|
|
5280
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5280
|
+
props = _objectWithoutProperties(_ref, _excluded$3J);
|
|
5281
5281
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5282
5282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5283
5283
|
width: 24,
|
|
@@ -5297,7 +5297,7 @@
|
|
|
5297
5297
|
EditMultipleIcon.displayName = "EditMultipleIcon";
|
|
5298
5298
|
var EditMultipleIcon$1 = EditMultipleIcon;
|
|
5299
5299
|
|
|
5300
|
-
var _excluded$
|
|
5300
|
+
var _excluded$3I = ["gradient"];
|
|
5301
5301
|
|
|
5302
5302
|
/**
|
|
5303
5303
|
* @component EditIcon
|
|
@@ -5327,7 +5327,7 @@
|
|
|
5327
5327
|
*/
|
|
5328
5328
|
var EditIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5329
5329
|
var gradient = _ref.gradient,
|
|
5330
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5330
|
+
props = _objectWithoutProperties(_ref, _excluded$3I);
|
|
5331
5331
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5332
5332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5333
5333
|
width: 24,
|
|
@@ -5347,7 +5347,7 @@
|
|
|
5347
5347
|
EditIcon.displayName = "EditIcon";
|
|
5348
5348
|
var EditIcon$1 = EditIcon;
|
|
5349
5349
|
|
|
5350
|
-
var _excluded$
|
|
5350
|
+
var _excluded$3H = ["gradient"];
|
|
5351
5351
|
|
|
5352
5352
|
/**
|
|
5353
5353
|
* @component EmojiIcon
|
|
@@ -5377,7 +5377,7 @@
|
|
|
5377
5377
|
*/
|
|
5378
5378
|
var EmojiIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5379
5379
|
var gradient = _ref.gradient,
|
|
5380
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5380
|
+
props = _objectWithoutProperties(_ref, _excluded$3H);
|
|
5381
5381
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5382
5382
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5383
5383
|
width: 24,
|
|
@@ -5397,7 +5397,7 @@
|
|
|
5397
5397
|
EmojiIcon.displayName = "EmojiIcon";
|
|
5398
5398
|
var EmojiIcon$1 = EmojiIcon;
|
|
5399
5399
|
|
|
5400
|
-
var _excluded$
|
|
5400
|
+
var _excluded$3G = ["gradient"];
|
|
5401
5401
|
|
|
5402
5402
|
/**
|
|
5403
5403
|
* @component EstimatePlusIcon
|
|
@@ -5427,7 +5427,7 @@
|
|
|
5427
5427
|
*/
|
|
5428
5428
|
var EstimatePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5429
5429
|
var gradient = _ref.gradient,
|
|
5430
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5430
|
+
props = _objectWithoutProperties(_ref, _excluded$3G);
|
|
5431
5431
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5432
5432
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5433
5433
|
width: 24,
|
|
@@ -5448,7 +5448,7 @@
|
|
|
5448
5448
|
EstimatePlusIcon.displayName = "EstimatePlusIcon";
|
|
5449
5449
|
var EstimatePlusIcon$1 = EstimatePlusIcon;
|
|
5450
5450
|
|
|
5451
|
-
var _excluded$
|
|
5451
|
+
var _excluded$3F = ["gradient"];
|
|
5452
5452
|
|
|
5453
5453
|
/**
|
|
5454
5454
|
* @component EstimatesIcon
|
|
@@ -5478,7 +5478,7 @@
|
|
|
5478
5478
|
*/
|
|
5479
5479
|
var EstimatesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5480
5480
|
var gradient = _ref.gradient,
|
|
5481
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5481
|
+
props = _objectWithoutProperties(_ref, _excluded$3F);
|
|
5482
5482
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5483
5483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5484
5484
|
width: 24,
|
|
@@ -5502,7 +5502,7 @@
|
|
|
5502
5502
|
EstimatesIcon.displayName = "EstimatesIcon";
|
|
5503
5503
|
var EstimatesIcon$1 = EstimatesIcon;
|
|
5504
5504
|
|
|
5505
|
-
var _excluded$
|
|
5505
|
+
var _excluded$3E = ["gradient"];
|
|
5506
5506
|
|
|
5507
5507
|
/**
|
|
5508
5508
|
* @component ExpandAllIcon
|
|
@@ -5532,7 +5532,7 @@
|
|
|
5532
5532
|
*/
|
|
5533
5533
|
var ExpandAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5534
5534
|
var gradient = _ref.gradient,
|
|
5535
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5535
|
+
props = _objectWithoutProperties(_ref, _excluded$3E);
|
|
5536
5536
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5537
5537
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5538
5538
|
width: 24,
|
|
@@ -5552,7 +5552,7 @@
|
|
|
5552
5552
|
ExpandAllIcon.displayName = "ExpandAllIcon";
|
|
5553
5553
|
var ExpandAllIcon$1 = ExpandAllIcon;
|
|
5554
5554
|
|
|
5555
|
-
var _excluded$
|
|
5555
|
+
var _excluded$3D = ["gradient"];
|
|
5556
5556
|
|
|
5557
5557
|
/**
|
|
5558
5558
|
* @component ExpenseAddIcon
|
|
@@ -5582,7 +5582,7 @@
|
|
|
5582
5582
|
*/
|
|
5583
5583
|
var ExpenseAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5584
5584
|
var gradient = _ref.gradient,
|
|
5585
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5585
|
+
props = _objectWithoutProperties(_ref, _excluded$3D);
|
|
5586
5586
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5587
5587
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5588
5588
|
width: 24,
|
|
@@ -5602,7 +5602,7 @@
|
|
|
5602
5602
|
ExpenseAddIcon.displayName = "ExpenseAddIcon";
|
|
5603
5603
|
var ExpenseAddIcon$1 = ExpenseAddIcon;
|
|
5604
5604
|
|
|
5605
|
-
var _excluded$
|
|
5605
|
+
var _excluded$3C = ["gradient"];
|
|
5606
5606
|
|
|
5607
5607
|
/**
|
|
5608
5608
|
* @component ExpensePlusIcon
|
|
@@ -5632,7 +5632,7 @@
|
|
|
5632
5632
|
*/
|
|
5633
5633
|
var ExpensePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5634
5634
|
var gradient = _ref.gradient,
|
|
5635
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5635
|
+
props = _objectWithoutProperties(_ref, _excluded$3C);
|
|
5636
5636
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5637
5637
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5638
5638
|
width: 24,
|
|
@@ -5654,7 +5654,7 @@
|
|
|
5654
5654
|
ExpensePlusIcon.displayName = "ExpensePlusIcon";
|
|
5655
5655
|
var ExpensePlusIcon$1 = ExpensePlusIcon;
|
|
5656
5656
|
|
|
5657
|
-
var _excluded$
|
|
5657
|
+
var _excluded$3B = ["gradient"];
|
|
5658
5658
|
|
|
5659
5659
|
/**
|
|
5660
5660
|
* @component EyeOffSmallIcon
|
|
@@ -5684,7 +5684,7 @@
|
|
|
5684
5684
|
*/
|
|
5685
5685
|
var EyeOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5686
5686
|
var gradient = _ref.gradient,
|
|
5687
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5687
|
+
props = _objectWithoutProperties(_ref, _excluded$3B);
|
|
5688
5688
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5689
5689
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5690
5690
|
width: 12,
|
|
@@ -5704,7 +5704,7 @@
|
|
|
5704
5704
|
EyeOffSmallIcon.displayName = "EyeOffSmallIcon";
|
|
5705
5705
|
var EyeOffSmallIcon$1 = EyeOffSmallIcon;
|
|
5706
5706
|
|
|
5707
|
-
var _excluded$
|
|
5707
|
+
var _excluded$3A = ["gradient"];
|
|
5708
5708
|
|
|
5709
5709
|
/**
|
|
5710
5710
|
* @component EyeOffIcon
|
|
@@ -5734,7 +5734,7 @@
|
|
|
5734
5734
|
*/
|
|
5735
5735
|
var EyeOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5736
5736
|
var gradient = _ref.gradient,
|
|
5737
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5737
|
+
props = _objectWithoutProperties(_ref, _excluded$3A);
|
|
5738
5738
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5739
5739
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5740
5740
|
width: 24,
|
|
@@ -5754,7 +5754,7 @@
|
|
|
5754
5754
|
EyeOffIcon.displayName = "EyeOffIcon";
|
|
5755
5755
|
var EyeOffIcon$1 = EyeOffIcon;
|
|
5756
5756
|
|
|
5757
|
-
var _excluded$
|
|
5757
|
+
var _excluded$3z = ["gradient"];
|
|
5758
5758
|
|
|
5759
5759
|
/**
|
|
5760
5760
|
* @component EyeSmallIcon
|
|
@@ -5784,7 +5784,7 @@
|
|
|
5784
5784
|
*/
|
|
5785
5785
|
var EyeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5786
5786
|
var gradient = _ref.gradient,
|
|
5787
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5787
|
+
props = _objectWithoutProperties(_ref, _excluded$3z);
|
|
5788
5788
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5789
5789
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5790
5790
|
width: 12,
|
|
@@ -5804,7 +5804,7 @@
|
|
|
5804
5804
|
EyeSmallIcon.displayName = "EyeSmallIcon";
|
|
5805
5805
|
var EyeSmallIcon$1 = EyeSmallIcon;
|
|
5806
5806
|
|
|
5807
|
-
var _excluded$
|
|
5807
|
+
var _excluded$3y = ["gradient"];
|
|
5808
5808
|
|
|
5809
5809
|
/**
|
|
5810
5810
|
* @component EyeIcon
|
|
@@ -5834,7 +5834,7 @@
|
|
|
5834
5834
|
*/
|
|
5835
5835
|
var EyeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5836
5836
|
var gradient = _ref.gradient,
|
|
5837
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5837
|
+
props = _objectWithoutProperties(_ref, _excluded$3y);
|
|
5838
5838
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5839
5839
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5840
5840
|
width: 24,
|
|
@@ -5854,7 +5854,7 @@
|
|
|
5854
5854
|
EyeIcon.displayName = "EyeIcon";
|
|
5855
5855
|
var EyeIcon$1 = EyeIcon;
|
|
5856
5856
|
|
|
5857
|
-
var _excluded$
|
|
5857
|
+
var _excluded$3x = ["gradient"];
|
|
5858
5858
|
|
|
5859
5859
|
/**
|
|
5860
5860
|
* @component FilterIcon
|
|
@@ -5884,7 +5884,7 @@
|
|
|
5884
5884
|
*/
|
|
5885
5885
|
var FilterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5886
5886
|
var gradient = _ref.gradient,
|
|
5887
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5887
|
+
props = _objectWithoutProperties(_ref, _excluded$3x);
|
|
5888
5888
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5889
5889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5890
5890
|
width: 24,
|
|
@@ -5904,7 +5904,7 @@
|
|
|
5904
5904
|
FilterIcon.displayName = "FilterIcon";
|
|
5905
5905
|
var FilterIcon$1 = FilterIcon;
|
|
5906
5906
|
|
|
5907
|
-
var _excluded$
|
|
5907
|
+
var _excluded$3w = ["gradient"];
|
|
5908
5908
|
|
|
5909
5909
|
/**
|
|
5910
5910
|
* @component FolderMoveIcon
|
|
@@ -5934,7 +5934,7 @@
|
|
|
5934
5934
|
*/
|
|
5935
5935
|
var FolderMoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5936
5936
|
var gradient = _ref.gradient,
|
|
5937
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5937
|
+
props = _objectWithoutProperties(_ref, _excluded$3w);
|
|
5938
5938
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5939
5939
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5940
5940
|
width: 24,
|
|
@@ -5954,7 +5954,7 @@
|
|
|
5954
5954
|
FolderMoveIcon.displayName = "FolderMoveIcon";
|
|
5955
5955
|
var FolderMoveIcon$1 = FolderMoveIcon;
|
|
5956
5956
|
|
|
5957
|
-
var _excluded$
|
|
5957
|
+
var _excluded$3v = ["gradient"];
|
|
5958
5958
|
|
|
5959
5959
|
/**
|
|
5960
5960
|
* @component FolderOutlineIcon
|
|
@@ -5984,7 +5984,7 @@
|
|
|
5984
5984
|
*/
|
|
5985
5985
|
var FolderOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5986
5986
|
var gradient = _ref.gradient,
|
|
5987
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5987
|
+
props = _objectWithoutProperties(_ref, _excluded$3v);
|
|
5988
5988
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5989
5989
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5990
5990
|
width: 24,
|
|
@@ -6004,7 +6004,7 @@
|
|
|
6004
6004
|
FolderOutlineIcon.displayName = "FolderOutlineIcon";
|
|
6005
6005
|
var FolderOutlineIcon$1 = FolderOutlineIcon;
|
|
6006
6006
|
|
|
6007
|
-
var _excluded$
|
|
6007
|
+
var _excluded$3u = ["gradient"];
|
|
6008
6008
|
|
|
6009
6009
|
/**
|
|
6010
6010
|
* @component GiftIcon
|
|
@@ -6034,7 +6034,7 @@
|
|
|
6034
6034
|
*/
|
|
6035
6035
|
var GiftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6036
6036
|
var gradient = _ref.gradient,
|
|
6037
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6037
|
+
props = _objectWithoutProperties(_ref, _excluded$3u);
|
|
6038
6038
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6039
6039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6040
6040
|
width: 24,
|
|
@@ -6055,7 +6055,7 @@
|
|
|
6055
6055
|
GiftIcon.displayName = "GiftIcon";
|
|
6056
6056
|
var GiftIcon$1 = GiftIcon;
|
|
6057
6057
|
|
|
6058
|
-
var _excluded$
|
|
6058
|
+
var _excluded$3t = ["gradient"];
|
|
6059
6059
|
|
|
6060
6060
|
/**
|
|
6061
6061
|
* @component GitBranchIcon
|
|
@@ -6068,7 +6068,7 @@
|
|
|
6068
6068
|
*/
|
|
6069
6069
|
var GitBranchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6070
6070
|
var gradient = _ref.gradient,
|
|
6071
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6071
|
+
props = _objectWithoutProperties(_ref, _excluded$3t);
|
|
6072
6072
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6073
6073
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6074
6074
|
width: 24,
|
|
@@ -6099,7 +6099,7 @@
|
|
|
6099
6099
|
GitBranchIcon.displayName = "GitBranchIcon";
|
|
6100
6100
|
var GitBranchIcon$1 = GitBranchIcon;
|
|
6101
6101
|
|
|
6102
|
-
var _excluded$
|
|
6102
|
+
var _excluded$3s = ["gradient"];
|
|
6103
6103
|
|
|
6104
6104
|
/**
|
|
6105
6105
|
* @component GitCommitIcon
|
|
@@ -6112,7 +6112,7 @@
|
|
|
6112
6112
|
*/
|
|
6113
6113
|
var GitCommitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6114
6114
|
var gradient = _ref.gradient,
|
|
6115
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6115
|
+
props = _objectWithoutProperties(_ref, _excluded$3s);
|
|
6116
6116
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6117
6117
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6118
6118
|
width: 24,
|
|
@@ -6139,7 +6139,7 @@
|
|
|
6139
6139
|
GitCommitIcon.displayName = "GitCommitIcon";
|
|
6140
6140
|
var GitCommitIcon$1 = GitCommitIcon;
|
|
6141
6141
|
|
|
6142
|
-
var _excluded$
|
|
6142
|
+
var _excluded$3r = ["gradient"];
|
|
6143
6143
|
|
|
6144
6144
|
/**
|
|
6145
6145
|
* @component GitPullRequestIcon
|
|
@@ -6152,7 +6152,7 @@
|
|
|
6152
6152
|
*/
|
|
6153
6153
|
var GitPullRequestIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6154
6154
|
var gradient = _ref.gradient,
|
|
6155
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6155
|
+
props = _objectWithoutProperties(_ref, _excluded$3r);
|
|
6156
6156
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6157
6157
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6158
6158
|
width: 24,
|
|
@@ -6185,7 +6185,127 @@
|
|
|
6185
6185
|
GitPullRequestIcon.displayName = "GitPullRequestIcon";
|
|
6186
6186
|
var GitPullRequestIcon$1 = GitPullRequestIcon;
|
|
6187
6187
|
|
|
6188
|
+
var _excluded$3q = ["gradient"];
|
|
6189
|
+
|
|
6190
|
+
/**
|
|
6191
|
+
* @component GitRepositoryIcon
|
|
6192
|
+
* @description
|
|
6193
|
+
* Outline repository glyph (a stacked database cylinder) used as a
|
|
6194
|
+
* source-control / repository signifier.
|
|
6195
|
+
*
|
|
6196
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
|
|
6197
|
+
*
|
|
6198
|
+
* @see https://design.activecollab.com/docs/foundations/icons
|
|
6199
|
+
*/
|
|
6200
|
+
var GitRepositoryIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6201
|
+
var gradient = _ref.gradient,
|
|
6202
|
+
props = _objectWithoutProperties(_ref, _excluded$3q);
|
|
6203
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6204
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6205
|
+
width: 24,
|
|
6206
|
+
height: 24,
|
|
6207
|
+
viewBox: "0 0 24 24",
|
|
6208
|
+
"data-testid": "GitRepositoryIcon",
|
|
6209
|
+
fill: "none",
|
|
6210
|
+
stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
|
|
6211
|
+
strokeWidth: 2,
|
|
6212
|
+
strokeLinecap: "round",
|
|
6213
|
+
strokeLinejoin: "round",
|
|
6214
|
+
focusable: false,
|
|
6215
|
+
ref: ref
|
|
6216
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
6217
|
+
gradient: gradient
|
|
6218
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6219
|
+
d: "M12 4m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"
|
|
6220
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6221
|
+
d: "M4 4v5a8 2 0 0 0 16 0v-5"
|
|
6222
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6223
|
+
d: "M4 9v5a8 2 0 0 0 16 0v-5"
|
|
6224
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6225
|
+
d: "M4 14v5a8 2 0 0 0 16 0v-5"
|
|
6226
|
+
}));
|
|
6227
|
+
});
|
|
6228
|
+
GitRepositoryIcon.displayName = "GitRepositoryIcon";
|
|
6229
|
+
var GitRepositoryIcon$1 = GitRepositoryIcon;
|
|
6230
|
+
|
|
6188
6231
|
var _excluded$3p = ["gradient"];
|
|
6232
|
+
var maskUid = 0;
|
|
6233
|
+
|
|
6234
|
+
/**
|
|
6235
|
+
* @component GitRepositoryConnectIcon
|
|
6236
|
+
* @description
|
|
6237
|
+
* Outline repository glyph (a stacked database cylinder) with a cutout in the
|
|
6238
|
+
* upper-right corner holding a small plug badge — used to signify connecting /
|
|
6239
|
+
* linking a repository.
|
|
6240
|
+
*
|
|
6241
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
|
|
6242
|
+
*
|
|
6243
|
+
* @see https://design.activecollab.com/docs/foundations/icons
|
|
6244
|
+
*/
|
|
6245
|
+
var GitRepositoryConnectIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6246
|
+
var gradient = _ref.gradient,
|
|
6247
|
+
props = _objectWithoutProperties(_ref, _excluded$3p);
|
|
6248
|
+
var _useState = React.useState(function () {
|
|
6249
|
+
return "git-repository-connect-cut-".concat(++maskUid);
|
|
6250
|
+
}),
|
|
6251
|
+
_useState2 = _slicedToArray(_useState, 1),
|
|
6252
|
+
maskId = _useState2[0];
|
|
6253
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6254
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6255
|
+
width: 24,
|
|
6256
|
+
height: 24,
|
|
6257
|
+
viewBox: "0 0 24 24",
|
|
6258
|
+
"data-testid": "GitRepositoryConnectIcon",
|
|
6259
|
+
fill: "none",
|
|
6260
|
+
stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
|
|
6261
|
+
strokeWidth: 2,
|
|
6262
|
+
strokeLinecap: "round",
|
|
6263
|
+
strokeLinejoin: "round",
|
|
6264
|
+
focusable: false,
|
|
6265
|
+
ref: ref
|
|
6266
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
6267
|
+
gradient: gradient
|
|
6268
|
+
}), /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("mask", {
|
|
6269
|
+
id: maskId
|
|
6270
|
+
}, /*#__PURE__*/React__default["default"].createElement("rect", {
|
|
6271
|
+
x: 0,
|
|
6272
|
+
y: 0,
|
|
6273
|
+
width: 24,
|
|
6274
|
+
height: 24,
|
|
6275
|
+
fill: "#fff",
|
|
6276
|
+
stroke: "none"
|
|
6277
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
6278
|
+
cx: 18.8,
|
|
6279
|
+
cy: 4.6,
|
|
6280
|
+
r: 5.5,
|
|
6281
|
+
fill: "#000",
|
|
6282
|
+
stroke: "none"
|
|
6283
|
+
}))), /*#__PURE__*/React__default["default"].createElement("g", {
|
|
6284
|
+
mask: "url(#".concat(maskId, ")")
|
|
6285
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6286
|
+
d: "M12 4m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"
|
|
6287
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6288
|
+
d: "M4 4v5a8 2 0 0 0 16 0v-5"
|
|
6289
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6290
|
+
d: "M4 9v5a8 2 0 0 0 16 0v-5"
|
|
6291
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6292
|
+
d: "M4 14v5a8 2 0 0 0 16 0v-5"
|
|
6293
|
+
})), /*#__PURE__*/React__default["default"].createElement("g", {
|
|
6294
|
+
transform: "rotate(45 18.8 4.6)"
|
|
6295
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6296
|
+
d: "M17.6 1.9v1.4"
|
|
6297
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6298
|
+
d: "M20 1.9v1.4"
|
|
6299
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6300
|
+
d: "M16.7 3.3h4.2v1.5a2.1 2.1 0 0 1 -2.1 2.1a2.1 2.1 0 0 1 -2.1 -2.1z"
|
|
6301
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6302
|
+
d: "M18.8 6.9v1.6"
|
|
6303
|
+
})));
|
|
6304
|
+
});
|
|
6305
|
+
GitRepositoryConnectIcon.displayName = "GitRepositoryConnectIcon";
|
|
6306
|
+
var GitRepositoryConnectIcon$1 = GitRepositoryConnectIcon;
|
|
6307
|
+
|
|
6308
|
+
var _excluded$3o = ["gradient"];
|
|
6189
6309
|
|
|
6190
6310
|
/**
|
|
6191
6311
|
* @component GroupByIcon
|
|
@@ -6215,7 +6335,7 @@
|
|
|
6215
6335
|
*/
|
|
6216
6336
|
var GroupByIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6217
6337
|
var gradient = _ref.gradient,
|
|
6218
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6338
|
+
props = _objectWithoutProperties(_ref, _excluded$3o);
|
|
6219
6339
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6220
6340
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6221
6341
|
width: 24,
|
|
@@ -6234,7 +6354,7 @@
|
|
|
6234
6354
|
GroupByIcon.displayName = "GroupByIcon";
|
|
6235
6355
|
var GroupByIcon$1 = GroupByIcon;
|
|
6236
6356
|
|
|
6237
|
-
var _excluded$
|
|
6357
|
+
var _excluded$3n = ["gradient"];
|
|
6238
6358
|
|
|
6239
6359
|
/**
|
|
6240
6360
|
* @component HashtagIcon
|
|
@@ -6264,7 +6384,7 @@
|
|
|
6264
6384
|
*/
|
|
6265
6385
|
var HashtagIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6266
6386
|
var gradient = _ref.gradient,
|
|
6267
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6387
|
+
props = _objectWithoutProperties(_ref, _excluded$3n);
|
|
6268
6388
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6269
6389
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6270
6390
|
width: 24,
|
|
@@ -6285,7 +6405,7 @@
|
|
|
6285
6405
|
HashtagIcon.displayName = "HashtagIcon";
|
|
6286
6406
|
var HashtagIcon$1 = HashtagIcon;
|
|
6287
6407
|
|
|
6288
|
-
var _excluded$
|
|
6408
|
+
var _excluded$3m = ["gradient"];
|
|
6289
6409
|
|
|
6290
6410
|
/**
|
|
6291
6411
|
* @component HelpIcon
|
|
@@ -6315,7 +6435,7 @@
|
|
|
6315
6435
|
*/
|
|
6316
6436
|
var HelpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6317
6437
|
var gradient = _ref.gradient,
|
|
6318
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6438
|
+
props = _objectWithoutProperties(_ref, _excluded$3m);
|
|
6319
6439
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6320
6440
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6321
6441
|
width: 24,
|
|
@@ -6335,7 +6455,7 @@
|
|
|
6335
6455
|
HelpIcon.displayName = "HelpIcon";
|
|
6336
6456
|
var HelpIcon$1 = HelpIcon;
|
|
6337
6457
|
|
|
6338
|
-
var _excluded$
|
|
6458
|
+
var _excluded$3l = ["gradient"];
|
|
6339
6459
|
|
|
6340
6460
|
/**
|
|
6341
6461
|
* @component HistoryOfChangesIcon
|
|
@@ -6365,7 +6485,7 @@
|
|
|
6365
6485
|
*/
|
|
6366
6486
|
var HistoryOfChangesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6367
6487
|
var gradient = _ref.gradient,
|
|
6368
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6488
|
+
props = _objectWithoutProperties(_ref, _excluded$3l);
|
|
6369
6489
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6370
6490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6371
6491
|
width: 24,
|
|
@@ -6386,7 +6506,7 @@
|
|
|
6386
6506
|
HistoryOfChangesIcon.displayName = "HistoryOfChangesIcon";
|
|
6387
6507
|
var HistoryOfChangesIcon$1 = HistoryOfChangesIcon;
|
|
6388
6508
|
|
|
6389
|
-
var _excluded$
|
|
6509
|
+
var _excluded$3k = ["gradient"];
|
|
6390
6510
|
|
|
6391
6511
|
/**
|
|
6392
6512
|
* @component ImageIcon
|
|
@@ -6416,7 +6536,7 @@
|
|
|
6416
6536
|
*/
|
|
6417
6537
|
var ImageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6418
6538
|
var gradient = _ref.gradient,
|
|
6419
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6539
|
+
props = _objectWithoutProperties(_ref, _excluded$3k);
|
|
6420
6540
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6421
6541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6422
6542
|
width: 24,
|
|
@@ -6437,7 +6557,7 @@
|
|
|
6437
6557
|
ImageIcon.displayName = "ImageIcon";
|
|
6438
6558
|
var ImageIcon$1 = ImageIcon;
|
|
6439
6559
|
|
|
6440
|
-
var _excluded$
|
|
6560
|
+
var _excluded$3j = ["gradient"];
|
|
6441
6561
|
|
|
6442
6562
|
/**
|
|
6443
6563
|
* @component InfoSmallIcon
|
|
@@ -6467,7 +6587,7 @@
|
|
|
6467
6587
|
*/
|
|
6468
6588
|
var InfoSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6469
6589
|
var gradient = _ref.gradient,
|
|
6470
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6590
|
+
props = _objectWithoutProperties(_ref, _excluded$3j);
|
|
6471
6591
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6472
6592
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6473
6593
|
width: 15,
|
|
@@ -6487,7 +6607,7 @@
|
|
|
6487
6607
|
InfoSmallIcon.displayName = "InfoSmallIcon";
|
|
6488
6608
|
var InfoSmallIcon$1 = InfoSmallIcon;
|
|
6489
6609
|
|
|
6490
|
-
var _excluded$
|
|
6610
|
+
var _excluded$3i = ["gradient"];
|
|
6491
6611
|
|
|
6492
6612
|
/**
|
|
6493
6613
|
* @component InfoIcon
|
|
@@ -6517,7 +6637,7 @@
|
|
|
6517
6637
|
*/
|
|
6518
6638
|
var InfoIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6519
6639
|
var gradient = _ref.gradient,
|
|
6520
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6640
|
+
props = _objectWithoutProperties(_ref, _excluded$3i);
|
|
6521
6641
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6522
6642
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6523
6643
|
width: 24,
|
|
@@ -6537,7 +6657,7 @@
|
|
|
6537
6657
|
InfoIcon.displayName = "InfoIcon";
|
|
6538
6658
|
var InfoIcon$1 = InfoIcon;
|
|
6539
6659
|
|
|
6540
|
-
var _excluded$
|
|
6660
|
+
var _excluded$3h = ["gradient"];
|
|
6541
6661
|
|
|
6542
6662
|
/**
|
|
6543
6663
|
* @component InsertLinkIcon
|
|
@@ -6567,7 +6687,7 @@
|
|
|
6567
6687
|
*/
|
|
6568
6688
|
var InsertLinkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6569
6689
|
var gradient = _ref.gradient,
|
|
6570
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6690
|
+
props = _objectWithoutProperties(_ref, _excluded$3h);
|
|
6571
6691
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6572
6692
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6573
6693
|
width: 24,
|
|
@@ -6587,7 +6707,7 @@
|
|
|
6587
6707
|
InsertLinkIcon.displayName = "InsertLinkIcon";
|
|
6588
6708
|
var InsertLinkIcon$1 = InsertLinkIcon;
|
|
6589
6709
|
|
|
6590
|
-
var _excluded$
|
|
6710
|
+
var _excluded$3g = ["gradient"];
|
|
6591
6711
|
|
|
6592
6712
|
/**
|
|
6593
6713
|
* @component IntegrationsIcon
|
|
@@ -6617,7 +6737,7 @@
|
|
|
6617
6737
|
*/
|
|
6618
6738
|
var IntegrationsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6619
6739
|
var gradient = _ref.gradient,
|
|
6620
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6740
|
+
props = _objectWithoutProperties(_ref, _excluded$3g);
|
|
6621
6741
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6622
6742
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6623
6743
|
width: 24,
|
|
@@ -6641,7 +6761,7 @@
|
|
|
6641
6761
|
IntegrationsIcon.displayName = "IntegrationsIcon";
|
|
6642
6762
|
var IntegrationsIcon$1 = IntegrationsIcon;
|
|
6643
6763
|
|
|
6644
|
-
var _excluded$
|
|
6764
|
+
var _excluded$3f = ["gradient"];
|
|
6645
6765
|
|
|
6646
6766
|
/**
|
|
6647
6767
|
* @component InvoicesIcon
|
|
@@ -6671,7 +6791,7 @@
|
|
|
6671
6791
|
*/
|
|
6672
6792
|
var InvoicesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6673
6793
|
var gradient = _ref.gradient,
|
|
6674
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6794
|
+
props = _objectWithoutProperties(_ref, _excluded$3f);
|
|
6675
6795
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6676
6796
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6677
6797
|
width: 24,
|
|
@@ -6695,7 +6815,7 @@
|
|
|
6695
6815
|
InvoicesIcon.displayName = "InvoicesIcon";
|
|
6696
6816
|
var InvoicesIcon$1 = InvoicesIcon;
|
|
6697
6817
|
|
|
6698
|
-
var _excluded$
|
|
6818
|
+
var _excluded$3e = ["gradient"];
|
|
6699
6819
|
|
|
6700
6820
|
/**
|
|
6701
6821
|
* @component LabelsIcon
|
|
@@ -6725,7 +6845,7 @@
|
|
|
6725
6845
|
*/
|
|
6726
6846
|
var LabelsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6727
6847
|
var gradient = _ref.gradient,
|
|
6728
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6848
|
+
props = _objectWithoutProperties(_ref, _excluded$3e);
|
|
6729
6849
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6730
6850
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6731
6851
|
width: 24,
|
|
@@ -6745,7 +6865,7 @@
|
|
|
6745
6865
|
LabelsIcon.displayName = "LabelsIcon";
|
|
6746
6866
|
var LabelsIcon$1 = LabelsIcon;
|
|
6747
6867
|
|
|
6748
|
-
var _excluded$
|
|
6868
|
+
var _excluded$3d = ["gradient"];
|
|
6749
6869
|
|
|
6750
6870
|
/**
|
|
6751
6871
|
* @component LetterArrowRightIcon
|
|
@@ -6775,7 +6895,7 @@
|
|
|
6775
6895
|
*/
|
|
6776
6896
|
var LetterArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6777
6897
|
var gradient = _ref.gradient,
|
|
6778
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6898
|
+
props = _objectWithoutProperties(_ref, _excluded$3d);
|
|
6779
6899
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6780
6900
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6781
6901
|
width: 24,
|
|
@@ -6796,7 +6916,7 @@
|
|
|
6796
6916
|
LetterArrowRightIcon.displayName = "LetterArrowRightIcon";
|
|
6797
6917
|
var LetterArrowRightIcon$1 = LetterArrowRightIcon;
|
|
6798
6918
|
|
|
6799
|
-
var _excluded$
|
|
6919
|
+
var _excluded$3c = ["gradient"];
|
|
6800
6920
|
|
|
6801
6921
|
/**
|
|
6802
6922
|
* @component LetterFastIcon
|
|
@@ -6826,7 +6946,7 @@
|
|
|
6826
6946
|
*/
|
|
6827
6947
|
var LetterFastIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6828
6948
|
var gradient = _ref.gradient,
|
|
6829
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6949
|
+
props = _objectWithoutProperties(_ref, _excluded$3c);
|
|
6830
6950
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6831
6951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6832
6952
|
width: 24,
|
|
@@ -6846,7 +6966,7 @@
|
|
|
6846
6966
|
LetterFastIcon.displayName = "LetterFastIcon";
|
|
6847
6967
|
var LetterFastIcon$1 = LetterFastIcon;
|
|
6848
6968
|
|
|
6849
|
-
var _excluded$
|
|
6969
|
+
var _excluded$3b = ["gradient"];
|
|
6850
6970
|
|
|
6851
6971
|
/**
|
|
6852
6972
|
* @component LetterIcon
|
|
@@ -6876,7 +6996,7 @@
|
|
|
6876
6996
|
*/
|
|
6877
6997
|
var LetterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6878
6998
|
var gradient = _ref.gradient,
|
|
6879
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6999
|
+
props = _objectWithoutProperties(_ref, _excluded$3b);
|
|
6880
7000
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6881
7001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6882
7002
|
width: 24,
|
|
@@ -6897,7 +7017,7 @@
|
|
|
6897
7017
|
LetterIcon.displayName = "LetterIcon";
|
|
6898
7018
|
var LetterIcon$1 = LetterIcon;
|
|
6899
7019
|
|
|
6900
|
-
var _excluded$
|
|
7020
|
+
var _excluded$3a = ["gradient"];
|
|
6901
7021
|
|
|
6902
7022
|
/**
|
|
6903
7023
|
* @component LockSmallIcon
|
|
@@ -6927,7 +7047,7 @@
|
|
|
6927
7047
|
*/
|
|
6928
7048
|
var LockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6929
7049
|
var gradient = _ref.gradient,
|
|
6930
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7050
|
+
props = _objectWithoutProperties(_ref, _excluded$3a);
|
|
6931
7051
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6932
7052
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6933
7053
|
width: 12,
|
|
@@ -6947,7 +7067,7 @@
|
|
|
6947
7067
|
LockSmallIcon.displayName = "LockSmallIcon";
|
|
6948
7068
|
var LockSmallIcon$1 = LockSmallIcon;
|
|
6949
7069
|
|
|
6950
|
-
var _excluded$
|
|
7070
|
+
var _excluded$39 = ["gradient"];
|
|
6951
7071
|
|
|
6952
7072
|
/**
|
|
6953
7073
|
* @component LockIcon
|
|
@@ -6977,7 +7097,7 @@
|
|
|
6977
7097
|
*/
|
|
6978
7098
|
var LockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6979
7099
|
var gradient = _ref.gradient,
|
|
6980
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7100
|
+
props = _objectWithoutProperties(_ref, _excluded$39);
|
|
6981
7101
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6982
7102
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6983
7103
|
width: 24,
|
|
@@ -6997,7 +7117,7 @@
|
|
|
6997
7117
|
LockIcon.displayName = "LockIcon";
|
|
6998
7118
|
var LockIcon$1 = LockIcon;
|
|
6999
7119
|
|
|
7000
|
-
var _excluded$
|
|
7120
|
+
var _excluded$38 = ["gradient"];
|
|
7001
7121
|
|
|
7002
7122
|
/**
|
|
7003
7123
|
* @component MarkerIcon
|
|
@@ -7027,7 +7147,7 @@
|
|
|
7027
7147
|
*/
|
|
7028
7148
|
var MarkerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7029
7149
|
var gradient = _ref.gradient,
|
|
7030
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7150
|
+
props = _objectWithoutProperties(_ref, _excluded$38);
|
|
7031
7151
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7032
7152
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7033
7153
|
width: 24,
|
|
@@ -7047,7 +7167,7 @@
|
|
|
7047
7167
|
MarkerIcon.displayName = "MarkerIcon";
|
|
7048
7168
|
var MarkerIcon$1 = MarkerIcon;
|
|
7049
7169
|
|
|
7050
|
-
var _excluded$
|
|
7170
|
+
var _excluded$37 = ["gradient"];
|
|
7051
7171
|
|
|
7052
7172
|
/**
|
|
7053
7173
|
* @component MessageAddIcon
|
|
@@ -7077,7 +7197,7 @@
|
|
|
7077
7197
|
*/
|
|
7078
7198
|
var MessageAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7079
7199
|
var gradient = _ref.gradient,
|
|
7080
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7200
|
+
props = _objectWithoutProperties(_ref, _excluded$37);
|
|
7081
7201
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7082
7202
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7083
7203
|
width: 24,
|
|
@@ -7096,7 +7216,7 @@
|
|
|
7096
7216
|
MessageAddIcon.displayName = "MessageAddIcon";
|
|
7097
7217
|
var MessageAddIcon$1 = MessageAddIcon;
|
|
7098
7218
|
|
|
7099
|
-
var _excluded$
|
|
7219
|
+
var _excluded$36 = ["gradient"];
|
|
7100
7220
|
|
|
7101
7221
|
/**
|
|
7102
7222
|
* @component MessageEmptyIcon
|
|
@@ -7126,7 +7246,7 @@
|
|
|
7126
7246
|
*/
|
|
7127
7247
|
var MessageEmptyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7128
7248
|
var gradient = _ref.gradient,
|
|
7129
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7249
|
+
props = _objectWithoutProperties(_ref, _excluded$36);
|
|
7130
7250
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7131
7251
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7132
7252
|
width: 24,
|
|
@@ -7146,7 +7266,7 @@
|
|
|
7146
7266
|
MessageEmptyIcon.displayName = "MessageEmptyIcon";
|
|
7147
7267
|
var MessageEmptyIcon$1 = MessageEmptyIcon;
|
|
7148
7268
|
|
|
7149
|
-
var _excluded$
|
|
7269
|
+
var _excluded$35 = ["gradient"];
|
|
7150
7270
|
|
|
7151
7271
|
/**
|
|
7152
7272
|
* @component MessageSmallIcon
|
|
@@ -7176,7 +7296,7 @@
|
|
|
7176
7296
|
*/
|
|
7177
7297
|
var MessageSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7178
7298
|
var gradient = _ref.gradient,
|
|
7179
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7299
|
+
props = _objectWithoutProperties(_ref, _excluded$35);
|
|
7180
7300
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7181
7301
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7182
7302
|
width: 12,
|
|
@@ -7196,7 +7316,7 @@
|
|
|
7196
7316
|
MessageSmallIcon.displayName = "MessageSmallIcon";
|
|
7197
7317
|
var MessageSmallIcon$1 = MessageSmallIcon;
|
|
7198
7318
|
|
|
7199
|
-
var _excluded$
|
|
7319
|
+
var _excluded$34 = ["gradient"];
|
|
7200
7320
|
|
|
7201
7321
|
/**
|
|
7202
7322
|
* @component MessageSolidIcon
|
|
@@ -7226,7 +7346,7 @@
|
|
|
7226
7346
|
*/
|
|
7227
7347
|
var MessageSolidIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7228
7348
|
var gradient = _ref.gradient,
|
|
7229
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7349
|
+
props = _objectWithoutProperties(_ref, _excluded$34);
|
|
7230
7350
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7231
7351
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7232
7352
|
width: 24,
|
|
@@ -7246,7 +7366,7 @@
|
|
|
7246
7366
|
MessageSolidIcon.displayName = "MessageSolidIcon";
|
|
7247
7367
|
var MessageSolidIcon$1 = MessageSolidIcon;
|
|
7248
7368
|
|
|
7249
|
-
var _excluded$
|
|
7369
|
+
var _excluded$33 = ["gradient"];
|
|
7250
7370
|
|
|
7251
7371
|
/**
|
|
7252
7372
|
* @component MessageStarIcon
|
|
@@ -7276,7 +7396,7 @@
|
|
|
7276
7396
|
*/
|
|
7277
7397
|
var MessageStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7278
7398
|
var gradient = _ref.gradient,
|
|
7279
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7399
|
+
props = _objectWithoutProperties(_ref, _excluded$33);
|
|
7280
7400
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7281
7401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7282
7402
|
width: 24,
|
|
@@ -7299,7 +7419,7 @@
|
|
|
7299
7419
|
MessageStarIcon.displayName = "MessageStarIcon";
|
|
7300
7420
|
var MessageStarIcon$1 = MessageStarIcon;
|
|
7301
7421
|
|
|
7302
|
-
var _excluded$
|
|
7422
|
+
var _excluded$32 = ["gradient"];
|
|
7303
7423
|
|
|
7304
7424
|
/**
|
|
7305
7425
|
* @component MessageIcon
|
|
@@ -7329,7 +7449,7 @@
|
|
|
7329
7449
|
*/
|
|
7330
7450
|
var MessageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7331
7451
|
var gradient = _ref.gradient,
|
|
7332
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7452
|
+
props = _objectWithoutProperties(_ref, _excluded$32);
|
|
7333
7453
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7334
7454
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7335
7455
|
width: 24,
|
|
@@ -7349,7 +7469,7 @@
|
|
|
7349
7469
|
MessageIcon.displayName = "MessageIcon";
|
|
7350
7470
|
var MessageIcon$1 = MessageIcon;
|
|
7351
7471
|
|
|
7352
|
-
var _excluded$
|
|
7472
|
+
var _excluded$31 = ["gradient"];
|
|
7353
7473
|
|
|
7354
7474
|
/**
|
|
7355
7475
|
* @component MinusIcon
|
|
@@ -7379,7 +7499,7 @@
|
|
|
7379
7499
|
*/
|
|
7380
7500
|
var MinusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7381
7501
|
var gradient = _ref.gradient,
|
|
7382
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7502
|
+
props = _objectWithoutProperties(_ref, _excluded$31);
|
|
7383
7503
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7384
7504
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7385
7505
|
width: 24,
|
|
@@ -7403,7 +7523,7 @@
|
|
|
7403
7523
|
MinusIcon.displayName = "MinusIcon";
|
|
7404
7524
|
var MinusIcon$1 = MinusIcon;
|
|
7405
7525
|
|
|
7406
|
-
var _excluded$
|
|
7526
|
+
var _excluded$30 = ["gradient"];
|
|
7407
7527
|
|
|
7408
7528
|
/**
|
|
7409
7529
|
* @component MobileMenuIcon
|
|
@@ -7433,7 +7553,7 @@
|
|
|
7433
7553
|
*/
|
|
7434
7554
|
var MobileMenuIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7435
7555
|
var gradient = _ref.gradient,
|
|
7436
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7556
|
+
props = _objectWithoutProperties(_ref, _excluded$30);
|
|
7437
7557
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7438
7558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7439
7559
|
width: 24,
|
|
@@ -7454,7 +7574,7 @@
|
|
|
7454
7574
|
MobileMenuIcon.displayName = "MobileMenuIcon";
|
|
7455
7575
|
var MobileMenuIcon$1 = MobileMenuIcon;
|
|
7456
7576
|
|
|
7457
|
-
var _excluded$
|
|
7577
|
+
var _excluded$2$ = ["gradient"];
|
|
7458
7578
|
|
|
7459
7579
|
/**
|
|
7460
7580
|
* @component MoneyStackIcon
|
|
@@ -7484,7 +7604,7 @@
|
|
|
7484
7604
|
*/
|
|
7485
7605
|
var MoneyStackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7486
7606
|
var gradient = _ref.gradient,
|
|
7487
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7607
|
+
props = _objectWithoutProperties(_ref, _excluded$2$);
|
|
7488
7608
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7489
7609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7490
7610
|
width: 24,
|
|
@@ -7511,7 +7631,7 @@
|
|
|
7511
7631
|
MoneyStackIcon.displayName = "MoneyStackIcon";
|
|
7512
7632
|
var MoneyStackIcon$1 = MoneyStackIcon;
|
|
7513
7633
|
|
|
7514
|
-
var _excluded$
|
|
7634
|
+
var _excluded$2_ = ["gradient"];
|
|
7515
7635
|
|
|
7516
7636
|
/**
|
|
7517
7637
|
* @component MoonIcon
|
|
@@ -7541,7 +7661,7 @@
|
|
|
7541
7661
|
*/
|
|
7542
7662
|
var MoonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7543
7663
|
var gradient = _ref.gradient,
|
|
7544
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7664
|
+
props = _objectWithoutProperties(_ref, _excluded$2_);
|
|
7545
7665
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7546
7666
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7547
7667
|
width: 20,
|
|
@@ -7562,7 +7682,7 @@
|
|
|
7562
7682
|
MoonIcon.displayName = "MoonIcon";
|
|
7563
7683
|
var MoonIcon$1 = MoonIcon;
|
|
7564
7684
|
|
|
7565
|
-
var _excluded$
|
|
7685
|
+
var _excluded$2Z = ["gradient"];
|
|
7566
7686
|
|
|
7567
7687
|
/**
|
|
7568
7688
|
* @component MoveTriggerIcon
|
|
@@ -7592,7 +7712,7 @@
|
|
|
7592
7712
|
*/
|
|
7593
7713
|
var MoveTriggerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7594
7714
|
var gradient = _ref.gradient,
|
|
7595
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7715
|
+
props = _objectWithoutProperties(_ref, _excluded$2Z);
|
|
7596
7716
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7597
7717
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7598
7718
|
width: 10,
|
|
@@ -7612,7 +7732,7 @@
|
|
|
7612
7732
|
MoveTriggerIcon.displayName = "MoveTriggerIcon";
|
|
7613
7733
|
var MoveTriggerIcon$1 = MoveTriggerIcon;
|
|
7614
7734
|
|
|
7615
|
-
var _excluded$
|
|
7735
|
+
var _excluded$2Y = ["gradient"];
|
|
7616
7736
|
|
|
7617
7737
|
/**
|
|
7618
7738
|
* @component MoveIcon
|
|
@@ -7642,7 +7762,7 @@
|
|
|
7642
7762
|
*/
|
|
7643
7763
|
var MoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7644
7764
|
var gradient = _ref.gradient,
|
|
7645
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7765
|
+
props = _objectWithoutProperties(_ref, _excluded$2Y);
|
|
7646
7766
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7647
7767
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7648
7768
|
width: 24,
|
|
@@ -7663,7 +7783,7 @@
|
|
|
7663
7783
|
MoveIcon.displayName = "MoveIcon";
|
|
7664
7784
|
var MoveIcon$1 = MoveIcon;
|
|
7665
7785
|
|
|
7666
|
-
var _excluded$
|
|
7786
|
+
var _excluded$2X = ["gradient"];
|
|
7667
7787
|
|
|
7668
7788
|
/**
|
|
7669
7789
|
* @component MyWorkIcon
|
|
@@ -7693,7 +7813,7 @@
|
|
|
7693
7813
|
*/
|
|
7694
7814
|
var MyWorkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7695
7815
|
var gradient = _ref.gradient,
|
|
7696
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7816
|
+
props = _objectWithoutProperties(_ref, _excluded$2X);
|
|
7697
7817
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7698
7818
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7699
7819
|
width: 24,
|
|
@@ -7717,7 +7837,7 @@
|
|
|
7717
7837
|
MyWorkIcon.displayName = "MyWorkIcon";
|
|
7718
7838
|
var MyWorkIcon$1 = MyWorkIcon;
|
|
7719
7839
|
|
|
7720
|
-
var _excluded$
|
|
7840
|
+
var _excluded$2W = ["gradient"];
|
|
7721
7841
|
|
|
7722
7842
|
/**
|
|
7723
7843
|
* @component NoteAddIcon
|
|
@@ -7747,7 +7867,7 @@
|
|
|
7747
7867
|
*/
|
|
7748
7868
|
var NoteAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7749
7869
|
var gradient = _ref.gradient,
|
|
7750
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7870
|
+
props = _objectWithoutProperties(_ref, _excluded$2W);
|
|
7751
7871
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7752
7872
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7753
7873
|
width: 24,
|
|
@@ -7767,7 +7887,7 @@
|
|
|
7767
7887
|
NoteAddIcon.displayName = "NoteAddIcon";
|
|
7768
7888
|
var NoteAddIcon$1 = NoteAddIcon;
|
|
7769
7889
|
|
|
7770
|
-
var _excluded$
|
|
7890
|
+
var _excluded$2V = ["gradient"];
|
|
7771
7891
|
|
|
7772
7892
|
/**
|
|
7773
7893
|
* @component NoteIcon
|
|
@@ -7797,7 +7917,7 @@
|
|
|
7797
7917
|
*/
|
|
7798
7918
|
var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7799
7919
|
var gradient = _ref.gradient,
|
|
7800
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7920
|
+
props = _objectWithoutProperties(_ref, _excluded$2V);
|
|
7801
7921
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7802
7922
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7803
7923
|
width: 24,
|
|
@@ -7817,7 +7937,7 @@
|
|
|
7817
7937
|
NoteIcon.displayName = "NoteIcon";
|
|
7818
7938
|
var NoteIcon$1 = NoteIcon;
|
|
7819
7939
|
|
|
7820
|
-
var _excluded$
|
|
7940
|
+
var _excluded$2U = ["gradient"];
|
|
7821
7941
|
|
|
7822
7942
|
/**
|
|
7823
7943
|
* @component NotebookIcon
|
|
@@ -7847,7 +7967,7 @@
|
|
|
7847
7967
|
*/
|
|
7848
7968
|
var NotebookIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7849
7969
|
var gradient = _ref.gradient,
|
|
7850
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7970
|
+
props = _objectWithoutProperties(_ref, _excluded$2U);
|
|
7851
7971
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7852
7972
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7853
7973
|
width: 24,
|
|
@@ -7867,7 +7987,7 @@
|
|
|
7867
7987
|
NotebookIcon.displayName = "NotebookIcon";
|
|
7868
7988
|
var NotebookIcon$1 = NotebookIcon;
|
|
7869
7989
|
|
|
7870
|
-
var _excluded$
|
|
7990
|
+
var _excluded$2T = ["gradient"];
|
|
7871
7991
|
|
|
7872
7992
|
/**
|
|
7873
7993
|
* @component NotificationBellIcon
|
|
@@ -7897,7 +8017,7 @@
|
|
|
7897
8017
|
*/
|
|
7898
8018
|
var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7899
8019
|
var gradient = _ref.gradient,
|
|
7900
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8020
|
+
props = _objectWithoutProperties(_ref, _excluded$2T);
|
|
7901
8021
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7902
8022
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7903
8023
|
width: 24,
|
|
@@ -7916,7 +8036,7 @@
|
|
|
7916
8036
|
NotificationBellIcon.displayName = "NotificationBellIcon";
|
|
7917
8037
|
var NotificationBellIcon$1 = NotificationBellIcon;
|
|
7918
8038
|
|
|
7919
|
-
var _excluded$
|
|
8039
|
+
var _excluded$2S = ["gradient"];
|
|
7920
8040
|
|
|
7921
8041
|
/**
|
|
7922
8042
|
* @component OpenExpandedIcon
|
|
@@ -7946,7 +8066,7 @@
|
|
|
7946
8066
|
*/
|
|
7947
8067
|
var OpenExpandedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7948
8068
|
var gradient = _ref.gradient,
|
|
7949
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8069
|
+
props = _objectWithoutProperties(_ref, _excluded$2S);
|
|
7950
8070
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7951
8071
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7952
8072
|
width: 24,
|
|
@@ -7966,7 +8086,7 @@
|
|
|
7966
8086
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
7967
8087
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
7968
8088
|
|
|
7969
|
-
var _excluded$
|
|
8089
|
+
var _excluded$2R = ["gradient"];
|
|
7970
8090
|
|
|
7971
8091
|
/**
|
|
7972
8092
|
* @component OpenSheetIcon
|
|
@@ -7996,7 +8116,7 @@
|
|
|
7996
8116
|
*/
|
|
7997
8117
|
var OpenSheetIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7998
8118
|
var gradient = _ref.gradient,
|
|
7999
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8119
|
+
props = _objectWithoutProperties(_ref, _excluded$2R);
|
|
8000
8120
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8001
8121
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8002
8122
|
width: 24,
|
|
@@ -8021,7 +8141,7 @@
|
|
|
8021
8141
|
OpenSheetIcon.displayName = "OpenSheetIcon";
|
|
8022
8142
|
var OpenSheetIcon$1 = OpenSheetIcon;
|
|
8023
8143
|
|
|
8024
|
-
var _excluded$
|
|
8144
|
+
var _excluded$2Q = ["gradient"];
|
|
8025
8145
|
|
|
8026
8146
|
/**
|
|
8027
8147
|
* @component OrderFirstIcon
|
|
@@ -8051,7 +8171,7 @@
|
|
|
8051
8171
|
*/
|
|
8052
8172
|
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8053
8173
|
var gradient = _ref.gradient,
|
|
8054
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8174
|
+
props = _objectWithoutProperties(_ref, _excluded$2Q);
|
|
8055
8175
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8056
8176
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8057
8177
|
width: 24,
|
|
@@ -8071,7 +8191,7 @@
|
|
|
8071
8191
|
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
8072
8192
|
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
8073
8193
|
|
|
8074
|
-
var _excluded$
|
|
8194
|
+
var _excluded$2P = ["gradient"];
|
|
8075
8195
|
|
|
8076
8196
|
/**
|
|
8077
8197
|
* @component PaidSmallIcon
|
|
@@ -8101,7 +8221,7 @@
|
|
|
8101
8221
|
*/
|
|
8102
8222
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8103
8223
|
var gradient = _ref.gradient,
|
|
8104
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8224
|
+
props = _objectWithoutProperties(_ref, _excluded$2P);
|
|
8105
8225
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8106
8226
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8107
8227
|
width: 12,
|
|
@@ -8121,7 +8241,7 @@
|
|
|
8121
8241
|
PaidSmallIcon.displayName = "PaidSmallIcon";
|
|
8122
8242
|
var PaidSmallIcon$1 = PaidSmallIcon;
|
|
8123
8243
|
|
|
8124
|
-
var _excluded$
|
|
8244
|
+
var _excluded$2O = ["gradient"];
|
|
8125
8245
|
|
|
8126
8246
|
/**
|
|
8127
8247
|
* @component PauseCircleOutlineIcon
|
|
@@ -8151,7 +8271,7 @@
|
|
|
8151
8271
|
*/
|
|
8152
8272
|
var PauseCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8153
8273
|
var gradient = _ref.gradient,
|
|
8154
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8274
|
+
props = _objectWithoutProperties(_ref, _excluded$2O);
|
|
8155
8275
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8156
8276
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8157
8277
|
width: 24,
|
|
@@ -8171,7 +8291,7 @@
|
|
|
8171
8291
|
PauseCircleOutlineIcon.displayName = "PauseCircleOutlineIcon";
|
|
8172
8292
|
var PauseCircleOutlineIcon$1 = PauseCircleOutlineIcon;
|
|
8173
8293
|
|
|
8174
|
-
var _excluded$
|
|
8294
|
+
var _excluded$2N = ["gradient"];
|
|
8175
8295
|
|
|
8176
8296
|
/**
|
|
8177
8297
|
* @component PauseIcon
|
|
@@ -8201,7 +8321,7 @@
|
|
|
8201
8321
|
*/
|
|
8202
8322
|
var PauseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8203
8323
|
var gradient = _ref.gradient,
|
|
8204
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8324
|
+
props = _objectWithoutProperties(_ref, _excluded$2N);
|
|
8205
8325
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8206
8326
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8207
8327
|
width: 24,
|
|
@@ -8221,7 +8341,7 @@
|
|
|
8221
8341
|
PauseIcon.displayName = "PauseIcon";
|
|
8222
8342
|
var PauseIcon$1 = PauseIcon;
|
|
8223
8343
|
|
|
8224
|
-
var _excluded$
|
|
8344
|
+
var _excluded$2M = ["gradient"];
|
|
8225
8345
|
|
|
8226
8346
|
/**
|
|
8227
8347
|
* @component PauseSmallIcon
|
|
@@ -8251,7 +8371,7 @@
|
|
|
8251
8371
|
*/
|
|
8252
8372
|
var PauseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8253
8373
|
var gradient = _ref.gradient,
|
|
8254
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8374
|
+
props = _objectWithoutProperties(_ref, _excluded$2M);
|
|
8255
8375
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8256
8376
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8257
8377
|
width: 24,
|
|
@@ -8271,7 +8391,7 @@
|
|
|
8271
8391
|
PauseSmallIcon.displayName = "PauseSmallIcon";
|
|
8272
8392
|
var PauseSmallIcon$1 = PauseSmallIcon;
|
|
8273
8393
|
|
|
8274
|
-
var _excluded$
|
|
8394
|
+
var _excluded$2L = ["gradient"];
|
|
8275
8395
|
|
|
8276
8396
|
/**
|
|
8277
8397
|
* @component PencilSmallIcon
|
|
@@ -8301,7 +8421,7 @@
|
|
|
8301
8421
|
*/
|
|
8302
8422
|
var PencilSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8303
8423
|
var gradient = _ref.gradient,
|
|
8304
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8424
|
+
props = _objectWithoutProperties(_ref, _excluded$2L);
|
|
8305
8425
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8306
8426
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8307
8427
|
width: 12,
|
|
@@ -8320,7 +8440,7 @@
|
|
|
8320
8440
|
PencilSmallIcon.displayName = "PencilSmallIcon";
|
|
8321
8441
|
var PencilSmallIcon$1 = PencilSmallIcon;
|
|
8322
8442
|
|
|
8323
|
-
var _excluded$
|
|
8443
|
+
var _excluded$2K = ["gradient"];
|
|
8324
8444
|
|
|
8325
8445
|
/**
|
|
8326
8446
|
* @component PencilIcon
|
|
@@ -8350,7 +8470,7 @@
|
|
|
8350
8470
|
*/
|
|
8351
8471
|
var PencilIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8352
8472
|
var gradient = _ref.gradient,
|
|
8353
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8473
|
+
props = _objectWithoutProperties(_ref, _excluded$2K);
|
|
8354
8474
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8355
8475
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8356
8476
|
width: 24,
|
|
@@ -8369,7 +8489,7 @@
|
|
|
8369
8489
|
PencilIcon.displayName = "PencilIcon";
|
|
8370
8490
|
var PencilIcon$1 = PencilIcon;
|
|
8371
8491
|
|
|
8372
|
-
var _excluded$
|
|
8492
|
+
var _excluded$2J = ["gradient"];
|
|
8373
8493
|
|
|
8374
8494
|
/**
|
|
8375
8495
|
* @component PendingPaymentSmallIcon
|
|
@@ -8399,7 +8519,7 @@
|
|
|
8399
8519
|
*/
|
|
8400
8520
|
var PendingPaymentSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8401
8521
|
var gradient = _ref.gradient,
|
|
8402
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8522
|
+
props = _objectWithoutProperties(_ref, _excluded$2J);
|
|
8403
8523
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8404
8524
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8405
8525
|
width: 12,
|
|
@@ -8419,7 +8539,7 @@
|
|
|
8419
8539
|
PendingPaymentSmallIcon.displayName = "PendingPaymentSmallIcon";
|
|
8420
8540
|
var PendingPaymentSmallIcon$1 = PendingPaymentSmallIcon;
|
|
8421
8541
|
|
|
8422
|
-
var _excluded$
|
|
8542
|
+
var _excluded$2I = ["gradient"];
|
|
8423
8543
|
|
|
8424
8544
|
/**
|
|
8425
8545
|
* @component PeopleIcon
|
|
@@ -8449,7 +8569,7 @@
|
|
|
8449
8569
|
*/
|
|
8450
8570
|
var PeopleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8451
8571
|
var gradient = _ref.gradient,
|
|
8452
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8572
|
+
props = _objectWithoutProperties(_ref, _excluded$2I);
|
|
8453
8573
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8454
8574
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8455
8575
|
width: 24,
|
|
@@ -8473,7 +8593,7 @@
|
|
|
8473
8593
|
PeopleIcon.displayName = "PeopleIcon";
|
|
8474
8594
|
var PeopleIcon$1 = PeopleIcon;
|
|
8475
8595
|
|
|
8476
|
-
var _excluded$
|
|
8596
|
+
var _excluded$2H = ["gradient"];
|
|
8477
8597
|
|
|
8478
8598
|
/**
|
|
8479
8599
|
* @component PersonArrowOutCircleIcon
|
|
@@ -8503,7 +8623,7 @@
|
|
|
8503
8623
|
*/
|
|
8504
8624
|
var PersonArrowOutCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8505
8625
|
var gradient = _ref.gradient,
|
|
8506
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8626
|
+
props = _objectWithoutProperties(_ref, _excluded$2H);
|
|
8507
8627
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8508
8628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8509
8629
|
width: 24,
|
|
@@ -8524,7 +8644,7 @@
|
|
|
8524
8644
|
PersonArrowOutCircleIcon.displayName = "PersonArrowOutCircleIcon";
|
|
8525
8645
|
var PersonArrowOutCircleIcon$1 = PersonArrowOutCircleIcon;
|
|
8526
8646
|
|
|
8527
|
-
var _excluded$
|
|
8647
|
+
var _excluded$2G = ["gradient"];
|
|
8528
8648
|
|
|
8529
8649
|
/**
|
|
8530
8650
|
* @component PersonCircleOffIcon
|
|
@@ -8554,7 +8674,7 @@
|
|
|
8554
8674
|
*/
|
|
8555
8675
|
var PersonCircleOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8556
8676
|
var gradient = _ref.gradient,
|
|
8557
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8677
|
+
props = _objectWithoutProperties(_ref, _excluded$2G);
|
|
8558
8678
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8559
8679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8560
8680
|
width: 24,
|
|
@@ -8574,7 +8694,7 @@
|
|
|
8574
8694
|
PersonCircleOffIcon.displayName = "PersonCircleOffIcon";
|
|
8575
8695
|
var PersonCircleOffIcon$1 = PersonCircleOffIcon;
|
|
8576
8696
|
|
|
8577
|
-
var _excluded$
|
|
8697
|
+
var _excluded$2F = ["gradient"];
|
|
8578
8698
|
|
|
8579
8699
|
/**
|
|
8580
8700
|
* @component PersonCircleIcon
|
|
@@ -8604,7 +8724,7 @@
|
|
|
8604
8724
|
*/
|
|
8605
8725
|
var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8606
8726
|
var gradient = _ref.gradient,
|
|
8607
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8727
|
+
props = _objectWithoutProperties(_ref, _excluded$2F);
|
|
8608
8728
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8609
8729
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8610
8730
|
width: 24,
|
|
@@ -8624,7 +8744,7 @@
|
|
|
8624
8744
|
PersonCircleIcon.displayName = "PersonCircleIcon";
|
|
8625
8745
|
var PersonCircleIcon$1 = PersonCircleIcon;
|
|
8626
8746
|
|
|
8627
|
-
var _excluded$
|
|
8747
|
+
var _excluded$2E = ["gradient"];
|
|
8628
8748
|
|
|
8629
8749
|
/**
|
|
8630
8750
|
* @component PersonListIcon
|
|
@@ -8654,7 +8774,7 @@
|
|
|
8654
8774
|
*/
|
|
8655
8775
|
var PersonListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8656
8776
|
var gradient = _ref.gradient,
|
|
8657
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8777
|
+
props = _objectWithoutProperties(_ref, _excluded$2E);
|
|
8658
8778
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8659
8779
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8660
8780
|
width: 24,
|
|
@@ -8675,7 +8795,7 @@
|
|
|
8675
8795
|
PersonListIcon.displayName = "PersonListIcon";
|
|
8676
8796
|
var PersonListIcon$1 = PersonListIcon;
|
|
8677
8797
|
|
|
8678
|
-
var _excluded$
|
|
8798
|
+
var _excluded$2D = ["gradient"];
|
|
8679
8799
|
|
|
8680
8800
|
/**
|
|
8681
8801
|
* @component PersonPlusIcon
|
|
@@ -8705,7 +8825,7 @@
|
|
|
8705
8825
|
*/
|
|
8706
8826
|
var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8707
8827
|
var gradient = _ref.gradient,
|
|
8708
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8828
|
+
props = _objectWithoutProperties(_ref, _excluded$2D);
|
|
8709
8829
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8710
8830
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8711
8831
|
width: 24,
|
|
@@ -8725,7 +8845,7 @@
|
|
|
8725
8845
|
PersonPlusIcon.displayName = "PersonPlusIcon";
|
|
8726
8846
|
var PersonPlusIcon$1 = PersonPlusIcon;
|
|
8727
8847
|
|
|
8728
|
-
var _excluded$
|
|
8848
|
+
var _excluded$2C = ["gradient"];
|
|
8729
8849
|
|
|
8730
8850
|
/**
|
|
8731
8851
|
* @component PersonIcon
|
|
@@ -8755,7 +8875,7 @@
|
|
|
8755
8875
|
*/
|
|
8756
8876
|
var PersonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8757
8877
|
var gradient = _ref.gradient,
|
|
8758
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8878
|
+
props = _objectWithoutProperties(_ref, _excluded$2C);
|
|
8759
8879
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8760
8880
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8761
8881
|
width: 24,
|
|
@@ -8775,7 +8895,7 @@
|
|
|
8775
8895
|
PersonIcon.displayName = "PersonIcon";
|
|
8776
8896
|
var PersonIcon$1 = PersonIcon;
|
|
8777
8897
|
|
|
8778
|
-
var _excluded$
|
|
8898
|
+
var _excluded$2B = ["gradient"];
|
|
8779
8899
|
|
|
8780
8900
|
/**
|
|
8781
8901
|
* @component PinSmallIcon
|
|
@@ -8805,7 +8925,7 @@
|
|
|
8805
8925
|
*/
|
|
8806
8926
|
var PinSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8807
8927
|
var gradient = _ref.gradient,
|
|
8808
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8928
|
+
props = _objectWithoutProperties(_ref, _excluded$2B);
|
|
8809
8929
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8810
8930
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8811
8931
|
width: 12,
|
|
@@ -8826,7 +8946,7 @@
|
|
|
8826
8946
|
PinSmallIcon.displayName = "PinSmallIcon";
|
|
8827
8947
|
var PinSmallIcon$1 = PinSmallIcon;
|
|
8828
8948
|
|
|
8829
|
-
var _excluded$
|
|
8949
|
+
var _excluded$2A = ["gradient"];
|
|
8830
8950
|
|
|
8831
8951
|
/**
|
|
8832
8952
|
* @component PinIcon
|
|
@@ -8856,7 +8976,7 @@
|
|
|
8856
8976
|
*/
|
|
8857
8977
|
var PinIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8858
8978
|
var gradient = _ref.gradient,
|
|
8859
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8979
|
+
props = _objectWithoutProperties(_ref, _excluded$2A);
|
|
8860
8980
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8861
8981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8862
8982
|
width: 24,
|
|
@@ -8876,7 +8996,7 @@
|
|
|
8876
8996
|
PinIcon.displayName = "PinIcon";
|
|
8877
8997
|
var PinIcon$1 = PinIcon;
|
|
8878
8998
|
|
|
8879
|
-
var _excluded$
|
|
8999
|
+
var _excluded$2z = ["gradient"];
|
|
8880
9000
|
|
|
8881
9001
|
/**
|
|
8882
9002
|
* @component PlayCircleOutlineIcon
|
|
@@ -8906,7 +9026,7 @@
|
|
|
8906
9026
|
*/
|
|
8907
9027
|
var PlayCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8908
9028
|
var gradient = _ref.gradient,
|
|
8909
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9029
|
+
props = _objectWithoutProperties(_ref, _excluded$2z);
|
|
8910
9030
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8911
9031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8912
9032
|
width: 24,
|
|
@@ -8926,7 +9046,7 @@
|
|
|
8926
9046
|
PlayCircleOutlineIcon.displayName = "PlayCircleOutlineIcon";
|
|
8927
9047
|
var PlayCircleOutlineIcon$1 = PlayCircleOutlineIcon;
|
|
8928
9048
|
|
|
8929
|
-
var _excluded$
|
|
9049
|
+
var _excluded$2y = ["gradient"];
|
|
8930
9050
|
|
|
8931
9051
|
/**
|
|
8932
9052
|
* @component PlayIcon
|
|
@@ -8956,7 +9076,7 @@
|
|
|
8956
9076
|
*/
|
|
8957
9077
|
var PlayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8958
9078
|
var gradient = _ref.gradient,
|
|
8959
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9079
|
+
props = _objectWithoutProperties(_ref, _excluded$2y);
|
|
8960
9080
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8961
9081
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8962
9082
|
width: 24,
|
|
@@ -8976,7 +9096,7 @@
|
|
|
8976
9096
|
PlayIcon.displayName = "PlayIcon";
|
|
8977
9097
|
var PlayIcon$1 = PlayIcon;
|
|
8978
9098
|
|
|
8979
|
-
var _excluded$
|
|
9099
|
+
var _excluded$2x = ["gradient"];
|
|
8980
9100
|
|
|
8981
9101
|
/**
|
|
8982
9102
|
* @component PlaySmallIcon
|
|
@@ -9006,7 +9126,7 @@
|
|
|
9006
9126
|
*/
|
|
9007
9127
|
var PlaySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9008
9128
|
var gradient = _ref.gradient,
|
|
9009
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9129
|
+
props = _objectWithoutProperties(_ref, _excluded$2x);
|
|
9010
9130
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9011
9131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9012
9132
|
width: 24,
|
|
@@ -9026,7 +9146,7 @@
|
|
|
9026
9146
|
PlaySmallIcon.displayName = "PlaySmallIcon";
|
|
9027
9147
|
var PlaySmallIcon$1 = PlaySmallIcon;
|
|
9028
9148
|
|
|
9029
|
-
var _excluded$
|
|
9149
|
+
var _excluded$2w = ["gradient"];
|
|
9030
9150
|
|
|
9031
9151
|
/**
|
|
9032
9152
|
* @component PriorityLowIcon
|
|
@@ -9056,7 +9176,7 @@
|
|
|
9056
9176
|
*/
|
|
9057
9177
|
var PriorityLowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9058
9178
|
var gradient = _ref.gradient,
|
|
9059
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9179
|
+
props = _objectWithoutProperties(_ref, _excluded$2w);
|
|
9060
9180
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9061
9181
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9062
9182
|
width: 24,
|
|
@@ -9077,7 +9197,7 @@
|
|
|
9077
9197
|
PriorityLowIcon.displayName = "PriorityLowIcon";
|
|
9078
9198
|
var PriorityLowIcon$1 = PriorityLowIcon;
|
|
9079
9199
|
|
|
9080
|
-
var _excluded$
|
|
9200
|
+
var _excluded$2v = ["gradient"];
|
|
9081
9201
|
|
|
9082
9202
|
/**
|
|
9083
9203
|
* @component ProjectAddIcon
|
|
@@ -9107,7 +9227,7 @@
|
|
|
9107
9227
|
*/
|
|
9108
9228
|
var ProjectAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9109
9229
|
var gradient = _ref.gradient,
|
|
9110
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9230
|
+
props = _objectWithoutProperties(_ref, _excluded$2v);
|
|
9111
9231
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9112
9232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9113
9233
|
width: 24,
|
|
@@ -9127,7 +9247,7 @@
|
|
|
9127
9247
|
ProjectAddIcon.displayName = "ProjectAddIcon";
|
|
9128
9248
|
var ProjectAddIcon$1 = ProjectAddIcon;
|
|
9129
9249
|
|
|
9130
|
-
var _excluded$
|
|
9250
|
+
var _excluded$2u = ["gradient"];
|
|
9131
9251
|
|
|
9132
9252
|
/**
|
|
9133
9253
|
* @component ProjectSearchIcon
|
|
@@ -9157,7 +9277,7 @@
|
|
|
9157
9277
|
*/
|
|
9158
9278
|
var ProjectSearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9159
9279
|
var gradient = _ref.gradient,
|
|
9160
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9280
|
+
props = _objectWithoutProperties(_ref, _excluded$2u);
|
|
9161
9281
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9162
9282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9163
9283
|
width: 24,
|
|
@@ -9178,7 +9298,7 @@
|
|
|
9178
9298
|
ProjectSearchIcon.displayName = "ProjectSearchIcon";
|
|
9179
9299
|
var ProjectSearchIcon$1 = ProjectSearchIcon;
|
|
9180
9300
|
|
|
9181
|
-
var _excluded$
|
|
9301
|
+
var _excluded$2t = ["gradient"];
|
|
9182
9302
|
|
|
9183
9303
|
/**
|
|
9184
9304
|
* @component ProjectStarIcon
|
|
@@ -9208,7 +9328,7 @@
|
|
|
9208
9328
|
*/
|
|
9209
9329
|
var ProjectStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9210
9330
|
var gradient = _ref.gradient,
|
|
9211
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9331
|
+
props = _objectWithoutProperties(_ref, _excluded$2t);
|
|
9212
9332
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9213
9333
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9214
9334
|
width: 24,
|
|
@@ -9231,7 +9351,7 @@
|
|
|
9231
9351
|
ProjectStarIcon.displayName = "ProjectStarIcon";
|
|
9232
9352
|
var ProjectStarIcon$1 = ProjectStarIcon;
|
|
9233
9353
|
|
|
9234
|
-
var _excluded$
|
|
9354
|
+
var _excluded$2s = ["gradient"];
|
|
9235
9355
|
|
|
9236
9356
|
/**
|
|
9237
9357
|
* @component ProjectTemplateAddIcon
|
|
@@ -9261,7 +9381,7 @@
|
|
|
9261
9381
|
*/
|
|
9262
9382
|
var ProjectTemplateAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9263
9383
|
var gradient = _ref.gradient,
|
|
9264
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9384
|
+
props = _objectWithoutProperties(_ref, _excluded$2s);
|
|
9265
9385
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9266
9386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9267
9387
|
width: 24,
|
|
@@ -9281,7 +9401,7 @@
|
|
|
9281
9401
|
ProjectTemplateAddIcon.displayName = "ProjectTemplateAddIcon";
|
|
9282
9402
|
var ProjectTemplateAddIcon$1 = ProjectTemplateAddIcon;
|
|
9283
9403
|
|
|
9284
|
-
var _excluded$
|
|
9404
|
+
var _excluded$2r = ["gradient"];
|
|
9285
9405
|
|
|
9286
9406
|
/**
|
|
9287
9407
|
* @component ProjectTemplateConvertIcon
|
|
@@ -9311,7 +9431,7 @@
|
|
|
9311
9431
|
*/
|
|
9312
9432
|
var ProjectTemplateConvertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9313
9433
|
var gradient = _ref.gradient,
|
|
9314
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9434
|
+
props = _objectWithoutProperties(_ref, _excluded$2r);
|
|
9315
9435
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9316
9436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9317
9437
|
width: 24,
|
|
@@ -9331,7 +9451,7 @@
|
|
|
9331
9451
|
ProjectTemplateConvertIcon.displayName = "ProjectTemplateConvertIcon";
|
|
9332
9452
|
var ProjectTemplateConvertIcon$1 = ProjectTemplateConvertIcon;
|
|
9333
9453
|
|
|
9334
|
-
var _excluded$
|
|
9454
|
+
var _excluded$2q = ["gradient"];
|
|
9335
9455
|
|
|
9336
9456
|
/**
|
|
9337
9457
|
* @component ProjectTemplateIcon
|
|
@@ -9361,7 +9481,7 @@
|
|
|
9361
9481
|
*/
|
|
9362
9482
|
var ProjectTemplateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9363
9483
|
var gradient = _ref.gradient,
|
|
9364
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9484
|
+
props = _objectWithoutProperties(_ref, _excluded$2q);
|
|
9365
9485
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9366
9486
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9367
9487
|
width: 24,
|
|
@@ -9381,7 +9501,7 @@
|
|
|
9381
9501
|
ProjectTemplateIcon.displayName = "ProjectTemplateIcon";
|
|
9382
9502
|
var ProjectTemplateIcon$1 = ProjectTemplateIcon;
|
|
9383
9503
|
|
|
9384
|
-
var _excluded$
|
|
9504
|
+
var _excluded$2p = ["gradient"];
|
|
9385
9505
|
|
|
9386
9506
|
/**
|
|
9387
9507
|
* @component ProjectsIcon
|
|
@@ -9411,7 +9531,7 @@
|
|
|
9411
9531
|
*/
|
|
9412
9532
|
var ProjectsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9413
9533
|
var gradient = _ref.gradient,
|
|
9414
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9534
|
+
props = _objectWithoutProperties(_ref, _excluded$2p);
|
|
9415
9535
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9416
9536
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9417
9537
|
width: 24,
|
|
@@ -9435,7 +9555,7 @@
|
|
|
9435
9555
|
ProjectsIcon.displayName = "ProjectsIcon";
|
|
9436
9556
|
var ProjectsIcon$1 = ProjectsIcon;
|
|
9437
9557
|
|
|
9438
|
-
var _excluded$
|
|
9558
|
+
var _excluded$2o = ["gradient"];
|
|
9439
9559
|
|
|
9440
9560
|
/**
|
|
9441
9561
|
* @component PuzzleIcon
|
|
@@ -9465,7 +9585,7 @@
|
|
|
9465
9585
|
*/
|
|
9466
9586
|
var PuzzleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9467
9587
|
var gradient = _ref.gradient,
|
|
9468
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9588
|
+
props = _objectWithoutProperties(_ref, _excluded$2o);
|
|
9469
9589
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9470
9590
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9471
9591
|
width: 24,
|
|
@@ -9486,7 +9606,7 @@
|
|
|
9486
9606
|
PuzzleIcon.displayName = "PuzzleIcon";
|
|
9487
9607
|
var PuzzleIcon$1 = PuzzleIcon;
|
|
9488
9608
|
|
|
9489
|
-
var _excluded$
|
|
9609
|
+
var _excluded$2n = ["gradient"];
|
|
9490
9610
|
|
|
9491
9611
|
/**
|
|
9492
9612
|
* @component RadioBlankIcon
|
|
@@ -9516,7 +9636,7 @@
|
|
|
9516
9636
|
*/
|
|
9517
9637
|
var RadioBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9518
9638
|
var gradient = _ref.gradient,
|
|
9519
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9639
|
+
props = _objectWithoutProperties(_ref, _excluded$2n);
|
|
9520
9640
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9521
9641
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9522
9642
|
width: 24,
|
|
@@ -9536,7 +9656,7 @@
|
|
|
9536
9656
|
RadioBlankIcon.displayName = "RadioBlankIcon";
|
|
9537
9657
|
var RadioBlankIcon$1 = RadioBlankIcon;
|
|
9538
9658
|
|
|
9539
|
-
var _excluded$
|
|
9659
|
+
var _excluded$2m = ["gradient"];
|
|
9540
9660
|
|
|
9541
9661
|
/**
|
|
9542
9662
|
* @component RadioButtonIcon
|
|
@@ -9566,7 +9686,7 @@
|
|
|
9566
9686
|
*/
|
|
9567
9687
|
var RadioButtonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9568
9688
|
var gradient = _ref.gradient,
|
|
9569
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9689
|
+
props = _objectWithoutProperties(_ref, _excluded$2m);
|
|
9570
9690
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9571
9691
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9572
9692
|
width: 16,
|
|
@@ -9594,7 +9714,7 @@
|
|
|
9594
9714
|
RadioButtonIcon.displayName = "RadioButtonIcon";
|
|
9595
9715
|
var RadioButtonIcon$1 = RadioButtonIcon;
|
|
9596
9716
|
|
|
9597
|
-
var _excluded$
|
|
9717
|
+
var _excluded$2l = ["gradient"];
|
|
9598
9718
|
|
|
9599
9719
|
/**
|
|
9600
9720
|
* @component RearangeIcon
|
|
@@ -9624,7 +9744,7 @@
|
|
|
9624
9744
|
*/
|
|
9625
9745
|
var RearangeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9626
9746
|
var gradient = _ref.gradient,
|
|
9627
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9747
|
+
props = _objectWithoutProperties(_ref, _excluded$2l);
|
|
9628
9748
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9629
9749
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9630
9750
|
width: 24,
|
|
@@ -9644,7 +9764,7 @@
|
|
|
9644
9764
|
RearangeIcon.displayName = "RearangeIcon";
|
|
9645
9765
|
var RearangeIcon$1 = RearangeIcon;
|
|
9646
9766
|
|
|
9647
|
-
var _excluded$
|
|
9767
|
+
var _excluded$2k = ["gradient"];
|
|
9648
9768
|
|
|
9649
9769
|
/**
|
|
9650
9770
|
* @component RearrangeSmallIcon
|
|
@@ -9674,7 +9794,7 @@
|
|
|
9674
9794
|
*/
|
|
9675
9795
|
var RearrangeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9676
9796
|
var gradient = _ref.gradient,
|
|
9677
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9797
|
+
props = _objectWithoutProperties(_ref, _excluded$2k);
|
|
9678
9798
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9679
9799
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9680
9800
|
width: 12,
|
|
@@ -9694,7 +9814,7 @@
|
|
|
9694
9814
|
RearrangeSmallIcon.displayName = "RearrangeSmallIcon";
|
|
9695
9815
|
var RearrangeSmallIcon$1 = RearrangeSmallIcon;
|
|
9696
9816
|
|
|
9697
|
-
var _excluded$
|
|
9817
|
+
var _excluded$2j = ["gradient"];
|
|
9698
9818
|
|
|
9699
9819
|
/**
|
|
9700
9820
|
* @component RecurringCheckmarkSmallIcon
|
|
@@ -9724,7 +9844,7 @@
|
|
|
9724
9844
|
*/
|
|
9725
9845
|
var RecurringCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9726
9846
|
var gradient = _ref.gradient,
|
|
9727
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9847
|
+
props = _objectWithoutProperties(_ref, _excluded$2j);
|
|
9728
9848
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9729
9849
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9730
9850
|
width: 12,
|
|
@@ -9744,7 +9864,7 @@
|
|
|
9744
9864
|
RecurringCheckmarkSmallIcon.displayName = "RecurringCheckmarkSmallIcon";
|
|
9745
9865
|
var RecurringCheckmarkSmallIcon$1 = RecurringCheckmarkSmallIcon;
|
|
9746
9866
|
|
|
9747
|
-
var _excluded$
|
|
9867
|
+
var _excluded$2i = ["gradient"];
|
|
9748
9868
|
|
|
9749
9869
|
/**
|
|
9750
9870
|
* @component RecurringCheckmarkIcon
|
|
@@ -9774,7 +9894,7 @@
|
|
|
9774
9894
|
*/
|
|
9775
9895
|
var RecurringCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9776
9896
|
var gradient = _ref.gradient,
|
|
9777
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9897
|
+
props = _objectWithoutProperties(_ref, _excluded$2i);
|
|
9778
9898
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9779
9899
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9780
9900
|
width: 24,
|
|
@@ -9794,7 +9914,7 @@
|
|
|
9794
9914
|
RecurringCheckmarkIcon.displayName = "RecurringCheckmarkIcon";
|
|
9795
9915
|
var RecurringCheckmarkIcon$1 = RecurringCheckmarkIcon;
|
|
9796
9916
|
|
|
9797
|
-
var _excluded$
|
|
9917
|
+
var _excluded$2h = ["gradient"];
|
|
9798
9918
|
|
|
9799
9919
|
/**
|
|
9800
9920
|
* @component RecurringDollarIcon
|
|
@@ -9824,7 +9944,7 @@
|
|
|
9824
9944
|
*/
|
|
9825
9945
|
var RecurringDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9826
9946
|
var gradient = _ref.gradient,
|
|
9827
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9947
|
+
props = _objectWithoutProperties(_ref, _excluded$2h);
|
|
9828
9948
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9829
9949
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9830
9950
|
width: 24,
|
|
@@ -9846,7 +9966,7 @@
|
|
|
9846
9966
|
RecurringDollarIcon.displayName = "RecurringDollarIcon";
|
|
9847
9967
|
var RecurringDollarIcon$1 = RecurringDollarIcon;
|
|
9848
9968
|
|
|
9849
|
-
var _excluded$
|
|
9969
|
+
var _excluded$2g = ["gradient"];
|
|
9850
9970
|
|
|
9851
9971
|
/**
|
|
9852
9972
|
* @component RecurringSmallIcon
|
|
@@ -9876,7 +9996,7 @@
|
|
|
9876
9996
|
*/
|
|
9877
9997
|
var RecurringSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9878
9998
|
var gradient = _ref.gradient,
|
|
9879
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9999
|
+
props = _objectWithoutProperties(_ref, _excluded$2g);
|
|
9880
10000
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9881
10001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9882
10002
|
width: 12,
|
|
@@ -9897,7 +10017,7 @@
|
|
|
9897
10017
|
RecurringSmallIcon.displayName = "RecurringSmallIcon";
|
|
9898
10018
|
var RecurringSmallIcon$1 = RecurringSmallIcon;
|
|
9899
10019
|
|
|
9900
|
-
var _excluded$
|
|
10020
|
+
var _excluded$2f = ["gradient"];
|
|
9901
10021
|
|
|
9902
10022
|
/**
|
|
9903
10023
|
* @component ReminderIcon
|
|
@@ -9927,7 +10047,7 @@
|
|
|
9927
10047
|
*/
|
|
9928
10048
|
var ReminderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9929
10049
|
var gradient = _ref.gradient,
|
|
9930
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10050
|
+
props = _objectWithoutProperties(_ref, _excluded$2f);
|
|
9931
10051
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9932
10052
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9933
10053
|
width: 18,
|
|
@@ -9953,7 +10073,7 @@
|
|
|
9953
10073
|
ReminderIcon.displayName = "ReminderIcon";
|
|
9954
10074
|
var ReminderIcon$1 = ReminderIcon;
|
|
9955
10075
|
|
|
9956
|
-
var _excluded$
|
|
10076
|
+
var _excluded$2e = ["gradient"];
|
|
9957
10077
|
|
|
9958
10078
|
/**
|
|
9959
10079
|
* @component ReorderIcon
|
|
@@ -9983,7 +10103,7 @@
|
|
|
9983
10103
|
*/
|
|
9984
10104
|
var ReorderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9985
10105
|
var gradient = _ref.gradient,
|
|
9986
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10106
|
+
props = _objectWithoutProperties(_ref, _excluded$2e);
|
|
9987
10107
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9988
10108
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9989
10109
|
width: 24,
|
|
@@ -10002,7 +10122,7 @@
|
|
|
10002
10122
|
ReorderIcon.displayName = "ReorderIcon";
|
|
10003
10123
|
var ReorderIcon$1 = ReorderIcon;
|
|
10004
10124
|
|
|
10005
|
-
var _excluded$
|
|
10125
|
+
var _excluded$2d = ["gradient"];
|
|
10006
10126
|
|
|
10007
10127
|
/**
|
|
10008
10128
|
* @component ReportTimeIcon
|
|
@@ -10032,7 +10152,7 @@
|
|
|
10032
10152
|
*/
|
|
10033
10153
|
var ReportTimeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10034
10154
|
var gradient = _ref.gradient,
|
|
10035
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10155
|
+
props = _objectWithoutProperties(_ref, _excluded$2d);
|
|
10036
10156
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10037
10157
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10038
10158
|
width: 24,
|
|
@@ -10052,7 +10172,7 @@
|
|
|
10052
10172
|
ReportTimeIcon.displayName = "ReportTimeIcon";
|
|
10053
10173
|
var ReportTimeIcon$1 = ReportTimeIcon;
|
|
10054
10174
|
|
|
10055
|
-
var _excluded$
|
|
10175
|
+
var _excluded$2c = ["gradient"];
|
|
10056
10176
|
|
|
10057
10177
|
/**
|
|
10058
10178
|
* @component ReportsIcon
|
|
@@ -10082,7 +10202,7 @@
|
|
|
10082
10202
|
*/
|
|
10083
10203
|
var ReportsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10084
10204
|
var gradient = _ref.gradient,
|
|
10085
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10205
|
+
props = _objectWithoutProperties(_ref, _excluded$2c);
|
|
10086
10206
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10087
10207
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10088
10208
|
width: 24,
|
|
@@ -10106,7 +10226,7 @@
|
|
|
10106
10226
|
ReportsIcon.displayName = "ReportsIcon";
|
|
10107
10227
|
var ReportsIcon$1 = ReportsIcon;
|
|
10108
10228
|
|
|
10109
|
-
var _excluded$
|
|
10229
|
+
var _excluded$2b = ["gradient"];
|
|
10110
10230
|
|
|
10111
10231
|
/**
|
|
10112
10232
|
* @component RobotIcon
|
|
@@ -10136,7 +10256,7 @@
|
|
|
10136
10256
|
*/
|
|
10137
10257
|
var RobotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10138
10258
|
var gradient = _ref.gradient,
|
|
10139
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10259
|
+
props = _objectWithoutProperties(_ref, _excluded$2b);
|
|
10140
10260
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10141
10261
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10142
10262
|
width: 24,
|
|
@@ -10159,7 +10279,7 @@
|
|
|
10159
10279
|
RobotIcon.displayName = "RobotIcon";
|
|
10160
10280
|
var RobotIcon$1 = RobotIcon;
|
|
10161
10281
|
|
|
10162
|
-
var _excluded$
|
|
10282
|
+
var _excluded$2a = ["gradient"];
|
|
10163
10283
|
|
|
10164
10284
|
/**
|
|
10165
10285
|
* @component RocketSmallIcon
|
|
@@ -10189,7 +10309,7 @@
|
|
|
10189
10309
|
*/
|
|
10190
10310
|
var RocketSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10191
10311
|
var gradient = _ref.gradient,
|
|
10192
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10312
|
+
props = _objectWithoutProperties(_ref, _excluded$2a);
|
|
10193
10313
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10194
10314
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10195
10315
|
width: 18,
|
|
@@ -10207,7 +10327,7 @@
|
|
|
10207
10327
|
RocketSmallIcon.displayName = "RocketSmallIcon";
|
|
10208
10328
|
var RocketSmallIcon$1 = RocketSmallIcon;
|
|
10209
10329
|
|
|
10210
|
-
var _excluded$
|
|
10330
|
+
var _excluded$29 = ["gradient"];
|
|
10211
10331
|
|
|
10212
10332
|
/**
|
|
10213
10333
|
* @component RocketIcon
|
|
@@ -10237,7 +10357,7 @@
|
|
|
10237
10357
|
*/
|
|
10238
10358
|
var RocketIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10239
10359
|
var gradient = _ref.gradient,
|
|
10240
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10360
|
+
props = _objectWithoutProperties(_ref, _excluded$29);
|
|
10241
10361
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10242
10362
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10243
10363
|
width: 24,
|
|
@@ -10256,7 +10376,7 @@
|
|
|
10256
10376
|
RocketIcon.displayName = "RocketIcon";
|
|
10257
10377
|
var RocketIcon$1 = RocketIcon;
|
|
10258
10378
|
|
|
10259
|
-
var _excluded$
|
|
10379
|
+
var _excluded$28 = ["gradient"];
|
|
10260
10380
|
|
|
10261
10381
|
/**
|
|
10262
10382
|
* @component RoundedRectangleIcon
|
|
@@ -10286,7 +10406,7 @@
|
|
|
10286
10406
|
*/
|
|
10287
10407
|
var RoundedRectangleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10288
10408
|
var gradient = _ref.gradient,
|
|
10289
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10409
|
+
props = _objectWithoutProperties(_ref, _excluded$28);
|
|
10290
10410
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10291
10411
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10292
10412
|
width: 24,
|
|
@@ -10312,7 +10432,7 @@
|
|
|
10312
10432
|
RoundedRectangleIcon.displayName = "RoundedRectangleIcon";
|
|
10313
10433
|
var RoundedRectangleIcon$1 = RoundedRectangleIcon;
|
|
10314
10434
|
|
|
10315
|
-
var _excluded$
|
|
10435
|
+
var _excluded$27 = ["gradient"];
|
|
10316
10436
|
|
|
10317
10437
|
/**
|
|
10318
10438
|
* @component SaveIcon
|
|
@@ -10342,7 +10462,7 @@
|
|
|
10342
10462
|
*/
|
|
10343
10463
|
var SaveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10344
10464
|
var gradient = _ref.gradient,
|
|
10345
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10465
|
+
props = _objectWithoutProperties(_ref, _excluded$27);
|
|
10346
10466
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10347
10467
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10348
10468
|
width: 24,
|
|
@@ -10363,7 +10483,7 @@
|
|
|
10363
10483
|
SaveIcon.displayName = "SaveIcon";
|
|
10364
10484
|
var SaveIcon$1 = SaveIcon;
|
|
10365
10485
|
|
|
10366
|
-
var _excluded$
|
|
10486
|
+
var _excluded$26 = ["gradient"];
|
|
10367
10487
|
|
|
10368
10488
|
/**
|
|
10369
10489
|
* @component SearchLargeIcon
|
|
@@ -10393,7 +10513,7 @@
|
|
|
10393
10513
|
*/
|
|
10394
10514
|
var SearchLargeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10395
10515
|
var gradient = _ref.gradient,
|
|
10396
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10516
|
+
props = _objectWithoutProperties(_ref, _excluded$26);
|
|
10397
10517
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10398
10518
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10399
10519
|
width: 32,
|
|
@@ -10414,7 +10534,7 @@
|
|
|
10414
10534
|
SearchLargeIcon.displayName = "SearchLargeIcon";
|
|
10415
10535
|
var SearchLargeIcon$1 = SearchLargeIcon;
|
|
10416
10536
|
|
|
10417
|
-
var _excluded$
|
|
10537
|
+
var _excluded$25 = ["gradient"];
|
|
10418
10538
|
|
|
10419
10539
|
/**
|
|
10420
10540
|
* @component SearchPlusIcon
|
|
@@ -10444,7 +10564,7 @@
|
|
|
10444
10564
|
*/
|
|
10445
10565
|
var SearchPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10446
10566
|
var gradient = _ref.gradient,
|
|
10447
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10567
|
+
props = _objectWithoutProperties(_ref, _excluded$25);
|
|
10448
10568
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10449
10569
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10450
10570
|
width: 24,
|
|
@@ -10468,7 +10588,7 @@
|
|
|
10468
10588
|
SearchPlusIcon.displayName = "SearchPlusIcon";
|
|
10469
10589
|
var SearchPlusIcon$1 = SearchPlusIcon;
|
|
10470
10590
|
|
|
10471
|
-
var _excluded$
|
|
10591
|
+
var _excluded$24 = ["gradient"];
|
|
10472
10592
|
|
|
10473
10593
|
/**
|
|
10474
10594
|
* @component SearchIcon
|
|
@@ -10498,7 +10618,7 @@
|
|
|
10498
10618
|
*/
|
|
10499
10619
|
var SearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10500
10620
|
var gradient = _ref.gradient,
|
|
10501
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10621
|
+
props = _objectWithoutProperties(_ref, _excluded$24);
|
|
10502
10622
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10503
10623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10504
10624
|
width: 24,
|
|
@@ -10517,7 +10637,7 @@
|
|
|
10517
10637
|
SearchIcon.displayName = "SearchIcon";
|
|
10518
10638
|
var SearchIcon$1 = SearchIcon;
|
|
10519
10639
|
|
|
10520
|
-
var _excluded$
|
|
10640
|
+
var _excluded$23 = ["gradient"];
|
|
10521
10641
|
|
|
10522
10642
|
/**
|
|
10523
10643
|
* @component SendBlankIcon
|
|
@@ -10547,7 +10667,7 @@
|
|
|
10547
10667
|
*/
|
|
10548
10668
|
var SendBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10549
10669
|
var gradient = _ref.gradient,
|
|
10550
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10670
|
+
props = _objectWithoutProperties(_ref, _excluded$23);
|
|
10551
10671
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10552
10672
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10553
10673
|
width: 24,
|
|
@@ -10566,7 +10686,7 @@
|
|
|
10566
10686
|
SendBlankIcon.displayName = "SendBlankIcon";
|
|
10567
10687
|
var SendBlankIcon$1 = SendBlankIcon;
|
|
10568
10688
|
|
|
10569
|
-
var _excluded$
|
|
10689
|
+
var _excluded$22 = ["gradient"];
|
|
10570
10690
|
|
|
10571
10691
|
/**
|
|
10572
10692
|
* @component SendFilledIcon
|
|
@@ -10596,7 +10716,7 @@
|
|
|
10596
10716
|
*/
|
|
10597
10717
|
var SendFilledIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10598
10718
|
var gradient = _ref.gradient,
|
|
10599
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10719
|
+
props = _objectWithoutProperties(_ref, _excluded$22);
|
|
10600
10720
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10601
10721
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10602
10722
|
width: 24,
|
|
@@ -10615,7 +10735,7 @@
|
|
|
10615
10735
|
SendFilledIcon.displayName = "SendFilledIcon";
|
|
10616
10736
|
var SendFilledIcon$1 = SendFilledIcon;
|
|
10617
10737
|
|
|
10618
|
-
var _excluded$
|
|
10738
|
+
var _excluded$21 = ["gradient"];
|
|
10619
10739
|
|
|
10620
10740
|
/**
|
|
10621
10741
|
* @component SettingsIcon
|
|
@@ -10645,7 +10765,7 @@
|
|
|
10645
10765
|
*/
|
|
10646
10766
|
var SettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10647
10767
|
var gradient = _ref.gradient,
|
|
10648
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10768
|
+
props = _objectWithoutProperties(_ref, _excluded$21);
|
|
10649
10769
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10650
10770
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10651
10771
|
width: 24,
|
|
@@ -10665,7 +10785,7 @@
|
|
|
10665
10785
|
SettingsIcon.displayName = "SettingsIcon";
|
|
10666
10786
|
var SettingsIcon$1 = SettingsIcon;
|
|
10667
10787
|
|
|
10668
|
-
var _excluded$
|
|
10788
|
+
var _excluded$20 = ["gradient"];
|
|
10669
10789
|
|
|
10670
10790
|
/**
|
|
10671
10791
|
* @component ShieldIcon
|
|
@@ -10695,7 +10815,7 @@
|
|
|
10695
10815
|
*/
|
|
10696
10816
|
var ShieldIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10697
10817
|
var gradient = _ref.gradient,
|
|
10698
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10818
|
+
props = _objectWithoutProperties(_ref, _excluded$20);
|
|
10699
10819
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10700
10820
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10701
10821
|
width: 24,
|
|
@@ -10716,7 +10836,7 @@
|
|
|
10716
10836
|
ShieldIcon.displayName = "ShieldIcon";
|
|
10717
10837
|
var ShieldIcon$1 = ShieldIcon;
|
|
10718
10838
|
|
|
10719
|
-
var _excluded$
|
|
10839
|
+
var _excluded$1$ = ["gradient"];
|
|
10720
10840
|
|
|
10721
10841
|
/**
|
|
10722
10842
|
* @component SortGeneralIcon
|
|
@@ -10746,7 +10866,7 @@
|
|
|
10746
10866
|
*/
|
|
10747
10867
|
var SortGeneralIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10748
10868
|
var gradient = _ref.gradient,
|
|
10749
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10869
|
+
props = _objectWithoutProperties(_ref, _excluded$1$);
|
|
10750
10870
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10751
10871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10752
10872
|
width: 24,
|
|
@@ -10766,7 +10886,7 @@
|
|
|
10766
10886
|
SortGeneralIcon.displayName = "SortGeneralIcon";
|
|
10767
10887
|
var SortGeneralIcon$1 = SortGeneralIcon;
|
|
10768
10888
|
|
|
10769
|
-
var _excluded$
|
|
10889
|
+
var _excluded$1_ = ["gradient"];
|
|
10770
10890
|
|
|
10771
10891
|
/**
|
|
10772
10892
|
* @component SortIcon
|
|
@@ -10796,7 +10916,7 @@
|
|
|
10796
10916
|
*/
|
|
10797
10917
|
var SortIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10798
10918
|
var gradient = _ref.gradient,
|
|
10799
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10919
|
+
props = _objectWithoutProperties(_ref, _excluded$1_);
|
|
10800
10920
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10801
10921
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10802
10922
|
width: 10,
|
|
@@ -10816,7 +10936,7 @@
|
|
|
10816
10936
|
SortIcon.displayName = "SortIcon";
|
|
10817
10937
|
var SortIcon$1 = SortIcon;
|
|
10818
10938
|
|
|
10819
|
-
var _excluded$
|
|
10939
|
+
var _excluded$1Z = ["gradient"];
|
|
10820
10940
|
|
|
10821
10941
|
/**
|
|
10822
10942
|
* @component SortListIcon
|
|
@@ -10846,7 +10966,7 @@
|
|
|
10846
10966
|
*/
|
|
10847
10967
|
var SortListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10848
10968
|
var gradient = _ref.gradient,
|
|
10849
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10969
|
+
props = _objectWithoutProperties(_ref, _excluded$1Z);
|
|
10850
10970
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10851
10971
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10852
10972
|
width: 20,
|
|
@@ -10866,7 +10986,7 @@
|
|
|
10866
10986
|
SortListIcon.displayName = "SortListIcon";
|
|
10867
10987
|
var SortListIcon$1 = SortListIcon;
|
|
10868
10988
|
|
|
10869
|
-
var _excluded$
|
|
10989
|
+
var _excluded$1Y = ["gradient"];
|
|
10870
10990
|
|
|
10871
10991
|
/**
|
|
10872
10992
|
* @component SortSmallIcon
|
|
@@ -10896,7 +11016,7 @@
|
|
|
10896
11016
|
*/
|
|
10897
11017
|
var SortSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10898
11018
|
var gradient = _ref.gradient,
|
|
10899
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11019
|
+
props = _objectWithoutProperties(_ref, _excluded$1Y);
|
|
10900
11020
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10901
11021
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10902
11022
|
width: 10,
|
|
@@ -10917,47 +11037,6 @@
|
|
|
10917
11037
|
SortSmallIcon.displayName = "SortSmallIcon";
|
|
10918
11038
|
var SortSmallIcon$1 = SortSmallIcon;
|
|
10919
11039
|
|
|
10920
|
-
var _excluded$1Y = ["gradient"];
|
|
10921
|
-
|
|
10922
|
-
/**
|
|
10923
|
-
* @component SourceCodeIcon
|
|
10924
|
-
* @description
|
|
10925
|
-
* Outline source-code / repository glyph (a window with code chevrons) for
|
|
10926
|
-
* source-control signifiers.
|
|
10927
|
-
*
|
|
10928
|
-
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
|
|
10929
|
-
*
|
|
10930
|
-
* @see https://design.activecollab.com/docs/foundations/icons
|
|
10931
|
-
*/
|
|
10932
|
-
var SourceCodeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10933
|
-
var gradient = _ref.gradient,
|
|
10934
|
-
props = _objectWithoutProperties(_ref, _excluded$1Y);
|
|
10935
|
-
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10936
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
10937
|
-
width: 24,
|
|
10938
|
-
height: 24,
|
|
10939
|
-
viewBox: "0 0 24 24",
|
|
10940
|
-
"data-testid": "SourceCodeIcon",
|
|
10941
|
-
fill: "none",
|
|
10942
|
-
stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
|
|
10943
|
-
strokeWidth: 2,
|
|
10944
|
-
strokeLinecap: "round",
|
|
10945
|
-
strokeLinejoin: "round",
|
|
10946
|
-
focusable: false,
|
|
10947
|
-
ref: ref
|
|
10948
|
-
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
10949
|
-
gradient: gradient
|
|
10950
|
-
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
10951
|
-
d: "M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h2.5"
|
|
10952
|
-
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
10953
|
-
d: "M10 9l-2 2l2 2"
|
|
10954
|
-
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
10955
|
-
d: "M14 9l2 2l-2 2"
|
|
10956
|
-
}));
|
|
10957
|
-
});
|
|
10958
|
-
SourceCodeIcon.displayName = "SourceCodeIcon";
|
|
10959
|
-
var SourceCodeIcon$1 = SourceCodeIcon;
|
|
10960
|
-
|
|
10961
11040
|
var _excluded$1X = ["gradient"];
|
|
10962
11041
|
|
|
10963
11042
|
/**
|
|
@@ -26186,6 +26265,8 @@
|
|
|
26186
26265
|
exports.GitBranchIcon = GitBranchIcon$1;
|
|
26187
26266
|
exports.GitCommitIcon = GitCommitIcon$1;
|
|
26188
26267
|
exports.GitPullRequestIcon = GitPullRequestIcon$1;
|
|
26268
|
+
exports.GitRepositoryConnectIcon = GitRepositoryConnectIcon$1;
|
|
26269
|
+
exports.GitRepositoryIcon = GitRepositoryIcon$1;
|
|
26189
26270
|
exports.GlobalAddButton = GlobalAddButton;
|
|
26190
26271
|
exports.GlobalStyle = GlobalStyle;
|
|
26191
26272
|
exports.GroupByIcon = GroupByIcon$1;
|
|
@@ -26346,7 +26427,6 @@
|
|
|
26346
26427
|
exports.SortIcon = SortIcon$1;
|
|
26347
26428
|
exports.SortListIcon = SortListIcon$1;
|
|
26348
26429
|
exports.SortSmallIcon = SortSmallIcon$1;
|
|
26349
|
-
exports.SourceCodeIcon = SourceCodeIcon$1;
|
|
26350
26430
|
exports.SparkIcon = SparkIcon$1;
|
|
26351
26431
|
exports.SpinnerLoader = SpinnerLoader;
|
|
26352
26432
|
exports.StarIcon = StarIcon$1;
|