@activecollab/components 2.0.329 → 2.0.331
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Icons/collection/ConnectionIcon.js +10 -4
- package/dist/cjs/components/Icons/collection/ConnectionIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/RoundedRectangleIcon.js +5 -2
- package/dist/cjs/components/Icons/collection/RoundedRectangleIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/StickyIcon.js +8 -2
- package/dist/cjs/components/Icons/collection/StickyIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/TriangleIcon.js +5 -2
- package/dist/cjs/components/Icons/collection/TriangleIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/index.js +28 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/ConnectionIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/ConnectionIcon.js +10 -4
- package/dist/esm/components/Icons/collection/ConnectionIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/RoundedRectangleIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/RoundedRectangleIcon.js +5 -2
- package/dist/esm/components/Icons/collection/RoundedRectangleIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/StickyIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/StickyIcon.js +8 -2
- package/dist/esm/components/Icons/collection/StickyIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/TriangleIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/TriangleIcon.js +5 -2
- package/dist/esm/components/Icons/collection/TriangleIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/index.d.ts +4 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +4 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +605 -412
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
})(["display:inline-flex;svg{margin:0 4px;}"]);
|
|
190
190
|
StyledButtonElement.displayName = "StyledButtonElement";
|
|
191
191
|
|
|
192
|
-
var _excluded$
|
|
192
|
+
var _excluded$58 = ["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$58);
|
|
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$57 = ["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$57);
|
|
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$56 = ["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$56);
|
|
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$55 = ["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$55);
|
|
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$54 = ["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$54);
|
|
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$53 = ["className"];
|
|
424
424
|
var ListSeparator = function ListSeparator(_ref) {
|
|
425
425
|
var className = _ref.className,
|
|
426
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
426
|
+
props = _objectWithoutProperties(_ref, _excluded$53);
|
|
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$52 = ["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$52);
|
|
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$51 = ["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$51);
|
|
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$50 = ["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$50);
|
|
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$4$ = ["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$4$);
|
|
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$4Z = ["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$4Z);
|
|
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$4Y = ["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$4Y);
|
|
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$4X = ["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$4X);
|
|
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$4W = ["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$4W);
|
|
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$4V = ["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$4V);
|
|
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$4U = ["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$4U);
|
|
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$4T = ["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$4T);
|
|
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$4S = ["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$4S);
|
|
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$4R = ["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$4R);
|
|
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$4Q = ["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$4Q);
|
|
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$4P = ["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$4P);
|
|
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$4O = ["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$4O);
|
|
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$4N = ["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$4N);
|
|
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$4M = ["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$4M);
|
|
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$4L = ["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$4L);
|
|
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$4K = ["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$4K);
|
|
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$4J = ["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$4J);
|
|
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$4I = ["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$4I);
|
|
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$4H = ["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$4H);
|
|
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$4G = ["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$4G);
|
|
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$4F = ["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$4F);
|
|
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$4E = ["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$4E);
|
|
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$4D = ["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$4D);
|
|
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$4C = ["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$4C);
|
|
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$4B = ["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$4B);
|
|
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$4A = ["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$4A);
|
|
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$4z = ["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$4z);
|
|
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$4y = ["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$4y);
|
|
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$4x = ["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$4x);
|
|
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$4w = ["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$4w);
|
|
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$4v = ["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$4v);
|
|
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$4u = ["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$4u);
|
|
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$4t = ["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$4t);
|
|
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$4s = ["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$4s);
|
|
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$4r = ["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$4r);
|
|
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$4q = ["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$4q);
|
|
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$4p = ["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$4p);
|
|
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$4o = ["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$4o);
|
|
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$4n = ["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$4n);
|
|
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$4m = ["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$4m);
|
|
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$4l = ["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$4l);
|
|
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$4k = ["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$4k);
|
|
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$4j = ["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$4j);
|
|
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$4i = ["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$4i);
|
|
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$4h = ["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$4h);
|
|
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$4g = ["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$4g);
|
|
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$4f = ["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$4f);
|
|
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$4e = ["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$4e);
|
|
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$4d = ["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$4d);
|
|
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$4c = ["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$4c);
|
|
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$4b = ["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$4b);
|
|
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$4a = ["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$4a);
|
|
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$49 = ["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$49);
|
|
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$48 = ["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$48);
|
|
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$47 = ["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$47);
|
|
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$46 = ["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$46);
|
|
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$45 = ["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$45);
|
|
4012
4012
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4013
4013
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4014
4014
|
width: 24,
|
|
@@ -4021,23 +4021,29 @@
|
|
|
4021
4021
|
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
4022
4022
|
gradient: gradient
|
|
4023
4023
|
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
4024
|
-
stroke: "
|
|
4024
|
+
stroke: "var(--color-theme-600)",
|
|
4025
4025
|
strokeLinecap: "round",
|
|
4026
4026
|
strokeLinejoin: "round",
|
|
4027
4027
|
strokeWidth: 2,
|
|
4028
|
-
d: "m15 14 5-5-5-5"
|
|
4028
|
+
d: "m15 14 5-5-5-5",
|
|
4029
|
+
style: {
|
|
4030
|
+
fill: "none"
|
|
4031
|
+
}
|
|
4029
4032
|
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
4030
|
-
stroke: "
|
|
4033
|
+
stroke: "var(--color-theme-600)",
|
|
4031
4034
|
strokeLinecap: "round",
|
|
4032
4035
|
strokeLinejoin: "round",
|
|
4033
4036
|
strokeWidth: 2,
|
|
4034
|
-
d: "M4 20v-7a4 4 0 0 1 4-4h12"
|
|
4037
|
+
d: "M4 20v-7a4 4 0 0 1 4-4h12",
|
|
4038
|
+
style: {
|
|
4039
|
+
fill: "none"
|
|
4040
|
+
}
|
|
4035
4041
|
}));
|
|
4036
4042
|
});
|
|
4037
4043
|
ConnectionIcon.displayName = "ConnectionIcon";
|
|
4038
4044
|
var ConnectionIcon$1 = ConnectionIcon;
|
|
4039
4045
|
|
|
4040
|
-
var _excluded$
|
|
4046
|
+
var _excluded$44 = ["gradient"];
|
|
4041
4047
|
|
|
4042
4048
|
/**
|
|
4043
4049
|
* @component CopyIcon
|
|
@@ -4067,7 +4073,7 @@
|
|
|
4067
4073
|
*/
|
|
4068
4074
|
var CopyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4069
4075
|
var gradient = _ref.gradient,
|
|
4070
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4076
|
+
props = _objectWithoutProperties(_ref, _excluded$44);
|
|
4071
4077
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4072
4078
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4073
4079
|
width: 24,
|
|
@@ -4087,7 +4093,7 @@
|
|
|
4087
4093
|
CopyIcon.displayName = "CopyIcon";
|
|
4088
4094
|
var CopyIcon$1 = CopyIcon;
|
|
4089
4095
|
|
|
4090
|
-
var _excluded$
|
|
4096
|
+
var _excluded$43 = ["gradient"];
|
|
4091
4097
|
|
|
4092
4098
|
/**
|
|
4093
4099
|
* @component CrownBlankIcon
|
|
@@ -4117,7 +4123,7 @@
|
|
|
4117
4123
|
*/
|
|
4118
4124
|
var CrownBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4119
4125
|
var gradient = _ref.gradient,
|
|
4120
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4126
|
+
props = _objectWithoutProperties(_ref, _excluded$43);
|
|
4121
4127
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4122
4128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4123
4129
|
width: 24,
|
|
@@ -4137,7 +4143,7 @@
|
|
|
4137
4143
|
CrownBlankIcon.displayName = "CrownBlankIcon";
|
|
4138
4144
|
var CrownBlankIcon$1 = CrownBlankIcon;
|
|
4139
4145
|
|
|
4140
|
-
var _excluded$
|
|
4146
|
+
var _excluded$42 = ["gradient"];
|
|
4141
4147
|
|
|
4142
4148
|
/**
|
|
4143
4149
|
* @component CrownSelectedIcon
|
|
@@ -4167,7 +4173,7 @@
|
|
|
4167
4173
|
*/
|
|
4168
4174
|
var CrownSelectedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4169
4175
|
var gradient = _ref.gradient,
|
|
4170
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4176
|
+
props = _objectWithoutProperties(_ref, _excluded$42);
|
|
4171
4177
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4172
4178
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4173
4179
|
width: 24,
|
|
@@ -4187,7 +4193,7 @@
|
|
|
4187
4193
|
CrownSelectedIcon.displayName = "CrownSelectedIcon";
|
|
4188
4194
|
var CrownSelectedIcon$1 = CrownSelectedIcon;
|
|
4189
4195
|
|
|
4190
|
-
var _excluded$
|
|
4196
|
+
var _excluded$41 = ["gradient"];
|
|
4191
4197
|
|
|
4192
4198
|
/**
|
|
4193
4199
|
* @component DependencySmallIcon
|
|
@@ -4217,7 +4223,7 @@
|
|
|
4217
4223
|
*/
|
|
4218
4224
|
var DependencySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4219
4225
|
var gradient = _ref.gradient,
|
|
4220
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4226
|
+
props = _objectWithoutProperties(_ref, _excluded$41);
|
|
4221
4227
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4222
4228
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4223
4229
|
width: 12,
|
|
@@ -4237,7 +4243,7 @@
|
|
|
4237
4243
|
DependencySmallIcon.displayName = "DependencySmallIcon";
|
|
4238
4244
|
var DependencySmallIcon$1 = DependencySmallIcon;
|
|
4239
4245
|
|
|
4240
|
-
var _excluded$
|
|
4246
|
+
var _excluded$40 = ["gradient"];
|
|
4241
4247
|
|
|
4242
4248
|
/**
|
|
4243
4249
|
* @component DependencyIcon
|
|
@@ -4267,7 +4273,7 @@
|
|
|
4267
4273
|
*/
|
|
4268
4274
|
var DependencyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4269
4275
|
var gradient = _ref.gradient,
|
|
4270
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4276
|
+
props = _objectWithoutProperties(_ref, _excluded$40);
|
|
4271
4277
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4272
4278
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4273
4279
|
width: 24,
|
|
@@ -4287,7 +4293,7 @@
|
|
|
4287
4293
|
DependencyIcon.displayName = "DependencyIcon";
|
|
4288
4294
|
var DependencyIcon$1 = DependencyIcon;
|
|
4289
4295
|
|
|
4290
|
-
var _excluded$
|
|
4296
|
+
var _excluded$3$ = ["gradient"];
|
|
4291
4297
|
|
|
4292
4298
|
/**
|
|
4293
4299
|
* @component DescriptionSmallIcon
|
|
@@ -4317,7 +4323,7 @@
|
|
|
4317
4323
|
*/
|
|
4318
4324
|
var DescriptionSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4319
4325
|
var gradient = _ref.gradient,
|
|
4320
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4326
|
+
props = _objectWithoutProperties(_ref, _excluded$3$);
|
|
4321
4327
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4322
4328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4323
4329
|
width: 18,
|
|
@@ -4338,7 +4344,7 @@
|
|
|
4338
4344
|
DescriptionSmallIcon.displayName = "DescriptionSmallIcon";
|
|
4339
4345
|
var DescriptionSmallIcon$1 = DescriptionSmallIcon;
|
|
4340
4346
|
|
|
4341
|
-
var _excluded$
|
|
4347
|
+
var _excluded$3_ = ["gradient"];
|
|
4342
4348
|
|
|
4343
4349
|
/**
|
|
4344
4350
|
* @component DescriptionIcon
|
|
@@ -4368,7 +4374,7 @@
|
|
|
4368
4374
|
*/
|
|
4369
4375
|
var DescriptionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4370
4376
|
var gradient = _ref.gradient,
|
|
4371
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4377
|
+
props = _objectWithoutProperties(_ref, _excluded$3_);
|
|
4372
4378
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4373
4379
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4374
4380
|
width: 24,
|
|
@@ -4388,7 +4394,7 @@
|
|
|
4388
4394
|
DescriptionIcon.displayName = "DescriptionIcon";
|
|
4389
4395
|
var DescriptionIcon$1 = DescriptionIcon;
|
|
4390
4396
|
|
|
4391
|
-
var _excluded$
|
|
4397
|
+
var _excluded$3Z = ["gradient"];
|
|
4392
4398
|
|
|
4393
4399
|
/**
|
|
4394
4400
|
* @component DiscussionAddIcon
|
|
@@ -4418,7 +4424,7 @@
|
|
|
4418
4424
|
*/
|
|
4419
4425
|
var DiscussionAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4420
4426
|
var gradient = _ref.gradient,
|
|
4421
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4427
|
+
props = _objectWithoutProperties(_ref, _excluded$3Z);
|
|
4422
4428
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4423
4429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4424
4430
|
width: 24,
|
|
@@ -4438,7 +4444,7 @@
|
|
|
4438
4444
|
DiscussionAddIcon.displayName = "DiscussionAddIcon";
|
|
4439
4445
|
var DiscussionAddIcon$1 = DiscussionAddIcon;
|
|
4440
4446
|
|
|
4441
|
-
var _excluded$
|
|
4447
|
+
var _excluded$3Y = ["gradient"];
|
|
4442
4448
|
|
|
4443
4449
|
/**
|
|
4444
4450
|
* @component DiscussionIcon
|
|
@@ -4468,7 +4474,7 @@
|
|
|
4468
4474
|
*/
|
|
4469
4475
|
var DiscussionIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4470
4476
|
var gradient = _ref.gradient,
|
|
4471
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4477
|
+
props = _objectWithoutProperties(_ref, _excluded$3Y);
|
|
4472
4478
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4473
4479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4474
4480
|
width: 24,
|
|
@@ -4489,7 +4495,7 @@
|
|
|
4489
4495
|
DiscussionIcon.displayName = "DiscussionIcon";
|
|
4490
4496
|
var DiscussionIcon$1 = DiscussionIcon;
|
|
4491
4497
|
|
|
4492
|
-
var _excluded$
|
|
4498
|
+
var _excluded$3X = ["gradient"];
|
|
4493
4499
|
|
|
4494
4500
|
/**
|
|
4495
4501
|
* @component DollarCheckmarkSmallIcon
|
|
@@ -4519,7 +4525,7 @@
|
|
|
4519
4525
|
*/
|
|
4520
4526
|
var DollarCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4521
4527
|
var gradient = _ref.gradient,
|
|
4522
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4528
|
+
props = _objectWithoutProperties(_ref, _excluded$3X);
|
|
4523
4529
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4524
4530
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4525
4531
|
width: 12,
|
|
@@ -4539,7 +4545,7 @@
|
|
|
4539
4545
|
DollarCheckmarkSmallIcon.displayName = "DollarCheckmarkSmallIcon";
|
|
4540
4546
|
var DollarCheckmarkSmallIcon$1 = DollarCheckmarkSmallIcon;
|
|
4541
4547
|
|
|
4542
|
-
var _excluded$
|
|
4548
|
+
var _excluded$3W = ["gradient"];
|
|
4543
4549
|
|
|
4544
4550
|
/**
|
|
4545
4551
|
* @component DollarCheckmarkIcon
|
|
@@ -4569,7 +4575,7 @@
|
|
|
4569
4575
|
*/
|
|
4570
4576
|
var DollarCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4571
4577
|
var gradient = _ref.gradient,
|
|
4572
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4578
|
+
props = _objectWithoutProperties(_ref, _excluded$3W);
|
|
4573
4579
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4574
4580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4575
4581
|
width: 24,
|
|
@@ -4589,7 +4595,7 @@
|
|
|
4589
4595
|
DollarCheckmarkIcon.displayName = "DollarCheckmarkIcon";
|
|
4590
4596
|
var DollarCheckmarkIcon$1 = DollarCheckmarkIcon;
|
|
4591
4597
|
|
|
4592
|
-
var _excluded$
|
|
4598
|
+
var _excluded$3V = ["gradient"];
|
|
4593
4599
|
|
|
4594
4600
|
/**
|
|
4595
4601
|
* @component DollarClockSmallIcon
|
|
@@ -4619,7 +4625,7 @@
|
|
|
4619
4625
|
*/
|
|
4620
4626
|
var DollarClockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4621
4627
|
var gradient = _ref.gradient,
|
|
4622
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4628
|
+
props = _objectWithoutProperties(_ref, _excluded$3V);
|
|
4623
4629
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4624
4630
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4625
4631
|
width: 12,
|
|
@@ -4639,7 +4645,7 @@
|
|
|
4639
4645
|
DollarClockSmallIcon.displayName = "DollarClockSmallIcon";
|
|
4640
4646
|
var DollarClockSmallIcon$1 = DollarClockSmallIcon;
|
|
4641
4647
|
|
|
4642
|
-
var _excluded$
|
|
4648
|
+
var _excluded$3U = ["gradient"];
|
|
4643
4649
|
|
|
4644
4650
|
/**
|
|
4645
4651
|
* @component DollarClockIcon
|
|
@@ -4669,7 +4675,7 @@
|
|
|
4669
4675
|
*/
|
|
4670
4676
|
var DollarClockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4671
4677
|
var gradient = _ref.gradient,
|
|
4672
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4678
|
+
props = _objectWithoutProperties(_ref, _excluded$3U);
|
|
4673
4679
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4674
4680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4675
4681
|
width: 24,
|
|
@@ -4689,7 +4695,7 @@
|
|
|
4689
4695
|
DollarClockIcon.displayName = "DollarClockIcon";
|
|
4690
4696
|
var DollarClockIcon$1 = DollarClockIcon;
|
|
4691
4697
|
|
|
4692
|
-
var _excluded$
|
|
4698
|
+
var _excluded$3T = ["gradient"];
|
|
4693
4699
|
|
|
4694
4700
|
/**
|
|
4695
4701
|
* @component DollarDocumentPlusIcon
|
|
@@ -4719,7 +4725,7 @@
|
|
|
4719
4725
|
*/
|
|
4720
4726
|
var DollarDocumentPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4721
4727
|
var gradient = _ref.gradient,
|
|
4722
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4728
|
+
props = _objectWithoutProperties(_ref, _excluded$3T);
|
|
4723
4729
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4724
4730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4725
4731
|
width: 24,
|
|
@@ -4739,7 +4745,7 @@
|
|
|
4739
4745
|
DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
|
|
4740
4746
|
var DollarDocumentPlusIcon$1 = DollarDocumentPlusIcon;
|
|
4741
4747
|
|
|
4742
|
-
var _excluded$
|
|
4748
|
+
var _excluded$3S = ["gradient"];
|
|
4743
4749
|
|
|
4744
4750
|
/**
|
|
4745
4751
|
* @component DollarDocumentIcon
|
|
@@ -4769,7 +4775,7 @@
|
|
|
4769
4775
|
*/
|
|
4770
4776
|
var DollarDocumentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4771
4777
|
var gradient = _ref.gradient,
|
|
4772
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4778
|
+
props = _objectWithoutProperties(_ref, _excluded$3S);
|
|
4773
4779
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4774
4780
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4775
4781
|
width: 24,
|
|
@@ -4790,7 +4796,7 @@
|
|
|
4790
4796
|
DollarDocumentIcon.displayName = "DollarDocumentIcon";
|
|
4791
4797
|
var DollarDocumentIcon$1 = DollarDocumentIcon;
|
|
4792
4798
|
|
|
4793
|
-
var _excluded$
|
|
4799
|
+
var _excluded$3R = ["gradient"];
|
|
4794
4800
|
|
|
4795
4801
|
/**
|
|
4796
4802
|
* @component DollarOffSmallIcon
|
|
@@ -4820,7 +4826,7 @@
|
|
|
4820
4826
|
*/
|
|
4821
4827
|
var DollarOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4822
4828
|
var gradient = _ref.gradient,
|
|
4823
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4829
|
+
props = _objectWithoutProperties(_ref, _excluded$3R);
|
|
4824
4830
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4825
4831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4826
4832
|
width: 12,
|
|
@@ -4840,7 +4846,7 @@
|
|
|
4840
4846
|
DollarOffSmallIcon.displayName = "DollarOffSmallIcon";
|
|
4841
4847
|
var DollarOffSmallIcon$1 = DollarOffSmallIcon;
|
|
4842
4848
|
|
|
4843
|
-
var _excluded$
|
|
4849
|
+
var _excluded$3Q = ["gradient"];
|
|
4844
4850
|
|
|
4845
4851
|
/**
|
|
4846
4852
|
* @component DollarOffIcon
|
|
@@ -4870,7 +4876,7 @@
|
|
|
4870
4876
|
*/
|
|
4871
4877
|
var DollarOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4872
4878
|
var gradient = _ref.gradient,
|
|
4873
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4879
|
+
props = _objectWithoutProperties(_ref, _excluded$3Q);
|
|
4874
4880
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4875
4881
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4876
4882
|
width: 24,
|
|
@@ -4890,7 +4896,7 @@
|
|
|
4890
4896
|
DollarOffIcon.displayName = "DollarOffIcon";
|
|
4891
4897
|
var DollarOffIcon$1 = DollarOffIcon;
|
|
4892
4898
|
|
|
4893
|
-
var _excluded$
|
|
4899
|
+
var _excluded$3P = ["gradient"];
|
|
4894
4900
|
|
|
4895
4901
|
/**
|
|
4896
4902
|
* @component DollarSmallIcon
|
|
@@ -4920,7 +4926,7 @@
|
|
|
4920
4926
|
*/
|
|
4921
4927
|
var DollarSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4922
4928
|
var gradient = _ref.gradient,
|
|
4923
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4929
|
+
props = _objectWithoutProperties(_ref, _excluded$3P);
|
|
4924
4930
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4925
4931
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4926
4932
|
width: 12,
|
|
@@ -4940,7 +4946,7 @@
|
|
|
4940
4946
|
DollarSmallIcon.displayName = "DollarSmallIcon";
|
|
4941
4947
|
var DollarSmallIcon$1 = DollarSmallIcon;
|
|
4942
4948
|
|
|
4943
|
-
var _excluded$
|
|
4949
|
+
var _excluded$3O = ["gradient"];
|
|
4944
4950
|
|
|
4945
4951
|
/**
|
|
4946
4952
|
* @component DollarIcon
|
|
@@ -4970,7 +4976,7 @@
|
|
|
4970
4976
|
*/
|
|
4971
4977
|
var DollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4972
4978
|
var gradient = _ref.gradient,
|
|
4973
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4979
|
+
props = _objectWithoutProperties(_ref, _excluded$3O);
|
|
4974
4980
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4975
4981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4976
4982
|
width: 24,
|
|
@@ -4990,7 +4996,7 @@
|
|
|
4990
4996
|
DollarIcon.displayName = "DollarIcon";
|
|
4991
4997
|
var DollarIcon$1 = DollarIcon;
|
|
4992
4998
|
|
|
4993
|
-
var _excluded$
|
|
4999
|
+
var _excluded$3N = ["gradient"];
|
|
4994
5000
|
|
|
4995
5001
|
/**
|
|
4996
5002
|
* @component DownloadIcon
|
|
@@ -5020,7 +5026,7 @@
|
|
|
5020
5026
|
*/
|
|
5021
5027
|
var DownloadIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5022
5028
|
var gradient = _ref.gradient,
|
|
5023
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5029
|
+
props = _objectWithoutProperties(_ref, _excluded$3N);
|
|
5024
5030
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5025
5031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5026
5032
|
width: 24,
|
|
@@ -5040,7 +5046,7 @@
|
|
|
5040
5046
|
DownloadIcon.displayName = "DownloadIcon";
|
|
5041
5047
|
var DownloadIcon$1 = DownloadIcon;
|
|
5042
5048
|
|
|
5043
|
-
var _excluded$
|
|
5049
|
+
var _excluded$3M = ["gradient"];
|
|
5044
5050
|
|
|
5045
5051
|
/**
|
|
5046
5052
|
* @component DrawIcon
|
|
@@ -5070,7 +5076,7 @@
|
|
|
5070
5076
|
*/
|
|
5071
5077
|
var DrawIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5072
5078
|
var gradient = _ref.gradient,
|
|
5073
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5079
|
+
props = _objectWithoutProperties(_ref, _excluded$3M);
|
|
5074
5080
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5075
5081
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5076
5082
|
width: 24,
|
|
@@ -5091,7 +5097,7 @@
|
|
|
5091
5097
|
DrawIcon.displayName = "DrawIcon";
|
|
5092
5098
|
var DrawIcon$1 = DrawIcon;
|
|
5093
5099
|
|
|
5094
|
-
var _excluded$
|
|
5100
|
+
var _excluded$3L = ["gradient"];
|
|
5095
5101
|
|
|
5096
5102
|
/**
|
|
5097
5103
|
* @component DriveIcon
|
|
@@ -5121,7 +5127,7 @@
|
|
|
5121
5127
|
*/
|
|
5122
5128
|
var DriveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5123
5129
|
var gradient = _ref.gradient,
|
|
5124
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5130
|
+
props = _objectWithoutProperties(_ref, _excluded$3L);
|
|
5125
5131
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5126
5132
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5127
5133
|
width: 24,
|
|
@@ -5141,7 +5147,7 @@
|
|
|
5141
5147
|
DriveIcon.displayName = "DriveIcon";
|
|
5142
5148
|
var DriveIcon$1 = DriveIcon;
|
|
5143
5149
|
|
|
5144
|
-
var _excluded$
|
|
5150
|
+
var _excluded$3K = ["gradient"];
|
|
5145
5151
|
|
|
5146
5152
|
/**
|
|
5147
5153
|
* @component DropboxIcon
|
|
@@ -5171,7 +5177,7 @@
|
|
|
5171
5177
|
*/
|
|
5172
5178
|
var DropboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5173
5179
|
var gradient = _ref.gradient,
|
|
5174
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5180
|
+
props = _objectWithoutProperties(_ref, _excluded$3K);
|
|
5175
5181
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5176
5182
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5177
5183
|
width: 24,
|
|
@@ -5191,7 +5197,7 @@
|
|
|
5191
5197
|
DropboxIcon.displayName = "DropboxIcon";
|
|
5192
5198
|
var DropboxIcon$1 = DropboxIcon;
|
|
5193
5199
|
|
|
5194
|
-
var _excluded$
|
|
5200
|
+
var _excluded$3J = ["gradient"];
|
|
5195
5201
|
|
|
5196
5202
|
/**
|
|
5197
5203
|
* @component DuplicateIcon
|
|
@@ -5221,7 +5227,7 @@
|
|
|
5221
5227
|
*/
|
|
5222
5228
|
var DuplicateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5223
5229
|
var gradient = _ref.gradient,
|
|
5224
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5230
|
+
props = _objectWithoutProperties(_ref, _excluded$3J);
|
|
5225
5231
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5226
5232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5227
5233
|
width: 24,
|
|
@@ -5241,7 +5247,7 @@
|
|
|
5241
5247
|
DuplicateIcon.displayName = "DuplicateIcon";
|
|
5242
5248
|
var DuplicateIcon$1 = DuplicateIcon;
|
|
5243
5249
|
|
|
5244
|
-
var _excluded$
|
|
5250
|
+
var _excluded$3I = ["gradient"];
|
|
5245
5251
|
|
|
5246
5252
|
/**
|
|
5247
5253
|
* @component EditMultipleIcon
|
|
@@ -5271,7 +5277,7 @@
|
|
|
5271
5277
|
*/
|
|
5272
5278
|
var EditMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5273
5279
|
var gradient = _ref.gradient,
|
|
5274
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5280
|
+
props = _objectWithoutProperties(_ref, _excluded$3I);
|
|
5275
5281
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5276
5282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5277
5283
|
width: 24,
|
|
@@ -5291,7 +5297,7 @@
|
|
|
5291
5297
|
EditMultipleIcon.displayName = "EditMultipleIcon";
|
|
5292
5298
|
var EditMultipleIcon$1 = EditMultipleIcon;
|
|
5293
5299
|
|
|
5294
|
-
var _excluded$
|
|
5300
|
+
var _excluded$3H = ["gradient"];
|
|
5295
5301
|
|
|
5296
5302
|
/**
|
|
5297
5303
|
* @component EditIcon
|
|
@@ -5321,7 +5327,7 @@
|
|
|
5321
5327
|
*/
|
|
5322
5328
|
var EditIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5323
5329
|
var gradient = _ref.gradient,
|
|
5324
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5330
|
+
props = _objectWithoutProperties(_ref, _excluded$3H);
|
|
5325
5331
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5326
5332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5327
5333
|
width: 24,
|
|
@@ -5341,7 +5347,7 @@
|
|
|
5341
5347
|
EditIcon.displayName = "EditIcon";
|
|
5342
5348
|
var EditIcon$1 = EditIcon;
|
|
5343
5349
|
|
|
5344
|
-
var _excluded$
|
|
5350
|
+
var _excluded$3G = ["gradient"];
|
|
5345
5351
|
|
|
5346
5352
|
/**
|
|
5347
5353
|
* @component EmojiIcon
|
|
@@ -5371,7 +5377,7 @@
|
|
|
5371
5377
|
*/
|
|
5372
5378
|
var EmojiIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5373
5379
|
var gradient = _ref.gradient,
|
|
5374
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5380
|
+
props = _objectWithoutProperties(_ref, _excluded$3G);
|
|
5375
5381
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5376
5382
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5377
5383
|
width: 24,
|
|
@@ -5391,7 +5397,7 @@
|
|
|
5391
5397
|
EmojiIcon.displayName = "EmojiIcon";
|
|
5392
5398
|
var EmojiIcon$1 = EmojiIcon;
|
|
5393
5399
|
|
|
5394
|
-
var _excluded$
|
|
5400
|
+
var _excluded$3F = ["gradient"];
|
|
5395
5401
|
|
|
5396
5402
|
/**
|
|
5397
5403
|
* @component EstimatePlusIcon
|
|
@@ -5421,7 +5427,7 @@
|
|
|
5421
5427
|
*/
|
|
5422
5428
|
var EstimatePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5423
5429
|
var gradient = _ref.gradient,
|
|
5424
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5430
|
+
props = _objectWithoutProperties(_ref, _excluded$3F);
|
|
5425
5431
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5426
5432
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5427
5433
|
width: 24,
|
|
@@ -5442,7 +5448,7 @@
|
|
|
5442
5448
|
EstimatePlusIcon.displayName = "EstimatePlusIcon";
|
|
5443
5449
|
var EstimatePlusIcon$1 = EstimatePlusIcon;
|
|
5444
5450
|
|
|
5445
|
-
var _excluded$
|
|
5451
|
+
var _excluded$3E = ["gradient"];
|
|
5446
5452
|
|
|
5447
5453
|
/**
|
|
5448
5454
|
* @component EstimatesIcon
|
|
@@ -5472,7 +5478,7 @@
|
|
|
5472
5478
|
*/
|
|
5473
5479
|
var EstimatesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5474
5480
|
var gradient = _ref.gradient,
|
|
5475
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5481
|
+
props = _objectWithoutProperties(_ref, _excluded$3E);
|
|
5476
5482
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5477
5483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5478
5484
|
width: 24,
|
|
@@ -5496,7 +5502,7 @@
|
|
|
5496
5502
|
EstimatesIcon.displayName = "EstimatesIcon";
|
|
5497
5503
|
var EstimatesIcon$1 = EstimatesIcon;
|
|
5498
5504
|
|
|
5499
|
-
var _excluded$
|
|
5505
|
+
var _excluded$3D = ["gradient"];
|
|
5500
5506
|
|
|
5501
5507
|
/**
|
|
5502
5508
|
* @component ExpandAllIcon
|
|
@@ -5526,7 +5532,7 @@
|
|
|
5526
5532
|
*/
|
|
5527
5533
|
var ExpandAllIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5528
5534
|
var gradient = _ref.gradient,
|
|
5529
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5535
|
+
props = _objectWithoutProperties(_ref, _excluded$3D);
|
|
5530
5536
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5531
5537
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5532
5538
|
width: 24,
|
|
@@ -5546,7 +5552,7 @@
|
|
|
5546
5552
|
ExpandAllIcon.displayName = "ExpandAllIcon";
|
|
5547
5553
|
var ExpandAllIcon$1 = ExpandAllIcon;
|
|
5548
5554
|
|
|
5549
|
-
var _excluded$
|
|
5555
|
+
var _excluded$3C = ["gradient"];
|
|
5550
5556
|
|
|
5551
5557
|
/**
|
|
5552
5558
|
* @component ExpenseAddIcon
|
|
@@ -5576,7 +5582,7 @@
|
|
|
5576
5582
|
*/
|
|
5577
5583
|
var ExpenseAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5578
5584
|
var gradient = _ref.gradient,
|
|
5579
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5585
|
+
props = _objectWithoutProperties(_ref, _excluded$3C);
|
|
5580
5586
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5581
5587
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5582
5588
|
width: 24,
|
|
@@ -5596,7 +5602,7 @@
|
|
|
5596
5602
|
ExpenseAddIcon.displayName = "ExpenseAddIcon";
|
|
5597
5603
|
var ExpenseAddIcon$1 = ExpenseAddIcon;
|
|
5598
5604
|
|
|
5599
|
-
var _excluded$
|
|
5605
|
+
var _excluded$3B = ["gradient"];
|
|
5600
5606
|
|
|
5601
5607
|
/**
|
|
5602
5608
|
* @component ExpensePlusIcon
|
|
@@ -5626,7 +5632,7 @@
|
|
|
5626
5632
|
*/
|
|
5627
5633
|
var ExpensePlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5628
5634
|
var gradient = _ref.gradient,
|
|
5629
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5635
|
+
props = _objectWithoutProperties(_ref, _excluded$3B);
|
|
5630
5636
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5631
5637
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5632
5638
|
width: 24,
|
|
@@ -5648,7 +5654,7 @@
|
|
|
5648
5654
|
ExpensePlusIcon.displayName = "ExpensePlusIcon";
|
|
5649
5655
|
var ExpensePlusIcon$1 = ExpensePlusIcon;
|
|
5650
5656
|
|
|
5651
|
-
var _excluded$
|
|
5657
|
+
var _excluded$3A = ["gradient"];
|
|
5652
5658
|
|
|
5653
5659
|
/**
|
|
5654
5660
|
* @component EyeOffSmallIcon
|
|
@@ -5678,7 +5684,7 @@
|
|
|
5678
5684
|
*/
|
|
5679
5685
|
var EyeOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5680
5686
|
var gradient = _ref.gradient,
|
|
5681
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5687
|
+
props = _objectWithoutProperties(_ref, _excluded$3A);
|
|
5682
5688
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5683
5689
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5684
5690
|
width: 12,
|
|
@@ -5698,7 +5704,7 @@
|
|
|
5698
5704
|
EyeOffSmallIcon.displayName = "EyeOffSmallIcon";
|
|
5699
5705
|
var EyeOffSmallIcon$1 = EyeOffSmallIcon;
|
|
5700
5706
|
|
|
5701
|
-
var _excluded$
|
|
5707
|
+
var _excluded$3z = ["gradient"];
|
|
5702
5708
|
|
|
5703
5709
|
/**
|
|
5704
5710
|
* @component EyeOffIcon
|
|
@@ -5728,7 +5734,7 @@
|
|
|
5728
5734
|
*/
|
|
5729
5735
|
var EyeOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5730
5736
|
var gradient = _ref.gradient,
|
|
5731
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5737
|
+
props = _objectWithoutProperties(_ref, _excluded$3z);
|
|
5732
5738
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5733
5739
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5734
5740
|
width: 24,
|
|
@@ -5748,7 +5754,7 @@
|
|
|
5748
5754
|
EyeOffIcon.displayName = "EyeOffIcon";
|
|
5749
5755
|
var EyeOffIcon$1 = EyeOffIcon;
|
|
5750
5756
|
|
|
5751
|
-
var _excluded$
|
|
5757
|
+
var _excluded$3y = ["gradient"];
|
|
5752
5758
|
|
|
5753
5759
|
/**
|
|
5754
5760
|
* @component EyeSmallIcon
|
|
@@ -5778,7 +5784,7 @@
|
|
|
5778
5784
|
*/
|
|
5779
5785
|
var EyeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5780
5786
|
var gradient = _ref.gradient,
|
|
5781
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5787
|
+
props = _objectWithoutProperties(_ref, _excluded$3y);
|
|
5782
5788
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5783
5789
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5784
5790
|
width: 12,
|
|
@@ -5798,7 +5804,7 @@
|
|
|
5798
5804
|
EyeSmallIcon.displayName = "EyeSmallIcon";
|
|
5799
5805
|
var EyeSmallIcon$1 = EyeSmallIcon;
|
|
5800
5806
|
|
|
5801
|
-
var _excluded$
|
|
5807
|
+
var _excluded$3x = ["gradient"];
|
|
5802
5808
|
|
|
5803
5809
|
/**
|
|
5804
5810
|
* @component EyeIcon
|
|
@@ -5828,7 +5834,7 @@
|
|
|
5828
5834
|
*/
|
|
5829
5835
|
var EyeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5830
5836
|
var gradient = _ref.gradient,
|
|
5831
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5837
|
+
props = _objectWithoutProperties(_ref, _excluded$3x);
|
|
5832
5838
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5833
5839
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5834
5840
|
width: 24,
|
|
@@ -5848,7 +5854,7 @@
|
|
|
5848
5854
|
EyeIcon.displayName = "EyeIcon";
|
|
5849
5855
|
var EyeIcon$1 = EyeIcon;
|
|
5850
5856
|
|
|
5851
|
-
var _excluded$
|
|
5857
|
+
var _excluded$3w = ["gradient"];
|
|
5852
5858
|
|
|
5853
5859
|
/**
|
|
5854
5860
|
* @component FilterIcon
|
|
@@ -5878,7 +5884,7 @@
|
|
|
5878
5884
|
*/
|
|
5879
5885
|
var FilterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5880
5886
|
var gradient = _ref.gradient,
|
|
5881
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5887
|
+
props = _objectWithoutProperties(_ref, _excluded$3w);
|
|
5882
5888
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5883
5889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5884
5890
|
width: 24,
|
|
@@ -5898,7 +5904,7 @@
|
|
|
5898
5904
|
FilterIcon.displayName = "FilterIcon";
|
|
5899
5905
|
var FilterIcon$1 = FilterIcon;
|
|
5900
5906
|
|
|
5901
|
-
var _excluded$
|
|
5907
|
+
var _excluded$3v = ["gradient"];
|
|
5902
5908
|
|
|
5903
5909
|
/**
|
|
5904
5910
|
* @component FolderMoveIcon
|
|
@@ -5928,7 +5934,7 @@
|
|
|
5928
5934
|
*/
|
|
5929
5935
|
var FolderMoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5930
5936
|
var gradient = _ref.gradient,
|
|
5931
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5937
|
+
props = _objectWithoutProperties(_ref, _excluded$3v);
|
|
5932
5938
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5933
5939
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5934
5940
|
width: 24,
|
|
@@ -5948,7 +5954,7 @@
|
|
|
5948
5954
|
FolderMoveIcon.displayName = "FolderMoveIcon";
|
|
5949
5955
|
var FolderMoveIcon$1 = FolderMoveIcon;
|
|
5950
5956
|
|
|
5951
|
-
var _excluded$
|
|
5957
|
+
var _excluded$3u = ["gradient"];
|
|
5952
5958
|
|
|
5953
5959
|
/**
|
|
5954
5960
|
* @component FolderOutlineIcon
|
|
@@ -5978,7 +5984,7 @@
|
|
|
5978
5984
|
*/
|
|
5979
5985
|
var FolderOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
5980
5986
|
var gradient = _ref.gradient,
|
|
5981
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5987
|
+
props = _objectWithoutProperties(_ref, _excluded$3u);
|
|
5982
5988
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
5983
5989
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5984
5990
|
width: 24,
|
|
@@ -5998,7 +6004,7 @@
|
|
|
5998
6004
|
FolderOutlineIcon.displayName = "FolderOutlineIcon";
|
|
5999
6005
|
var FolderOutlineIcon$1 = FolderOutlineIcon;
|
|
6000
6006
|
|
|
6001
|
-
var _excluded$
|
|
6007
|
+
var _excluded$3t = ["gradient"];
|
|
6002
6008
|
|
|
6003
6009
|
/**
|
|
6004
6010
|
* @component GiftIcon
|
|
@@ -6028,7 +6034,7 @@
|
|
|
6028
6034
|
*/
|
|
6029
6035
|
var GiftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6030
6036
|
var gradient = _ref.gradient,
|
|
6031
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6037
|
+
props = _objectWithoutProperties(_ref, _excluded$3t);
|
|
6032
6038
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6033
6039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6034
6040
|
width: 24,
|
|
@@ -6049,7 +6055,137 @@
|
|
|
6049
6055
|
GiftIcon.displayName = "GiftIcon";
|
|
6050
6056
|
var GiftIcon$1 = GiftIcon;
|
|
6051
6057
|
|
|
6052
|
-
var _excluded$
|
|
6058
|
+
var _excluded$3s = ["gradient"];
|
|
6059
|
+
|
|
6060
|
+
/**
|
|
6061
|
+
* @component GitBranchIcon
|
|
6062
|
+
* @description
|
|
6063
|
+
* Outline git-branch glyph for source-control signifiers.
|
|
6064
|
+
*
|
|
6065
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
|
|
6066
|
+
*
|
|
6067
|
+
* @see https://design.activecollab.com/docs/foundations/icons
|
|
6068
|
+
*/
|
|
6069
|
+
var GitBranchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6070
|
+
var gradient = _ref.gradient,
|
|
6071
|
+
props = _objectWithoutProperties(_ref, _excluded$3s);
|
|
6072
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6073
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6074
|
+
width: 24,
|
|
6075
|
+
height: 24,
|
|
6076
|
+
viewBox: "0 0 24 24",
|
|
6077
|
+
"data-testid": "GitBranchIcon",
|
|
6078
|
+
fill: "none",
|
|
6079
|
+
stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
|
|
6080
|
+
strokeWidth: 2,
|
|
6081
|
+
strokeLinecap: "round",
|
|
6082
|
+
strokeLinejoin: "round",
|
|
6083
|
+
focusable: false,
|
|
6084
|
+
ref: ref
|
|
6085
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
6086
|
+
gradient: gradient
|
|
6087
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6088
|
+
d: "M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
|
|
6089
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6090
|
+
d: "M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
|
|
6091
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6092
|
+
d: "M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
|
|
6093
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6094
|
+
d: "M7 8v8"
|
|
6095
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6096
|
+
d: "M9 18h4a4 4 0 0 0 4 -4v-6"
|
|
6097
|
+
}));
|
|
6098
|
+
});
|
|
6099
|
+
GitBranchIcon.displayName = "GitBranchIcon";
|
|
6100
|
+
var GitBranchIcon$1 = GitBranchIcon;
|
|
6101
|
+
|
|
6102
|
+
var _excluded$3r = ["gradient"];
|
|
6103
|
+
|
|
6104
|
+
/**
|
|
6105
|
+
* @component GitCommitIcon
|
|
6106
|
+
* @description
|
|
6107
|
+
* Outline git-commit glyph (a node on a line) for source-control signifiers.
|
|
6108
|
+
*
|
|
6109
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
|
|
6110
|
+
*
|
|
6111
|
+
* @see https://design.activecollab.com/docs/foundations/icons
|
|
6112
|
+
*/
|
|
6113
|
+
var GitCommitIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6114
|
+
var gradient = _ref.gradient,
|
|
6115
|
+
props = _objectWithoutProperties(_ref, _excluded$3r);
|
|
6116
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6117
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6118
|
+
width: 24,
|
|
6119
|
+
height: 24,
|
|
6120
|
+
viewBox: "0 0 24 24",
|
|
6121
|
+
"data-testid": "GitCommitIcon",
|
|
6122
|
+
fill: "none",
|
|
6123
|
+
stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
|
|
6124
|
+
strokeWidth: 2,
|
|
6125
|
+
strokeLinecap: "round",
|
|
6126
|
+
strokeLinejoin: "round",
|
|
6127
|
+
focusable: false,
|
|
6128
|
+
ref: ref
|
|
6129
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
6130
|
+
gradient: gradient
|
|
6131
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6132
|
+
d: "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"
|
|
6133
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6134
|
+
d: "M3 12h6"
|
|
6135
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6136
|
+
d: "M15 12h6"
|
|
6137
|
+
}));
|
|
6138
|
+
});
|
|
6139
|
+
GitCommitIcon.displayName = "GitCommitIcon";
|
|
6140
|
+
var GitCommitIcon$1 = GitCommitIcon;
|
|
6141
|
+
|
|
6142
|
+
var _excluded$3q = ["gradient"];
|
|
6143
|
+
|
|
6144
|
+
/**
|
|
6145
|
+
* @component GitPullRequestIcon
|
|
6146
|
+
* @description
|
|
6147
|
+
* Outline git pull-request glyph for source-control signifiers.
|
|
6148
|
+
*
|
|
6149
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
|
|
6150
|
+
*
|
|
6151
|
+
* @see https://design.activecollab.com/docs/foundations/icons
|
|
6152
|
+
*/
|
|
6153
|
+
var GitPullRequestIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6154
|
+
var gradient = _ref.gradient,
|
|
6155
|
+
props = _objectWithoutProperties(_ref, _excluded$3q);
|
|
6156
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6157
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6158
|
+
width: 24,
|
|
6159
|
+
height: 24,
|
|
6160
|
+
viewBox: "0 0 24 24",
|
|
6161
|
+
"data-testid": "GitPullRequestIcon",
|
|
6162
|
+
fill: "none",
|
|
6163
|
+
stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
|
|
6164
|
+
strokeWidth: 2,
|
|
6165
|
+
strokeLinecap: "round",
|
|
6166
|
+
strokeLinejoin: "round",
|
|
6167
|
+
focusable: false,
|
|
6168
|
+
ref: ref
|
|
6169
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
6170
|
+
gradient: gradient
|
|
6171
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6172
|
+
d: "M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
|
|
6173
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6174
|
+
d: "M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
|
|
6175
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6176
|
+
d: "M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
|
|
6177
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6178
|
+
d: "M6 8v8"
|
|
6179
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6180
|
+
d: "M11 6h5a2 2 0 0 1 2 2v8"
|
|
6181
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6182
|
+
d: "M14 9l-3 -3l3 -3"
|
|
6183
|
+
}));
|
|
6184
|
+
});
|
|
6185
|
+
GitPullRequestIcon.displayName = "GitPullRequestIcon";
|
|
6186
|
+
var GitPullRequestIcon$1 = GitPullRequestIcon;
|
|
6187
|
+
|
|
6188
|
+
var _excluded$3p = ["gradient"];
|
|
6053
6189
|
|
|
6054
6190
|
/**
|
|
6055
6191
|
* @component GroupByIcon
|
|
@@ -6079,7 +6215,7 @@
|
|
|
6079
6215
|
*/
|
|
6080
6216
|
var GroupByIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6081
6217
|
var gradient = _ref.gradient,
|
|
6082
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6218
|
+
props = _objectWithoutProperties(_ref, _excluded$3p);
|
|
6083
6219
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6084
6220
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6085
6221
|
width: 24,
|
|
@@ -6098,7 +6234,7 @@
|
|
|
6098
6234
|
GroupByIcon.displayName = "GroupByIcon";
|
|
6099
6235
|
var GroupByIcon$1 = GroupByIcon;
|
|
6100
6236
|
|
|
6101
|
-
var _excluded$
|
|
6237
|
+
var _excluded$3o = ["gradient"];
|
|
6102
6238
|
|
|
6103
6239
|
/**
|
|
6104
6240
|
* @component HashtagIcon
|
|
@@ -6128,7 +6264,7 @@
|
|
|
6128
6264
|
*/
|
|
6129
6265
|
var HashtagIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6130
6266
|
var gradient = _ref.gradient,
|
|
6131
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6267
|
+
props = _objectWithoutProperties(_ref, _excluded$3o);
|
|
6132
6268
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6133
6269
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6134
6270
|
width: 24,
|
|
@@ -6149,7 +6285,7 @@
|
|
|
6149
6285
|
HashtagIcon.displayName = "HashtagIcon";
|
|
6150
6286
|
var HashtagIcon$1 = HashtagIcon;
|
|
6151
6287
|
|
|
6152
|
-
var _excluded$
|
|
6288
|
+
var _excluded$3n = ["gradient"];
|
|
6153
6289
|
|
|
6154
6290
|
/**
|
|
6155
6291
|
* @component HelpIcon
|
|
@@ -6179,7 +6315,7 @@
|
|
|
6179
6315
|
*/
|
|
6180
6316
|
var HelpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6181
6317
|
var gradient = _ref.gradient,
|
|
6182
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6318
|
+
props = _objectWithoutProperties(_ref, _excluded$3n);
|
|
6183
6319
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6184
6320
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6185
6321
|
width: 24,
|
|
@@ -6199,7 +6335,7 @@
|
|
|
6199
6335
|
HelpIcon.displayName = "HelpIcon";
|
|
6200
6336
|
var HelpIcon$1 = HelpIcon;
|
|
6201
6337
|
|
|
6202
|
-
var _excluded$
|
|
6338
|
+
var _excluded$3m = ["gradient"];
|
|
6203
6339
|
|
|
6204
6340
|
/**
|
|
6205
6341
|
* @component HistoryOfChangesIcon
|
|
@@ -6229,7 +6365,7 @@
|
|
|
6229
6365
|
*/
|
|
6230
6366
|
var HistoryOfChangesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6231
6367
|
var gradient = _ref.gradient,
|
|
6232
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6368
|
+
props = _objectWithoutProperties(_ref, _excluded$3m);
|
|
6233
6369
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6234
6370
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6235
6371
|
width: 24,
|
|
@@ -6250,7 +6386,7 @@
|
|
|
6250
6386
|
HistoryOfChangesIcon.displayName = "HistoryOfChangesIcon";
|
|
6251
6387
|
var HistoryOfChangesIcon$1 = HistoryOfChangesIcon;
|
|
6252
6388
|
|
|
6253
|
-
var _excluded$
|
|
6389
|
+
var _excluded$3l = ["gradient"];
|
|
6254
6390
|
|
|
6255
6391
|
/**
|
|
6256
6392
|
* @component ImageIcon
|
|
@@ -6280,7 +6416,7 @@
|
|
|
6280
6416
|
*/
|
|
6281
6417
|
var ImageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6282
6418
|
var gradient = _ref.gradient,
|
|
6283
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6419
|
+
props = _objectWithoutProperties(_ref, _excluded$3l);
|
|
6284
6420
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6285
6421
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6286
6422
|
width: 24,
|
|
@@ -6301,7 +6437,7 @@
|
|
|
6301
6437
|
ImageIcon.displayName = "ImageIcon";
|
|
6302
6438
|
var ImageIcon$1 = ImageIcon;
|
|
6303
6439
|
|
|
6304
|
-
var _excluded$
|
|
6440
|
+
var _excluded$3k = ["gradient"];
|
|
6305
6441
|
|
|
6306
6442
|
/**
|
|
6307
6443
|
* @component InfoSmallIcon
|
|
@@ -6331,7 +6467,7 @@
|
|
|
6331
6467
|
*/
|
|
6332
6468
|
var InfoSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6333
6469
|
var gradient = _ref.gradient,
|
|
6334
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6470
|
+
props = _objectWithoutProperties(_ref, _excluded$3k);
|
|
6335
6471
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6336
6472
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6337
6473
|
width: 15,
|
|
@@ -6351,7 +6487,7 @@
|
|
|
6351
6487
|
InfoSmallIcon.displayName = "InfoSmallIcon";
|
|
6352
6488
|
var InfoSmallIcon$1 = InfoSmallIcon;
|
|
6353
6489
|
|
|
6354
|
-
var _excluded$
|
|
6490
|
+
var _excluded$3j = ["gradient"];
|
|
6355
6491
|
|
|
6356
6492
|
/**
|
|
6357
6493
|
* @component InfoIcon
|
|
@@ -6381,7 +6517,7 @@
|
|
|
6381
6517
|
*/
|
|
6382
6518
|
var InfoIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6383
6519
|
var gradient = _ref.gradient,
|
|
6384
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6520
|
+
props = _objectWithoutProperties(_ref, _excluded$3j);
|
|
6385
6521
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6386
6522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6387
6523
|
width: 24,
|
|
@@ -6401,7 +6537,7 @@
|
|
|
6401
6537
|
InfoIcon.displayName = "InfoIcon";
|
|
6402
6538
|
var InfoIcon$1 = InfoIcon;
|
|
6403
6539
|
|
|
6404
|
-
var _excluded$
|
|
6540
|
+
var _excluded$3i = ["gradient"];
|
|
6405
6541
|
|
|
6406
6542
|
/**
|
|
6407
6543
|
* @component InsertLinkIcon
|
|
@@ -6431,7 +6567,7 @@
|
|
|
6431
6567
|
*/
|
|
6432
6568
|
var InsertLinkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6433
6569
|
var gradient = _ref.gradient,
|
|
6434
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6570
|
+
props = _objectWithoutProperties(_ref, _excluded$3i);
|
|
6435
6571
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6436
6572
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6437
6573
|
width: 24,
|
|
@@ -6451,7 +6587,7 @@
|
|
|
6451
6587
|
InsertLinkIcon.displayName = "InsertLinkIcon";
|
|
6452
6588
|
var InsertLinkIcon$1 = InsertLinkIcon;
|
|
6453
6589
|
|
|
6454
|
-
var _excluded$
|
|
6590
|
+
var _excluded$3h = ["gradient"];
|
|
6455
6591
|
|
|
6456
6592
|
/**
|
|
6457
6593
|
* @component IntegrationsIcon
|
|
@@ -6481,7 +6617,7 @@
|
|
|
6481
6617
|
*/
|
|
6482
6618
|
var IntegrationsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6483
6619
|
var gradient = _ref.gradient,
|
|
6484
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6620
|
+
props = _objectWithoutProperties(_ref, _excluded$3h);
|
|
6485
6621
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6486
6622
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6487
6623
|
width: 24,
|
|
@@ -6505,7 +6641,7 @@
|
|
|
6505
6641
|
IntegrationsIcon.displayName = "IntegrationsIcon";
|
|
6506
6642
|
var IntegrationsIcon$1 = IntegrationsIcon;
|
|
6507
6643
|
|
|
6508
|
-
var _excluded$
|
|
6644
|
+
var _excluded$3g = ["gradient"];
|
|
6509
6645
|
|
|
6510
6646
|
/**
|
|
6511
6647
|
* @component InvoicesIcon
|
|
@@ -6535,7 +6671,7 @@
|
|
|
6535
6671
|
*/
|
|
6536
6672
|
var InvoicesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6537
6673
|
var gradient = _ref.gradient,
|
|
6538
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6674
|
+
props = _objectWithoutProperties(_ref, _excluded$3g);
|
|
6539
6675
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6540
6676
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6541
6677
|
width: 24,
|
|
@@ -6559,7 +6695,7 @@
|
|
|
6559
6695
|
InvoicesIcon.displayName = "InvoicesIcon";
|
|
6560
6696
|
var InvoicesIcon$1 = InvoicesIcon;
|
|
6561
6697
|
|
|
6562
|
-
var _excluded$
|
|
6698
|
+
var _excluded$3f = ["gradient"];
|
|
6563
6699
|
|
|
6564
6700
|
/**
|
|
6565
6701
|
* @component LabelsIcon
|
|
@@ -6589,7 +6725,7 @@
|
|
|
6589
6725
|
*/
|
|
6590
6726
|
var LabelsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6591
6727
|
var gradient = _ref.gradient,
|
|
6592
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6728
|
+
props = _objectWithoutProperties(_ref, _excluded$3f);
|
|
6593
6729
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6594
6730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6595
6731
|
width: 24,
|
|
@@ -6609,7 +6745,7 @@
|
|
|
6609
6745
|
LabelsIcon.displayName = "LabelsIcon";
|
|
6610
6746
|
var LabelsIcon$1 = LabelsIcon;
|
|
6611
6747
|
|
|
6612
|
-
var _excluded$
|
|
6748
|
+
var _excluded$3e = ["gradient"];
|
|
6613
6749
|
|
|
6614
6750
|
/**
|
|
6615
6751
|
* @component LetterArrowRightIcon
|
|
@@ -6639,7 +6775,7 @@
|
|
|
6639
6775
|
*/
|
|
6640
6776
|
var LetterArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6641
6777
|
var gradient = _ref.gradient,
|
|
6642
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6778
|
+
props = _objectWithoutProperties(_ref, _excluded$3e);
|
|
6643
6779
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6644
6780
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6645
6781
|
width: 24,
|
|
@@ -6660,7 +6796,7 @@
|
|
|
6660
6796
|
LetterArrowRightIcon.displayName = "LetterArrowRightIcon";
|
|
6661
6797
|
var LetterArrowRightIcon$1 = LetterArrowRightIcon;
|
|
6662
6798
|
|
|
6663
|
-
var _excluded$
|
|
6799
|
+
var _excluded$3d = ["gradient"];
|
|
6664
6800
|
|
|
6665
6801
|
/**
|
|
6666
6802
|
* @component LetterFastIcon
|
|
@@ -6690,7 +6826,7 @@
|
|
|
6690
6826
|
*/
|
|
6691
6827
|
var LetterFastIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6692
6828
|
var gradient = _ref.gradient,
|
|
6693
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6829
|
+
props = _objectWithoutProperties(_ref, _excluded$3d);
|
|
6694
6830
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6695
6831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6696
6832
|
width: 24,
|
|
@@ -6710,7 +6846,7 @@
|
|
|
6710
6846
|
LetterFastIcon.displayName = "LetterFastIcon";
|
|
6711
6847
|
var LetterFastIcon$1 = LetterFastIcon;
|
|
6712
6848
|
|
|
6713
|
-
var _excluded$
|
|
6849
|
+
var _excluded$3c = ["gradient"];
|
|
6714
6850
|
|
|
6715
6851
|
/**
|
|
6716
6852
|
* @component LetterIcon
|
|
@@ -6740,7 +6876,7 @@
|
|
|
6740
6876
|
*/
|
|
6741
6877
|
var LetterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6742
6878
|
var gradient = _ref.gradient,
|
|
6743
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6879
|
+
props = _objectWithoutProperties(_ref, _excluded$3c);
|
|
6744
6880
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6745
6881
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6746
6882
|
width: 24,
|
|
@@ -6761,7 +6897,7 @@
|
|
|
6761
6897
|
LetterIcon.displayName = "LetterIcon";
|
|
6762
6898
|
var LetterIcon$1 = LetterIcon;
|
|
6763
6899
|
|
|
6764
|
-
var _excluded$
|
|
6900
|
+
var _excluded$3b = ["gradient"];
|
|
6765
6901
|
|
|
6766
6902
|
/**
|
|
6767
6903
|
* @component LockSmallIcon
|
|
@@ -6791,7 +6927,7 @@
|
|
|
6791
6927
|
*/
|
|
6792
6928
|
var LockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6793
6929
|
var gradient = _ref.gradient,
|
|
6794
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6930
|
+
props = _objectWithoutProperties(_ref, _excluded$3b);
|
|
6795
6931
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6796
6932
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6797
6933
|
width: 12,
|
|
@@ -6811,7 +6947,7 @@
|
|
|
6811
6947
|
LockSmallIcon.displayName = "LockSmallIcon";
|
|
6812
6948
|
var LockSmallIcon$1 = LockSmallIcon;
|
|
6813
6949
|
|
|
6814
|
-
var _excluded$
|
|
6950
|
+
var _excluded$3a = ["gradient"];
|
|
6815
6951
|
|
|
6816
6952
|
/**
|
|
6817
6953
|
* @component LockIcon
|
|
@@ -6841,7 +6977,7 @@
|
|
|
6841
6977
|
*/
|
|
6842
6978
|
var LockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6843
6979
|
var gradient = _ref.gradient,
|
|
6844
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6980
|
+
props = _objectWithoutProperties(_ref, _excluded$3a);
|
|
6845
6981
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6846
6982
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6847
6983
|
width: 24,
|
|
@@ -6861,7 +6997,7 @@
|
|
|
6861
6997
|
LockIcon.displayName = "LockIcon";
|
|
6862
6998
|
var LockIcon$1 = LockIcon;
|
|
6863
6999
|
|
|
6864
|
-
var _excluded$
|
|
7000
|
+
var _excluded$39 = ["gradient"];
|
|
6865
7001
|
|
|
6866
7002
|
/**
|
|
6867
7003
|
* @component MarkerIcon
|
|
@@ -6891,7 +7027,7 @@
|
|
|
6891
7027
|
*/
|
|
6892
7028
|
var MarkerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6893
7029
|
var gradient = _ref.gradient,
|
|
6894
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7030
|
+
props = _objectWithoutProperties(_ref, _excluded$39);
|
|
6895
7031
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6896
7032
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6897
7033
|
width: 24,
|
|
@@ -6911,7 +7047,7 @@
|
|
|
6911
7047
|
MarkerIcon.displayName = "MarkerIcon";
|
|
6912
7048
|
var MarkerIcon$1 = MarkerIcon;
|
|
6913
7049
|
|
|
6914
|
-
var _excluded$
|
|
7050
|
+
var _excluded$38 = ["gradient"];
|
|
6915
7051
|
|
|
6916
7052
|
/**
|
|
6917
7053
|
* @component MessageAddIcon
|
|
@@ -6941,7 +7077,7 @@
|
|
|
6941
7077
|
*/
|
|
6942
7078
|
var MessageAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6943
7079
|
var gradient = _ref.gradient,
|
|
6944
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7080
|
+
props = _objectWithoutProperties(_ref, _excluded$38);
|
|
6945
7081
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6946
7082
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6947
7083
|
width: 24,
|
|
@@ -6960,7 +7096,7 @@
|
|
|
6960
7096
|
MessageAddIcon.displayName = "MessageAddIcon";
|
|
6961
7097
|
var MessageAddIcon$1 = MessageAddIcon;
|
|
6962
7098
|
|
|
6963
|
-
var _excluded$
|
|
7099
|
+
var _excluded$37 = ["gradient"];
|
|
6964
7100
|
|
|
6965
7101
|
/**
|
|
6966
7102
|
* @component MessageEmptyIcon
|
|
@@ -6990,7 +7126,7 @@
|
|
|
6990
7126
|
*/
|
|
6991
7127
|
var MessageEmptyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6992
7128
|
var gradient = _ref.gradient,
|
|
6993
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7129
|
+
props = _objectWithoutProperties(_ref, _excluded$37);
|
|
6994
7130
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6995
7131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6996
7132
|
width: 24,
|
|
@@ -7010,7 +7146,7 @@
|
|
|
7010
7146
|
MessageEmptyIcon.displayName = "MessageEmptyIcon";
|
|
7011
7147
|
var MessageEmptyIcon$1 = MessageEmptyIcon;
|
|
7012
7148
|
|
|
7013
|
-
var _excluded$
|
|
7149
|
+
var _excluded$36 = ["gradient"];
|
|
7014
7150
|
|
|
7015
7151
|
/**
|
|
7016
7152
|
* @component MessageSmallIcon
|
|
@@ -7040,7 +7176,7 @@
|
|
|
7040
7176
|
*/
|
|
7041
7177
|
var MessageSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7042
7178
|
var gradient = _ref.gradient,
|
|
7043
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7179
|
+
props = _objectWithoutProperties(_ref, _excluded$36);
|
|
7044
7180
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7045
7181
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7046
7182
|
width: 12,
|
|
@@ -7060,7 +7196,7 @@
|
|
|
7060
7196
|
MessageSmallIcon.displayName = "MessageSmallIcon";
|
|
7061
7197
|
var MessageSmallIcon$1 = MessageSmallIcon;
|
|
7062
7198
|
|
|
7063
|
-
var _excluded$
|
|
7199
|
+
var _excluded$35 = ["gradient"];
|
|
7064
7200
|
|
|
7065
7201
|
/**
|
|
7066
7202
|
* @component MessageSolidIcon
|
|
@@ -7090,7 +7226,7 @@
|
|
|
7090
7226
|
*/
|
|
7091
7227
|
var MessageSolidIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7092
7228
|
var gradient = _ref.gradient,
|
|
7093
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7229
|
+
props = _objectWithoutProperties(_ref, _excluded$35);
|
|
7094
7230
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7095
7231
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7096
7232
|
width: 24,
|
|
@@ -7110,7 +7246,7 @@
|
|
|
7110
7246
|
MessageSolidIcon.displayName = "MessageSolidIcon";
|
|
7111
7247
|
var MessageSolidIcon$1 = MessageSolidIcon;
|
|
7112
7248
|
|
|
7113
|
-
var _excluded$
|
|
7249
|
+
var _excluded$34 = ["gradient"];
|
|
7114
7250
|
|
|
7115
7251
|
/**
|
|
7116
7252
|
* @component MessageStarIcon
|
|
@@ -7140,7 +7276,7 @@
|
|
|
7140
7276
|
*/
|
|
7141
7277
|
var MessageStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7142
7278
|
var gradient = _ref.gradient,
|
|
7143
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7279
|
+
props = _objectWithoutProperties(_ref, _excluded$34);
|
|
7144
7280
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7145
7281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7146
7282
|
width: 24,
|
|
@@ -7163,7 +7299,7 @@
|
|
|
7163
7299
|
MessageStarIcon.displayName = "MessageStarIcon";
|
|
7164
7300
|
var MessageStarIcon$1 = MessageStarIcon;
|
|
7165
7301
|
|
|
7166
|
-
var _excluded$
|
|
7302
|
+
var _excluded$33 = ["gradient"];
|
|
7167
7303
|
|
|
7168
7304
|
/**
|
|
7169
7305
|
* @component MessageIcon
|
|
@@ -7193,7 +7329,7 @@
|
|
|
7193
7329
|
*/
|
|
7194
7330
|
var MessageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7195
7331
|
var gradient = _ref.gradient,
|
|
7196
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7332
|
+
props = _objectWithoutProperties(_ref, _excluded$33);
|
|
7197
7333
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7198
7334
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7199
7335
|
width: 24,
|
|
@@ -7213,7 +7349,7 @@
|
|
|
7213
7349
|
MessageIcon.displayName = "MessageIcon";
|
|
7214
7350
|
var MessageIcon$1 = MessageIcon;
|
|
7215
7351
|
|
|
7216
|
-
var _excluded$
|
|
7352
|
+
var _excluded$32 = ["gradient"];
|
|
7217
7353
|
|
|
7218
7354
|
/**
|
|
7219
7355
|
* @component MinusIcon
|
|
@@ -7243,7 +7379,7 @@
|
|
|
7243
7379
|
*/
|
|
7244
7380
|
var MinusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7245
7381
|
var gradient = _ref.gradient,
|
|
7246
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7382
|
+
props = _objectWithoutProperties(_ref, _excluded$32);
|
|
7247
7383
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7248
7384
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7249
7385
|
width: 24,
|
|
@@ -7267,7 +7403,7 @@
|
|
|
7267
7403
|
MinusIcon.displayName = "MinusIcon";
|
|
7268
7404
|
var MinusIcon$1 = MinusIcon;
|
|
7269
7405
|
|
|
7270
|
-
var _excluded$
|
|
7406
|
+
var _excluded$31 = ["gradient"];
|
|
7271
7407
|
|
|
7272
7408
|
/**
|
|
7273
7409
|
* @component MobileMenuIcon
|
|
@@ -7297,7 +7433,7 @@
|
|
|
7297
7433
|
*/
|
|
7298
7434
|
var MobileMenuIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7299
7435
|
var gradient = _ref.gradient,
|
|
7300
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7436
|
+
props = _objectWithoutProperties(_ref, _excluded$31);
|
|
7301
7437
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7302
7438
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7303
7439
|
width: 24,
|
|
@@ -7318,7 +7454,7 @@
|
|
|
7318
7454
|
MobileMenuIcon.displayName = "MobileMenuIcon";
|
|
7319
7455
|
var MobileMenuIcon$1 = MobileMenuIcon;
|
|
7320
7456
|
|
|
7321
|
-
var _excluded$
|
|
7457
|
+
var _excluded$30 = ["gradient"];
|
|
7322
7458
|
|
|
7323
7459
|
/**
|
|
7324
7460
|
* @component MoneyStackIcon
|
|
@@ -7348,7 +7484,7 @@
|
|
|
7348
7484
|
*/
|
|
7349
7485
|
var MoneyStackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7350
7486
|
var gradient = _ref.gradient,
|
|
7351
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7487
|
+
props = _objectWithoutProperties(_ref, _excluded$30);
|
|
7352
7488
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7353
7489
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7354
7490
|
width: 24,
|
|
@@ -7375,7 +7511,7 @@
|
|
|
7375
7511
|
MoneyStackIcon.displayName = "MoneyStackIcon";
|
|
7376
7512
|
var MoneyStackIcon$1 = MoneyStackIcon;
|
|
7377
7513
|
|
|
7378
|
-
var _excluded$
|
|
7514
|
+
var _excluded$2$ = ["gradient"];
|
|
7379
7515
|
|
|
7380
7516
|
/**
|
|
7381
7517
|
* @component MoonIcon
|
|
@@ -7405,7 +7541,7 @@
|
|
|
7405
7541
|
*/
|
|
7406
7542
|
var MoonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7407
7543
|
var gradient = _ref.gradient,
|
|
7408
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7544
|
+
props = _objectWithoutProperties(_ref, _excluded$2$);
|
|
7409
7545
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7410
7546
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7411
7547
|
width: 20,
|
|
@@ -7426,7 +7562,7 @@
|
|
|
7426
7562
|
MoonIcon.displayName = "MoonIcon";
|
|
7427
7563
|
var MoonIcon$1 = MoonIcon;
|
|
7428
7564
|
|
|
7429
|
-
var _excluded$
|
|
7565
|
+
var _excluded$2_ = ["gradient"];
|
|
7430
7566
|
|
|
7431
7567
|
/**
|
|
7432
7568
|
* @component MoveTriggerIcon
|
|
@@ -7456,7 +7592,7 @@
|
|
|
7456
7592
|
*/
|
|
7457
7593
|
var MoveTriggerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7458
7594
|
var gradient = _ref.gradient,
|
|
7459
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7595
|
+
props = _objectWithoutProperties(_ref, _excluded$2_);
|
|
7460
7596
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7461
7597
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7462
7598
|
width: 10,
|
|
@@ -7476,7 +7612,7 @@
|
|
|
7476
7612
|
MoveTriggerIcon.displayName = "MoveTriggerIcon";
|
|
7477
7613
|
var MoveTriggerIcon$1 = MoveTriggerIcon;
|
|
7478
7614
|
|
|
7479
|
-
var _excluded$
|
|
7615
|
+
var _excluded$2Z = ["gradient"];
|
|
7480
7616
|
|
|
7481
7617
|
/**
|
|
7482
7618
|
* @component MoveIcon
|
|
@@ -7506,7 +7642,7 @@
|
|
|
7506
7642
|
*/
|
|
7507
7643
|
var MoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7508
7644
|
var gradient = _ref.gradient,
|
|
7509
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7645
|
+
props = _objectWithoutProperties(_ref, _excluded$2Z);
|
|
7510
7646
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7511
7647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7512
7648
|
width: 24,
|
|
@@ -7527,7 +7663,7 @@
|
|
|
7527
7663
|
MoveIcon.displayName = "MoveIcon";
|
|
7528
7664
|
var MoveIcon$1 = MoveIcon;
|
|
7529
7665
|
|
|
7530
|
-
var _excluded$
|
|
7666
|
+
var _excluded$2Y = ["gradient"];
|
|
7531
7667
|
|
|
7532
7668
|
/**
|
|
7533
7669
|
* @component MyWorkIcon
|
|
@@ -7557,7 +7693,7 @@
|
|
|
7557
7693
|
*/
|
|
7558
7694
|
var MyWorkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7559
7695
|
var gradient = _ref.gradient,
|
|
7560
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7696
|
+
props = _objectWithoutProperties(_ref, _excluded$2Y);
|
|
7561
7697
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7562
7698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7563
7699
|
width: 24,
|
|
@@ -7581,7 +7717,7 @@
|
|
|
7581
7717
|
MyWorkIcon.displayName = "MyWorkIcon";
|
|
7582
7718
|
var MyWorkIcon$1 = MyWorkIcon;
|
|
7583
7719
|
|
|
7584
|
-
var _excluded$
|
|
7720
|
+
var _excluded$2X = ["gradient"];
|
|
7585
7721
|
|
|
7586
7722
|
/**
|
|
7587
7723
|
* @component NoteAddIcon
|
|
@@ -7611,7 +7747,7 @@
|
|
|
7611
7747
|
*/
|
|
7612
7748
|
var NoteAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7613
7749
|
var gradient = _ref.gradient,
|
|
7614
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7750
|
+
props = _objectWithoutProperties(_ref, _excluded$2X);
|
|
7615
7751
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7616
7752
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7617
7753
|
width: 24,
|
|
@@ -7631,7 +7767,7 @@
|
|
|
7631
7767
|
NoteAddIcon.displayName = "NoteAddIcon";
|
|
7632
7768
|
var NoteAddIcon$1 = NoteAddIcon;
|
|
7633
7769
|
|
|
7634
|
-
var _excluded$
|
|
7770
|
+
var _excluded$2W = ["gradient"];
|
|
7635
7771
|
|
|
7636
7772
|
/**
|
|
7637
7773
|
* @component NoteIcon
|
|
@@ -7661,7 +7797,7 @@
|
|
|
7661
7797
|
*/
|
|
7662
7798
|
var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7663
7799
|
var gradient = _ref.gradient,
|
|
7664
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7800
|
+
props = _objectWithoutProperties(_ref, _excluded$2W);
|
|
7665
7801
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7666
7802
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7667
7803
|
width: 24,
|
|
@@ -7681,7 +7817,7 @@
|
|
|
7681
7817
|
NoteIcon.displayName = "NoteIcon";
|
|
7682
7818
|
var NoteIcon$1 = NoteIcon;
|
|
7683
7819
|
|
|
7684
|
-
var _excluded$
|
|
7820
|
+
var _excluded$2V = ["gradient"];
|
|
7685
7821
|
|
|
7686
7822
|
/**
|
|
7687
7823
|
* @component NotebookIcon
|
|
@@ -7711,7 +7847,7 @@
|
|
|
7711
7847
|
*/
|
|
7712
7848
|
var NotebookIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7713
7849
|
var gradient = _ref.gradient,
|
|
7714
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7850
|
+
props = _objectWithoutProperties(_ref, _excluded$2V);
|
|
7715
7851
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7716
7852
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7717
7853
|
width: 24,
|
|
@@ -7731,7 +7867,7 @@
|
|
|
7731
7867
|
NotebookIcon.displayName = "NotebookIcon";
|
|
7732
7868
|
var NotebookIcon$1 = NotebookIcon;
|
|
7733
7869
|
|
|
7734
|
-
var _excluded$
|
|
7870
|
+
var _excluded$2U = ["gradient"];
|
|
7735
7871
|
|
|
7736
7872
|
/**
|
|
7737
7873
|
* @component NotificationBellIcon
|
|
@@ -7761,7 +7897,7 @@
|
|
|
7761
7897
|
*/
|
|
7762
7898
|
var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7763
7899
|
var gradient = _ref.gradient,
|
|
7764
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7900
|
+
props = _objectWithoutProperties(_ref, _excluded$2U);
|
|
7765
7901
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7766
7902
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7767
7903
|
width: 24,
|
|
@@ -7780,7 +7916,7 @@
|
|
|
7780
7916
|
NotificationBellIcon.displayName = "NotificationBellIcon";
|
|
7781
7917
|
var NotificationBellIcon$1 = NotificationBellIcon;
|
|
7782
7918
|
|
|
7783
|
-
var _excluded$
|
|
7919
|
+
var _excluded$2T = ["gradient"];
|
|
7784
7920
|
|
|
7785
7921
|
/**
|
|
7786
7922
|
* @component OpenExpandedIcon
|
|
@@ -7810,7 +7946,7 @@
|
|
|
7810
7946
|
*/
|
|
7811
7947
|
var OpenExpandedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7812
7948
|
var gradient = _ref.gradient,
|
|
7813
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7949
|
+
props = _objectWithoutProperties(_ref, _excluded$2T);
|
|
7814
7950
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7815
7951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7816
7952
|
width: 24,
|
|
@@ -7830,7 +7966,7 @@
|
|
|
7830
7966
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
7831
7967
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
7832
7968
|
|
|
7833
|
-
var _excluded$
|
|
7969
|
+
var _excluded$2S = ["gradient"];
|
|
7834
7970
|
|
|
7835
7971
|
/**
|
|
7836
7972
|
* @component OpenSheetIcon
|
|
@@ -7860,7 +7996,7 @@
|
|
|
7860
7996
|
*/
|
|
7861
7997
|
var OpenSheetIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7862
7998
|
var gradient = _ref.gradient,
|
|
7863
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7999
|
+
props = _objectWithoutProperties(_ref, _excluded$2S);
|
|
7864
8000
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7865
8001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7866
8002
|
width: 24,
|
|
@@ -7885,7 +8021,7 @@
|
|
|
7885
8021
|
OpenSheetIcon.displayName = "OpenSheetIcon";
|
|
7886
8022
|
var OpenSheetIcon$1 = OpenSheetIcon;
|
|
7887
8023
|
|
|
7888
|
-
var _excluded$
|
|
8024
|
+
var _excluded$2R = ["gradient"];
|
|
7889
8025
|
|
|
7890
8026
|
/**
|
|
7891
8027
|
* @component OrderFirstIcon
|
|
@@ -7915,7 +8051,7 @@
|
|
|
7915
8051
|
*/
|
|
7916
8052
|
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7917
8053
|
var gradient = _ref.gradient,
|
|
7918
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8054
|
+
props = _objectWithoutProperties(_ref, _excluded$2R);
|
|
7919
8055
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7920
8056
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7921
8057
|
width: 24,
|
|
@@ -7935,7 +8071,7 @@
|
|
|
7935
8071
|
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
7936
8072
|
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
7937
8073
|
|
|
7938
|
-
var _excluded$
|
|
8074
|
+
var _excluded$2Q = ["gradient"];
|
|
7939
8075
|
|
|
7940
8076
|
/**
|
|
7941
8077
|
* @component PaidSmallIcon
|
|
@@ -7965,7 +8101,7 @@
|
|
|
7965
8101
|
*/
|
|
7966
8102
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7967
8103
|
var gradient = _ref.gradient,
|
|
7968
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8104
|
+
props = _objectWithoutProperties(_ref, _excluded$2Q);
|
|
7969
8105
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7970
8106
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7971
8107
|
width: 12,
|
|
@@ -7985,7 +8121,7 @@
|
|
|
7985
8121
|
PaidSmallIcon.displayName = "PaidSmallIcon";
|
|
7986
8122
|
var PaidSmallIcon$1 = PaidSmallIcon;
|
|
7987
8123
|
|
|
7988
|
-
var _excluded$
|
|
8124
|
+
var _excluded$2P = ["gradient"];
|
|
7989
8125
|
|
|
7990
8126
|
/**
|
|
7991
8127
|
* @component PauseCircleOutlineIcon
|
|
@@ -8015,7 +8151,7 @@
|
|
|
8015
8151
|
*/
|
|
8016
8152
|
var PauseCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8017
8153
|
var gradient = _ref.gradient,
|
|
8018
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8154
|
+
props = _objectWithoutProperties(_ref, _excluded$2P);
|
|
8019
8155
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8020
8156
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8021
8157
|
width: 24,
|
|
@@ -8035,7 +8171,7 @@
|
|
|
8035
8171
|
PauseCircleOutlineIcon.displayName = "PauseCircleOutlineIcon";
|
|
8036
8172
|
var PauseCircleOutlineIcon$1 = PauseCircleOutlineIcon;
|
|
8037
8173
|
|
|
8038
|
-
var _excluded$
|
|
8174
|
+
var _excluded$2O = ["gradient"];
|
|
8039
8175
|
|
|
8040
8176
|
/**
|
|
8041
8177
|
* @component PauseIcon
|
|
@@ -8065,7 +8201,7 @@
|
|
|
8065
8201
|
*/
|
|
8066
8202
|
var PauseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8067
8203
|
var gradient = _ref.gradient,
|
|
8068
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8204
|
+
props = _objectWithoutProperties(_ref, _excluded$2O);
|
|
8069
8205
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8070
8206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8071
8207
|
width: 24,
|
|
@@ -8085,7 +8221,7 @@
|
|
|
8085
8221
|
PauseIcon.displayName = "PauseIcon";
|
|
8086
8222
|
var PauseIcon$1 = PauseIcon;
|
|
8087
8223
|
|
|
8088
|
-
var _excluded$
|
|
8224
|
+
var _excluded$2N = ["gradient"];
|
|
8089
8225
|
|
|
8090
8226
|
/**
|
|
8091
8227
|
* @component PauseSmallIcon
|
|
@@ -8115,7 +8251,7 @@
|
|
|
8115
8251
|
*/
|
|
8116
8252
|
var PauseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8117
8253
|
var gradient = _ref.gradient,
|
|
8118
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8254
|
+
props = _objectWithoutProperties(_ref, _excluded$2N);
|
|
8119
8255
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8120
8256
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8121
8257
|
width: 24,
|
|
@@ -8135,7 +8271,7 @@
|
|
|
8135
8271
|
PauseSmallIcon.displayName = "PauseSmallIcon";
|
|
8136
8272
|
var PauseSmallIcon$1 = PauseSmallIcon;
|
|
8137
8273
|
|
|
8138
|
-
var _excluded$
|
|
8274
|
+
var _excluded$2M = ["gradient"];
|
|
8139
8275
|
|
|
8140
8276
|
/**
|
|
8141
8277
|
* @component PencilSmallIcon
|
|
@@ -8165,7 +8301,7 @@
|
|
|
8165
8301
|
*/
|
|
8166
8302
|
var PencilSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8167
8303
|
var gradient = _ref.gradient,
|
|
8168
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8304
|
+
props = _objectWithoutProperties(_ref, _excluded$2M);
|
|
8169
8305
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8170
8306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8171
8307
|
width: 12,
|
|
@@ -8184,7 +8320,7 @@
|
|
|
8184
8320
|
PencilSmallIcon.displayName = "PencilSmallIcon";
|
|
8185
8321
|
var PencilSmallIcon$1 = PencilSmallIcon;
|
|
8186
8322
|
|
|
8187
|
-
var _excluded$
|
|
8323
|
+
var _excluded$2L = ["gradient"];
|
|
8188
8324
|
|
|
8189
8325
|
/**
|
|
8190
8326
|
* @component PencilIcon
|
|
@@ -8214,7 +8350,7 @@
|
|
|
8214
8350
|
*/
|
|
8215
8351
|
var PencilIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8216
8352
|
var gradient = _ref.gradient,
|
|
8217
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8353
|
+
props = _objectWithoutProperties(_ref, _excluded$2L);
|
|
8218
8354
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8219
8355
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8220
8356
|
width: 24,
|
|
@@ -8233,7 +8369,7 @@
|
|
|
8233
8369
|
PencilIcon.displayName = "PencilIcon";
|
|
8234
8370
|
var PencilIcon$1 = PencilIcon;
|
|
8235
8371
|
|
|
8236
|
-
var _excluded$
|
|
8372
|
+
var _excluded$2K = ["gradient"];
|
|
8237
8373
|
|
|
8238
8374
|
/**
|
|
8239
8375
|
* @component PendingPaymentSmallIcon
|
|
@@ -8263,7 +8399,7 @@
|
|
|
8263
8399
|
*/
|
|
8264
8400
|
var PendingPaymentSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8265
8401
|
var gradient = _ref.gradient,
|
|
8266
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8402
|
+
props = _objectWithoutProperties(_ref, _excluded$2K);
|
|
8267
8403
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8268
8404
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8269
8405
|
width: 12,
|
|
@@ -8283,7 +8419,7 @@
|
|
|
8283
8419
|
PendingPaymentSmallIcon.displayName = "PendingPaymentSmallIcon";
|
|
8284
8420
|
var PendingPaymentSmallIcon$1 = PendingPaymentSmallIcon;
|
|
8285
8421
|
|
|
8286
|
-
var _excluded$
|
|
8422
|
+
var _excluded$2J = ["gradient"];
|
|
8287
8423
|
|
|
8288
8424
|
/**
|
|
8289
8425
|
* @component PeopleIcon
|
|
@@ -8313,7 +8449,7 @@
|
|
|
8313
8449
|
*/
|
|
8314
8450
|
var PeopleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8315
8451
|
var gradient = _ref.gradient,
|
|
8316
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8452
|
+
props = _objectWithoutProperties(_ref, _excluded$2J);
|
|
8317
8453
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8318
8454
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8319
8455
|
width: 24,
|
|
@@ -8337,7 +8473,7 @@
|
|
|
8337
8473
|
PeopleIcon.displayName = "PeopleIcon";
|
|
8338
8474
|
var PeopleIcon$1 = PeopleIcon;
|
|
8339
8475
|
|
|
8340
|
-
var _excluded$
|
|
8476
|
+
var _excluded$2I = ["gradient"];
|
|
8341
8477
|
|
|
8342
8478
|
/**
|
|
8343
8479
|
* @component PersonArrowOutCircleIcon
|
|
@@ -8367,7 +8503,7 @@
|
|
|
8367
8503
|
*/
|
|
8368
8504
|
var PersonArrowOutCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8369
8505
|
var gradient = _ref.gradient,
|
|
8370
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8506
|
+
props = _objectWithoutProperties(_ref, _excluded$2I);
|
|
8371
8507
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8372
8508
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8373
8509
|
width: 24,
|
|
@@ -8388,7 +8524,7 @@
|
|
|
8388
8524
|
PersonArrowOutCircleIcon.displayName = "PersonArrowOutCircleIcon";
|
|
8389
8525
|
var PersonArrowOutCircleIcon$1 = PersonArrowOutCircleIcon;
|
|
8390
8526
|
|
|
8391
|
-
var _excluded$
|
|
8527
|
+
var _excluded$2H = ["gradient"];
|
|
8392
8528
|
|
|
8393
8529
|
/**
|
|
8394
8530
|
* @component PersonCircleOffIcon
|
|
@@ -8418,7 +8554,7 @@
|
|
|
8418
8554
|
*/
|
|
8419
8555
|
var PersonCircleOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8420
8556
|
var gradient = _ref.gradient,
|
|
8421
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8557
|
+
props = _objectWithoutProperties(_ref, _excluded$2H);
|
|
8422
8558
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8423
8559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8424
8560
|
width: 24,
|
|
@@ -8438,7 +8574,7 @@
|
|
|
8438
8574
|
PersonCircleOffIcon.displayName = "PersonCircleOffIcon";
|
|
8439
8575
|
var PersonCircleOffIcon$1 = PersonCircleOffIcon;
|
|
8440
8576
|
|
|
8441
|
-
var _excluded$
|
|
8577
|
+
var _excluded$2G = ["gradient"];
|
|
8442
8578
|
|
|
8443
8579
|
/**
|
|
8444
8580
|
* @component PersonCircleIcon
|
|
@@ -8468,7 +8604,7 @@
|
|
|
8468
8604
|
*/
|
|
8469
8605
|
var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8470
8606
|
var gradient = _ref.gradient,
|
|
8471
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8607
|
+
props = _objectWithoutProperties(_ref, _excluded$2G);
|
|
8472
8608
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8473
8609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8474
8610
|
width: 24,
|
|
@@ -8488,7 +8624,7 @@
|
|
|
8488
8624
|
PersonCircleIcon.displayName = "PersonCircleIcon";
|
|
8489
8625
|
var PersonCircleIcon$1 = PersonCircleIcon;
|
|
8490
8626
|
|
|
8491
|
-
var _excluded$
|
|
8627
|
+
var _excluded$2F = ["gradient"];
|
|
8492
8628
|
|
|
8493
8629
|
/**
|
|
8494
8630
|
* @component PersonListIcon
|
|
@@ -8518,7 +8654,7 @@
|
|
|
8518
8654
|
*/
|
|
8519
8655
|
var PersonListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8520
8656
|
var gradient = _ref.gradient,
|
|
8521
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8657
|
+
props = _objectWithoutProperties(_ref, _excluded$2F);
|
|
8522
8658
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8523
8659
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8524
8660
|
width: 24,
|
|
@@ -8539,7 +8675,7 @@
|
|
|
8539
8675
|
PersonListIcon.displayName = "PersonListIcon";
|
|
8540
8676
|
var PersonListIcon$1 = PersonListIcon;
|
|
8541
8677
|
|
|
8542
|
-
var _excluded$
|
|
8678
|
+
var _excluded$2E = ["gradient"];
|
|
8543
8679
|
|
|
8544
8680
|
/**
|
|
8545
8681
|
* @component PersonPlusIcon
|
|
@@ -8569,7 +8705,7 @@
|
|
|
8569
8705
|
*/
|
|
8570
8706
|
var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8571
8707
|
var gradient = _ref.gradient,
|
|
8572
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8708
|
+
props = _objectWithoutProperties(_ref, _excluded$2E);
|
|
8573
8709
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8574
8710
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8575
8711
|
width: 24,
|
|
@@ -8589,7 +8725,7 @@
|
|
|
8589
8725
|
PersonPlusIcon.displayName = "PersonPlusIcon";
|
|
8590
8726
|
var PersonPlusIcon$1 = PersonPlusIcon;
|
|
8591
8727
|
|
|
8592
|
-
var _excluded$
|
|
8728
|
+
var _excluded$2D = ["gradient"];
|
|
8593
8729
|
|
|
8594
8730
|
/**
|
|
8595
8731
|
* @component PersonIcon
|
|
@@ -8619,7 +8755,7 @@
|
|
|
8619
8755
|
*/
|
|
8620
8756
|
var PersonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8621
8757
|
var gradient = _ref.gradient,
|
|
8622
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8758
|
+
props = _objectWithoutProperties(_ref, _excluded$2D);
|
|
8623
8759
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8624
8760
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8625
8761
|
width: 24,
|
|
@@ -8639,7 +8775,7 @@
|
|
|
8639
8775
|
PersonIcon.displayName = "PersonIcon";
|
|
8640
8776
|
var PersonIcon$1 = PersonIcon;
|
|
8641
8777
|
|
|
8642
|
-
var _excluded$
|
|
8778
|
+
var _excluded$2C = ["gradient"];
|
|
8643
8779
|
|
|
8644
8780
|
/**
|
|
8645
8781
|
* @component PinSmallIcon
|
|
@@ -8669,7 +8805,7 @@
|
|
|
8669
8805
|
*/
|
|
8670
8806
|
var PinSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8671
8807
|
var gradient = _ref.gradient,
|
|
8672
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8808
|
+
props = _objectWithoutProperties(_ref, _excluded$2C);
|
|
8673
8809
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8674
8810
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8675
8811
|
width: 12,
|
|
@@ -8690,7 +8826,7 @@
|
|
|
8690
8826
|
PinSmallIcon.displayName = "PinSmallIcon";
|
|
8691
8827
|
var PinSmallIcon$1 = PinSmallIcon;
|
|
8692
8828
|
|
|
8693
|
-
var _excluded$
|
|
8829
|
+
var _excluded$2B = ["gradient"];
|
|
8694
8830
|
|
|
8695
8831
|
/**
|
|
8696
8832
|
* @component PinIcon
|
|
@@ -8720,7 +8856,7 @@
|
|
|
8720
8856
|
*/
|
|
8721
8857
|
var PinIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8722
8858
|
var gradient = _ref.gradient,
|
|
8723
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8859
|
+
props = _objectWithoutProperties(_ref, _excluded$2B);
|
|
8724
8860
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8725
8861
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8726
8862
|
width: 24,
|
|
@@ -8740,7 +8876,7 @@
|
|
|
8740
8876
|
PinIcon.displayName = "PinIcon";
|
|
8741
8877
|
var PinIcon$1 = PinIcon;
|
|
8742
8878
|
|
|
8743
|
-
var _excluded$
|
|
8879
|
+
var _excluded$2A = ["gradient"];
|
|
8744
8880
|
|
|
8745
8881
|
/**
|
|
8746
8882
|
* @component PlayCircleOutlineIcon
|
|
@@ -8770,7 +8906,7 @@
|
|
|
8770
8906
|
*/
|
|
8771
8907
|
var PlayCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8772
8908
|
var gradient = _ref.gradient,
|
|
8773
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8909
|
+
props = _objectWithoutProperties(_ref, _excluded$2A);
|
|
8774
8910
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8775
8911
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8776
8912
|
width: 24,
|
|
@@ -8790,7 +8926,7 @@
|
|
|
8790
8926
|
PlayCircleOutlineIcon.displayName = "PlayCircleOutlineIcon";
|
|
8791
8927
|
var PlayCircleOutlineIcon$1 = PlayCircleOutlineIcon;
|
|
8792
8928
|
|
|
8793
|
-
var _excluded$
|
|
8929
|
+
var _excluded$2z = ["gradient"];
|
|
8794
8930
|
|
|
8795
8931
|
/**
|
|
8796
8932
|
* @component PlayIcon
|
|
@@ -8820,7 +8956,7 @@
|
|
|
8820
8956
|
*/
|
|
8821
8957
|
var PlayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8822
8958
|
var gradient = _ref.gradient,
|
|
8823
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8959
|
+
props = _objectWithoutProperties(_ref, _excluded$2z);
|
|
8824
8960
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8825
8961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8826
8962
|
width: 24,
|
|
@@ -8840,7 +8976,7 @@
|
|
|
8840
8976
|
PlayIcon.displayName = "PlayIcon";
|
|
8841
8977
|
var PlayIcon$1 = PlayIcon;
|
|
8842
8978
|
|
|
8843
|
-
var _excluded$
|
|
8979
|
+
var _excluded$2y = ["gradient"];
|
|
8844
8980
|
|
|
8845
8981
|
/**
|
|
8846
8982
|
* @component PlaySmallIcon
|
|
@@ -8870,7 +9006,7 @@
|
|
|
8870
9006
|
*/
|
|
8871
9007
|
var PlaySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8872
9008
|
var gradient = _ref.gradient,
|
|
8873
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9009
|
+
props = _objectWithoutProperties(_ref, _excluded$2y);
|
|
8874
9010
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8875
9011
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8876
9012
|
width: 24,
|
|
@@ -8890,7 +9026,7 @@
|
|
|
8890
9026
|
PlaySmallIcon.displayName = "PlaySmallIcon";
|
|
8891
9027
|
var PlaySmallIcon$1 = PlaySmallIcon;
|
|
8892
9028
|
|
|
8893
|
-
var _excluded$
|
|
9029
|
+
var _excluded$2x = ["gradient"];
|
|
8894
9030
|
|
|
8895
9031
|
/**
|
|
8896
9032
|
* @component PriorityLowIcon
|
|
@@ -8920,7 +9056,7 @@
|
|
|
8920
9056
|
*/
|
|
8921
9057
|
var PriorityLowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8922
9058
|
var gradient = _ref.gradient,
|
|
8923
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9059
|
+
props = _objectWithoutProperties(_ref, _excluded$2x);
|
|
8924
9060
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8925
9061
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8926
9062
|
width: 24,
|
|
@@ -8941,7 +9077,7 @@
|
|
|
8941
9077
|
PriorityLowIcon.displayName = "PriorityLowIcon";
|
|
8942
9078
|
var PriorityLowIcon$1 = PriorityLowIcon;
|
|
8943
9079
|
|
|
8944
|
-
var _excluded$
|
|
9080
|
+
var _excluded$2w = ["gradient"];
|
|
8945
9081
|
|
|
8946
9082
|
/**
|
|
8947
9083
|
* @component ProjectAddIcon
|
|
@@ -8971,7 +9107,7 @@
|
|
|
8971
9107
|
*/
|
|
8972
9108
|
var ProjectAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8973
9109
|
var gradient = _ref.gradient,
|
|
8974
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9110
|
+
props = _objectWithoutProperties(_ref, _excluded$2w);
|
|
8975
9111
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8976
9112
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8977
9113
|
width: 24,
|
|
@@ -8991,7 +9127,7 @@
|
|
|
8991
9127
|
ProjectAddIcon.displayName = "ProjectAddIcon";
|
|
8992
9128
|
var ProjectAddIcon$1 = ProjectAddIcon;
|
|
8993
9129
|
|
|
8994
|
-
var _excluded$
|
|
9130
|
+
var _excluded$2v = ["gradient"];
|
|
8995
9131
|
|
|
8996
9132
|
/**
|
|
8997
9133
|
* @component ProjectSearchIcon
|
|
@@ -9021,7 +9157,7 @@
|
|
|
9021
9157
|
*/
|
|
9022
9158
|
var ProjectSearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9023
9159
|
var gradient = _ref.gradient,
|
|
9024
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9160
|
+
props = _objectWithoutProperties(_ref, _excluded$2v);
|
|
9025
9161
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9026
9162
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9027
9163
|
width: 24,
|
|
@@ -9042,7 +9178,7 @@
|
|
|
9042
9178
|
ProjectSearchIcon.displayName = "ProjectSearchIcon";
|
|
9043
9179
|
var ProjectSearchIcon$1 = ProjectSearchIcon;
|
|
9044
9180
|
|
|
9045
|
-
var _excluded$
|
|
9181
|
+
var _excluded$2u = ["gradient"];
|
|
9046
9182
|
|
|
9047
9183
|
/**
|
|
9048
9184
|
* @component ProjectStarIcon
|
|
@@ -9072,7 +9208,7 @@
|
|
|
9072
9208
|
*/
|
|
9073
9209
|
var ProjectStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9074
9210
|
var gradient = _ref.gradient,
|
|
9075
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9211
|
+
props = _objectWithoutProperties(_ref, _excluded$2u);
|
|
9076
9212
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9077
9213
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9078
9214
|
width: 24,
|
|
@@ -9095,7 +9231,7 @@
|
|
|
9095
9231
|
ProjectStarIcon.displayName = "ProjectStarIcon";
|
|
9096
9232
|
var ProjectStarIcon$1 = ProjectStarIcon;
|
|
9097
9233
|
|
|
9098
|
-
var _excluded$
|
|
9234
|
+
var _excluded$2t = ["gradient"];
|
|
9099
9235
|
|
|
9100
9236
|
/**
|
|
9101
9237
|
* @component ProjectTemplateAddIcon
|
|
@@ -9125,7 +9261,7 @@
|
|
|
9125
9261
|
*/
|
|
9126
9262
|
var ProjectTemplateAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9127
9263
|
var gradient = _ref.gradient,
|
|
9128
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9264
|
+
props = _objectWithoutProperties(_ref, _excluded$2t);
|
|
9129
9265
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9130
9266
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9131
9267
|
width: 24,
|
|
@@ -9145,7 +9281,7 @@
|
|
|
9145
9281
|
ProjectTemplateAddIcon.displayName = "ProjectTemplateAddIcon";
|
|
9146
9282
|
var ProjectTemplateAddIcon$1 = ProjectTemplateAddIcon;
|
|
9147
9283
|
|
|
9148
|
-
var _excluded$
|
|
9284
|
+
var _excluded$2s = ["gradient"];
|
|
9149
9285
|
|
|
9150
9286
|
/**
|
|
9151
9287
|
* @component ProjectTemplateConvertIcon
|
|
@@ -9175,7 +9311,7 @@
|
|
|
9175
9311
|
*/
|
|
9176
9312
|
var ProjectTemplateConvertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9177
9313
|
var gradient = _ref.gradient,
|
|
9178
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9314
|
+
props = _objectWithoutProperties(_ref, _excluded$2s);
|
|
9179
9315
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9180
9316
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9181
9317
|
width: 24,
|
|
@@ -9195,7 +9331,7 @@
|
|
|
9195
9331
|
ProjectTemplateConvertIcon.displayName = "ProjectTemplateConvertIcon";
|
|
9196
9332
|
var ProjectTemplateConvertIcon$1 = ProjectTemplateConvertIcon;
|
|
9197
9333
|
|
|
9198
|
-
var _excluded$
|
|
9334
|
+
var _excluded$2r = ["gradient"];
|
|
9199
9335
|
|
|
9200
9336
|
/**
|
|
9201
9337
|
* @component ProjectTemplateIcon
|
|
@@ -9225,7 +9361,7 @@
|
|
|
9225
9361
|
*/
|
|
9226
9362
|
var ProjectTemplateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9227
9363
|
var gradient = _ref.gradient,
|
|
9228
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9364
|
+
props = _objectWithoutProperties(_ref, _excluded$2r);
|
|
9229
9365
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9230
9366
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9231
9367
|
width: 24,
|
|
@@ -9245,7 +9381,7 @@
|
|
|
9245
9381
|
ProjectTemplateIcon.displayName = "ProjectTemplateIcon";
|
|
9246
9382
|
var ProjectTemplateIcon$1 = ProjectTemplateIcon;
|
|
9247
9383
|
|
|
9248
|
-
var _excluded$
|
|
9384
|
+
var _excluded$2q = ["gradient"];
|
|
9249
9385
|
|
|
9250
9386
|
/**
|
|
9251
9387
|
* @component ProjectsIcon
|
|
@@ -9275,7 +9411,7 @@
|
|
|
9275
9411
|
*/
|
|
9276
9412
|
var ProjectsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9277
9413
|
var gradient = _ref.gradient,
|
|
9278
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9414
|
+
props = _objectWithoutProperties(_ref, _excluded$2q);
|
|
9279
9415
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9280
9416
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9281
9417
|
width: 24,
|
|
@@ -9299,7 +9435,7 @@
|
|
|
9299
9435
|
ProjectsIcon.displayName = "ProjectsIcon";
|
|
9300
9436
|
var ProjectsIcon$1 = ProjectsIcon;
|
|
9301
9437
|
|
|
9302
|
-
var _excluded$
|
|
9438
|
+
var _excluded$2p = ["gradient"];
|
|
9303
9439
|
|
|
9304
9440
|
/**
|
|
9305
9441
|
* @component PuzzleIcon
|
|
@@ -9329,7 +9465,7 @@
|
|
|
9329
9465
|
*/
|
|
9330
9466
|
var PuzzleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9331
9467
|
var gradient = _ref.gradient,
|
|
9332
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9468
|
+
props = _objectWithoutProperties(_ref, _excluded$2p);
|
|
9333
9469
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9334
9470
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9335
9471
|
width: 24,
|
|
@@ -9350,7 +9486,7 @@
|
|
|
9350
9486
|
PuzzleIcon.displayName = "PuzzleIcon";
|
|
9351
9487
|
var PuzzleIcon$1 = PuzzleIcon;
|
|
9352
9488
|
|
|
9353
|
-
var _excluded$
|
|
9489
|
+
var _excluded$2o = ["gradient"];
|
|
9354
9490
|
|
|
9355
9491
|
/**
|
|
9356
9492
|
* @component RadioBlankIcon
|
|
@@ -9380,7 +9516,7 @@
|
|
|
9380
9516
|
*/
|
|
9381
9517
|
var RadioBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9382
9518
|
var gradient = _ref.gradient,
|
|
9383
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9519
|
+
props = _objectWithoutProperties(_ref, _excluded$2o);
|
|
9384
9520
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9385
9521
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9386
9522
|
width: 24,
|
|
@@ -9400,7 +9536,7 @@
|
|
|
9400
9536
|
RadioBlankIcon.displayName = "RadioBlankIcon";
|
|
9401
9537
|
var RadioBlankIcon$1 = RadioBlankIcon;
|
|
9402
9538
|
|
|
9403
|
-
var _excluded$
|
|
9539
|
+
var _excluded$2n = ["gradient"];
|
|
9404
9540
|
|
|
9405
9541
|
/**
|
|
9406
9542
|
* @component RadioButtonIcon
|
|
@@ -9430,7 +9566,7 @@
|
|
|
9430
9566
|
*/
|
|
9431
9567
|
var RadioButtonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9432
9568
|
var gradient = _ref.gradient,
|
|
9433
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9569
|
+
props = _objectWithoutProperties(_ref, _excluded$2n);
|
|
9434
9570
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9435
9571
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9436
9572
|
width: 16,
|
|
@@ -9458,7 +9594,7 @@
|
|
|
9458
9594
|
RadioButtonIcon.displayName = "RadioButtonIcon";
|
|
9459
9595
|
var RadioButtonIcon$1 = RadioButtonIcon;
|
|
9460
9596
|
|
|
9461
|
-
var _excluded$
|
|
9597
|
+
var _excluded$2m = ["gradient"];
|
|
9462
9598
|
|
|
9463
9599
|
/**
|
|
9464
9600
|
* @component RearangeIcon
|
|
@@ -9488,7 +9624,7 @@
|
|
|
9488
9624
|
*/
|
|
9489
9625
|
var RearangeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9490
9626
|
var gradient = _ref.gradient,
|
|
9491
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9627
|
+
props = _objectWithoutProperties(_ref, _excluded$2m);
|
|
9492
9628
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9493
9629
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9494
9630
|
width: 24,
|
|
@@ -9508,7 +9644,7 @@
|
|
|
9508
9644
|
RearangeIcon.displayName = "RearangeIcon";
|
|
9509
9645
|
var RearangeIcon$1 = RearangeIcon;
|
|
9510
9646
|
|
|
9511
|
-
var _excluded$
|
|
9647
|
+
var _excluded$2l = ["gradient"];
|
|
9512
9648
|
|
|
9513
9649
|
/**
|
|
9514
9650
|
* @component RearrangeSmallIcon
|
|
@@ -9538,7 +9674,7 @@
|
|
|
9538
9674
|
*/
|
|
9539
9675
|
var RearrangeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9540
9676
|
var gradient = _ref.gradient,
|
|
9541
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9677
|
+
props = _objectWithoutProperties(_ref, _excluded$2l);
|
|
9542
9678
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9543
9679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9544
9680
|
width: 12,
|
|
@@ -9558,7 +9694,7 @@
|
|
|
9558
9694
|
RearrangeSmallIcon.displayName = "RearrangeSmallIcon";
|
|
9559
9695
|
var RearrangeSmallIcon$1 = RearrangeSmallIcon;
|
|
9560
9696
|
|
|
9561
|
-
var _excluded$
|
|
9697
|
+
var _excluded$2k = ["gradient"];
|
|
9562
9698
|
|
|
9563
9699
|
/**
|
|
9564
9700
|
* @component RecurringCheckmarkSmallIcon
|
|
@@ -9588,7 +9724,7 @@
|
|
|
9588
9724
|
*/
|
|
9589
9725
|
var RecurringCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9590
9726
|
var gradient = _ref.gradient,
|
|
9591
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9727
|
+
props = _objectWithoutProperties(_ref, _excluded$2k);
|
|
9592
9728
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9593
9729
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9594
9730
|
width: 12,
|
|
@@ -9608,7 +9744,7 @@
|
|
|
9608
9744
|
RecurringCheckmarkSmallIcon.displayName = "RecurringCheckmarkSmallIcon";
|
|
9609
9745
|
var RecurringCheckmarkSmallIcon$1 = RecurringCheckmarkSmallIcon;
|
|
9610
9746
|
|
|
9611
|
-
var _excluded$
|
|
9747
|
+
var _excluded$2j = ["gradient"];
|
|
9612
9748
|
|
|
9613
9749
|
/**
|
|
9614
9750
|
* @component RecurringCheckmarkIcon
|
|
@@ -9638,7 +9774,7 @@
|
|
|
9638
9774
|
*/
|
|
9639
9775
|
var RecurringCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9640
9776
|
var gradient = _ref.gradient,
|
|
9641
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9777
|
+
props = _objectWithoutProperties(_ref, _excluded$2j);
|
|
9642
9778
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9643
9779
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9644
9780
|
width: 24,
|
|
@@ -9658,7 +9794,7 @@
|
|
|
9658
9794
|
RecurringCheckmarkIcon.displayName = "RecurringCheckmarkIcon";
|
|
9659
9795
|
var RecurringCheckmarkIcon$1 = RecurringCheckmarkIcon;
|
|
9660
9796
|
|
|
9661
|
-
var _excluded$
|
|
9797
|
+
var _excluded$2i = ["gradient"];
|
|
9662
9798
|
|
|
9663
9799
|
/**
|
|
9664
9800
|
* @component RecurringDollarIcon
|
|
@@ -9688,7 +9824,7 @@
|
|
|
9688
9824
|
*/
|
|
9689
9825
|
var RecurringDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9690
9826
|
var gradient = _ref.gradient,
|
|
9691
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9827
|
+
props = _objectWithoutProperties(_ref, _excluded$2i);
|
|
9692
9828
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9693
9829
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9694
9830
|
width: 24,
|
|
@@ -9710,7 +9846,7 @@
|
|
|
9710
9846
|
RecurringDollarIcon.displayName = "RecurringDollarIcon";
|
|
9711
9847
|
var RecurringDollarIcon$1 = RecurringDollarIcon;
|
|
9712
9848
|
|
|
9713
|
-
var _excluded$
|
|
9849
|
+
var _excluded$2h = ["gradient"];
|
|
9714
9850
|
|
|
9715
9851
|
/**
|
|
9716
9852
|
* @component RecurringSmallIcon
|
|
@@ -9740,7 +9876,7 @@
|
|
|
9740
9876
|
*/
|
|
9741
9877
|
var RecurringSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9742
9878
|
var gradient = _ref.gradient,
|
|
9743
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9879
|
+
props = _objectWithoutProperties(_ref, _excluded$2h);
|
|
9744
9880
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9745
9881
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9746
9882
|
width: 12,
|
|
@@ -9761,7 +9897,7 @@
|
|
|
9761
9897
|
RecurringSmallIcon.displayName = "RecurringSmallIcon";
|
|
9762
9898
|
var RecurringSmallIcon$1 = RecurringSmallIcon;
|
|
9763
9899
|
|
|
9764
|
-
var _excluded$
|
|
9900
|
+
var _excluded$2g = ["gradient"];
|
|
9765
9901
|
|
|
9766
9902
|
/**
|
|
9767
9903
|
* @component ReminderIcon
|
|
@@ -9791,7 +9927,7 @@
|
|
|
9791
9927
|
*/
|
|
9792
9928
|
var ReminderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9793
9929
|
var gradient = _ref.gradient,
|
|
9794
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9930
|
+
props = _objectWithoutProperties(_ref, _excluded$2g);
|
|
9795
9931
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9796
9932
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9797
9933
|
width: 18,
|
|
@@ -9817,7 +9953,7 @@
|
|
|
9817
9953
|
ReminderIcon.displayName = "ReminderIcon";
|
|
9818
9954
|
var ReminderIcon$1 = ReminderIcon;
|
|
9819
9955
|
|
|
9820
|
-
var _excluded$
|
|
9956
|
+
var _excluded$2f = ["gradient"];
|
|
9821
9957
|
|
|
9822
9958
|
/**
|
|
9823
9959
|
* @component ReorderIcon
|
|
@@ -9847,7 +9983,7 @@
|
|
|
9847
9983
|
*/
|
|
9848
9984
|
var ReorderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9849
9985
|
var gradient = _ref.gradient,
|
|
9850
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9986
|
+
props = _objectWithoutProperties(_ref, _excluded$2f);
|
|
9851
9987
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9852
9988
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9853
9989
|
width: 24,
|
|
@@ -9866,7 +10002,7 @@
|
|
|
9866
10002
|
ReorderIcon.displayName = "ReorderIcon";
|
|
9867
10003
|
var ReorderIcon$1 = ReorderIcon;
|
|
9868
10004
|
|
|
9869
|
-
var _excluded$
|
|
10005
|
+
var _excluded$2e = ["gradient"];
|
|
9870
10006
|
|
|
9871
10007
|
/**
|
|
9872
10008
|
* @component ReportTimeIcon
|
|
@@ -9896,7 +10032,7 @@
|
|
|
9896
10032
|
*/
|
|
9897
10033
|
var ReportTimeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9898
10034
|
var gradient = _ref.gradient,
|
|
9899
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10035
|
+
props = _objectWithoutProperties(_ref, _excluded$2e);
|
|
9900
10036
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9901
10037
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9902
10038
|
width: 24,
|
|
@@ -9916,7 +10052,7 @@
|
|
|
9916
10052
|
ReportTimeIcon.displayName = "ReportTimeIcon";
|
|
9917
10053
|
var ReportTimeIcon$1 = ReportTimeIcon;
|
|
9918
10054
|
|
|
9919
|
-
var _excluded$
|
|
10055
|
+
var _excluded$2d = ["gradient"];
|
|
9920
10056
|
|
|
9921
10057
|
/**
|
|
9922
10058
|
* @component ReportsIcon
|
|
@@ -9946,7 +10082,7 @@
|
|
|
9946
10082
|
*/
|
|
9947
10083
|
var ReportsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9948
10084
|
var gradient = _ref.gradient,
|
|
9949
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10085
|
+
props = _objectWithoutProperties(_ref, _excluded$2d);
|
|
9950
10086
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9951
10087
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9952
10088
|
width: 24,
|
|
@@ -9970,7 +10106,7 @@
|
|
|
9970
10106
|
ReportsIcon.displayName = "ReportsIcon";
|
|
9971
10107
|
var ReportsIcon$1 = ReportsIcon;
|
|
9972
10108
|
|
|
9973
|
-
var _excluded$
|
|
10109
|
+
var _excluded$2c = ["gradient"];
|
|
9974
10110
|
|
|
9975
10111
|
/**
|
|
9976
10112
|
* @component RobotIcon
|
|
@@ -10000,7 +10136,7 @@
|
|
|
10000
10136
|
*/
|
|
10001
10137
|
var RobotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10002
10138
|
var gradient = _ref.gradient,
|
|
10003
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10139
|
+
props = _objectWithoutProperties(_ref, _excluded$2c);
|
|
10004
10140
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10005
10141
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10006
10142
|
width: 24,
|
|
@@ -10023,7 +10159,7 @@
|
|
|
10023
10159
|
RobotIcon.displayName = "RobotIcon";
|
|
10024
10160
|
var RobotIcon$1 = RobotIcon;
|
|
10025
10161
|
|
|
10026
|
-
var _excluded$
|
|
10162
|
+
var _excluded$2b = ["gradient"];
|
|
10027
10163
|
|
|
10028
10164
|
/**
|
|
10029
10165
|
* @component RocketSmallIcon
|
|
@@ -10053,7 +10189,7 @@
|
|
|
10053
10189
|
*/
|
|
10054
10190
|
var RocketSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10055
10191
|
var gradient = _ref.gradient,
|
|
10056
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10192
|
+
props = _objectWithoutProperties(_ref, _excluded$2b);
|
|
10057
10193
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10058
10194
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10059
10195
|
width: 18,
|
|
@@ -10071,7 +10207,7 @@
|
|
|
10071
10207
|
RocketSmallIcon.displayName = "RocketSmallIcon";
|
|
10072
10208
|
var RocketSmallIcon$1 = RocketSmallIcon;
|
|
10073
10209
|
|
|
10074
|
-
var _excluded$
|
|
10210
|
+
var _excluded$2a = ["gradient"];
|
|
10075
10211
|
|
|
10076
10212
|
/**
|
|
10077
10213
|
* @component RocketIcon
|
|
@@ -10101,7 +10237,7 @@
|
|
|
10101
10237
|
*/
|
|
10102
10238
|
var RocketIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10103
10239
|
var gradient = _ref.gradient,
|
|
10104
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10240
|
+
props = _objectWithoutProperties(_ref, _excluded$2a);
|
|
10105
10241
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10106
10242
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10107
10243
|
width: 24,
|
|
@@ -10120,7 +10256,7 @@
|
|
|
10120
10256
|
RocketIcon.displayName = "RocketIcon";
|
|
10121
10257
|
var RocketIcon$1 = RocketIcon;
|
|
10122
10258
|
|
|
10123
|
-
var _excluded$
|
|
10259
|
+
var _excluded$29 = ["gradient"];
|
|
10124
10260
|
|
|
10125
10261
|
/**
|
|
10126
10262
|
* @component RoundedRectangleIcon
|
|
@@ -10150,7 +10286,7 @@
|
|
|
10150
10286
|
*/
|
|
10151
10287
|
var RoundedRectangleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10152
10288
|
var gradient = _ref.gradient,
|
|
10153
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10289
|
+
props = _objectWithoutProperties(_ref, _excluded$29);
|
|
10154
10290
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10155
10291
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10156
10292
|
width: 24,
|
|
@@ -10163,17 +10299,20 @@
|
|
|
10163
10299
|
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
10164
10300
|
gradient: gradient
|
|
10165
10301
|
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
10166
|
-
stroke: "
|
|
10302
|
+
stroke: "var(--color-theme-600)",
|
|
10167
10303
|
strokeLinecap: "round",
|
|
10168
10304
|
strokeLinejoin: "round",
|
|
10169
10305
|
strokeWidth: 2,
|
|
10170
|
-
d: "M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
10306
|
+
d: "M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2",
|
|
10307
|
+
style: {
|
|
10308
|
+
fill: "none"
|
|
10309
|
+
}
|
|
10171
10310
|
}));
|
|
10172
10311
|
});
|
|
10173
10312
|
RoundedRectangleIcon.displayName = "RoundedRectangleIcon";
|
|
10174
10313
|
var RoundedRectangleIcon$1 = RoundedRectangleIcon;
|
|
10175
10314
|
|
|
10176
|
-
var _excluded$
|
|
10315
|
+
var _excluded$28 = ["gradient"];
|
|
10177
10316
|
|
|
10178
10317
|
/**
|
|
10179
10318
|
* @component SaveIcon
|
|
@@ -10203,7 +10342,7 @@
|
|
|
10203
10342
|
*/
|
|
10204
10343
|
var SaveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10205
10344
|
var gradient = _ref.gradient,
|
|
10206
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10345
|
+
props = _objectWithoutProperties(_ref, _excluded$28);
|
|
10207
10346
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10208
10347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10209
10348
|
width: 24,
|
|
@@ -10224,7 +10363,7 @@
|
|
|
10224
10363
|
SaveIcon.displayName = "SaveIcon";
|
|
10225
10364
|
var SaveIcon$1 = SaveIcon;
|
|
10226
10365
|
|
|
10227
|
-
var _excluded$
|
|
10366
|
+
var _excluded$27 = ["gradient"];
|
|
10228
10367
|
|
|
10229
10368
|
/**
|
|
10230
10369
|
* @component SearchLargeIcon
|
|
@@ -10254,7 +10393,7 @@
|
|
|
10254
10393
|
*/
|
|
10255
10394
|
var SearchLargeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10256
10395
|
var gradient = _ref.gradient,
|
|
10257
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10396
|
+
props = _objectWithoutProperties(_ref, _excluded$27);
|
|
10258
10397
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10259
10398
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10260
10399
|
width: 32,
|
|
@@ -10275,7 +10414,7 @@
|
|
|
10275
10414
|
SearchLargeIcon.displayName = "SearchLargeIcon";
|
|
10276
10415
|
var SearchLargeIcon$1 = SearchLargeIcon;
|
|
10277
10416
|
|
|
10278
|
-
var _excluded$
|
|
10417
|
+
var _excluded$26 = ["gradient"];
|
|
10279
10418
|
|
|
10280
10419
|
/**
|
|
10281
10420
|
* @component SearchPlusIcon
|
|
@@ -10305,7 +10444,7 @@
|
|
|
10305
10444
|
*/
|
|
10306
10445
|
var SearchPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10307
10446
|
var gradient = _ref.gradient,
|
|
10308
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10447
|
+
props = _objectWithoutProperties(_ref, _excluded$26);
|
|
10309
10448
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10310
10449
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10311
10450
|
width: 24,
|
|
@@ -10329,7 +10468,7 @@
|
|
|
10329
10468
|
SearchPlusIcon.displayName = "SearchPlusIcon";
|
|
10330
10469
|
var SearchPlusIcon$1 = SearchPlusIcon;
|
|
10331
10470
|
|
|
10332
|
-
var _excluded$
|
|
10471
|
+
var _excluded$25 = ["gradient"];
|
|
10333
10472
|
|
|
10334
10473
|
/**
|
|
10335
10474
|
* @component SearchIcon
|
|
@@ -10359,7 +10498,7 @@
|
|
|
10359
10498
|
*/
|
|
10360
10499
|
var SearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10361
10500
|
var gradient = _ref.gradient,
|
|
10362
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10501
|
+
props = _objectWithoutProperties(_ref, _excluded$25);
|
|
10363
10502
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10364
10503
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10365
10504
|
width: 24,
|
|
@@ -10378,7 +10517,7 @@
|
|
|
10378
10517
|
SearchIcon.displayName = "SearchIcon";
|
|
10379
10518
|
var SearchIcon$1 = SearchIcon;
|
|
10380
10519
|
|
|
10381
|
-
var _excluded$
|
|
10520
|
+
var _excluded$24 = ["gradient"];
|
|
10382
10521
|
|
|
10383
10522
|
/**
|
|
10384
10523
|
* @component SendBlankIcon
|
|
@@ -10408,7 +10547,7 @@
|
|
|
10408
10547
|
*/
|
|
10409
10548
|
var SendBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10410
10549
|
var gradient = _ref.gradient,
|
|
10411
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10550
|
+
props = _objectWithoutProperties(_ref, _excluded$24);
|
|
10412
10551
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10413
10552
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10414
10553
|
width: 24,
|
|
@@ -10427,7 +10566,7 @@
|
|
|
10427
10566
|
SendBlankIcon.displayName = "SendBlankIcon";
|
|
10428
10567
|
var SendBlankIcon$1 = SendBlankIcon;
|
|
10429
10568
|
|
|
10430
|
-
var _excluded$
|
|
10569
|
+
var _excluded$23 = ["gradient"];
|
|
10431
10570
|
|
|
10432
10571
|
/**
|
|
10433
10572
|
* @component SendFilledIcon
|
|
@@ -10457,7 +10596,7 @@
|
|
|
10457
10596
|
*/
|
|
10458
10597
|
var SendFilledIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10459
10598
|
var gradient = _ref.gradient,
|
|
10460
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10599
|
+
props = _objectWithoutProperties(_ref, _excluded$23);
|
|
10461
10600
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10462
10601
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10463
10602
|
width: 24,
|
|
@@ -10476,7 +10615,7 @@
|
|
|
10476
10615
|
SendFilledIcon.displayName = "SendFilledIcon";
|
|
10477
10616
|
var SendFilledIcon$1 = SendFilledIcon;
|
|
10478
10617
|
|
|
10479
|
-
var _excluded$
|
|
10618
|
+
var _excluded$22 = ["gradient"];
|
|
10480
10619
|
|
|
10481
10620
|
/**
|
|
10482
10621
|
* @component SettingsIcon
|
|
@@ -10506,7 +10645,7 @@
|
|
|
10506
10645
|
*/
|
|
10507
10646
|
var SettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10508
10647
|
var gradient = _ref.gradient,
|
|
10509
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10648
|
+
props = _objectWithoutProperties(_ref, _excluded$22);
|
|
10510
10649
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10511
10650
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10512
10651
|
width: 24,
|
|
@@ -10526,7 +10665,7 @@
|
|
|
10526
10665
|
SettingsIcon.displayName = "SettingsIcon";
|
|
10527
10666
|
var SettingsIcon$1 = SettingsIcon;
|
|
10528
10667
|
|
|
10529
|
-
var _excluded$
|
|
10668
|
+
var _excluded$21 = ["gradient"];
|
|
10530
10669
|
|
|
10531
10670
|
/**
|
|
10532
10671
|
* @component ShieldIcon
|
|
@@ -10556,7 +10695,7 @@
|
|
|
10556
10695
|
*/
|
|
10557
10696
|
var ShieldIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10558
10697
|
var gradient = _ref.gradient,
|
|
10559
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10698
|
+
props = _objectWithoutProperties(_ref, _excluded$21);
|
|
10560
10699
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10561
10700
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10562
10701
|
width: 24,
|
|
@@ -10577,7 +10716,7 @@
|
|
|
10577
10716
|
ShieldIcon.displayName = "ShieldIcon";
|
|
10578
10717
|
var ShieldIcon$1 = ShieldIcon;
|
|
10579
10718
|
|
|
10580
|
-
var _excluded$
|
|
10719
|
+
var _excluded$20 = ["gradient"];
|
|
10581
10720
|
|
|
10582
10721
|
/**
|
|
10583
10722
|
* @component SortGeneralIcon
|
|
@@ -10607,7 +10746,7 @@
|
|
|
10607
10746
|
*/
|
|
10608
10747
|
var SortGeneralIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10609
10748
|
var gradient = _ref.gradient,
|
|
10610
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10749
|
+
props = _objectWithoutProperties(_ref, _excluded$20);
|
|
10611
10750
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10612
10751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10613
10752
|
width: 24,
|
|
@@ -10627,7 +10766,7 @@
|
|
|
10627
10766
|
SortGeneralIcon.displayName = "SortGeneralIcon";
|
|
10628
10767
|
var SortGeneralIcon$1 = SortGeneralIcon;
|
|
10629
10768
|
|
|
10630
|
-
var _excluded$
|
|
10769
|
+
var _excluded$1$ = ["gradient"];
|
|
10631
10770
|
|
|
10632
10771
|
/**
|
|
10633
10772
|
* @component SortIcon
|
|
@@ -10657,7 +10796,7 @@
|
|
|
10657
10796
|
*/
|
|
10658
10797
|
var SortIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10659
10798
|
var gradient = _ref.gradient,
|
|
10660
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10799
|
+
props = _objectWithoutProperties(_ref, _excluded$1$);
|
|
10661
10800
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10662
10801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10663
10802
|
width: 10,
|
|
@@ -10677,7 +10816,7 @@
|
|
|
10677
10816
|
SortIcon.displayName = "SortIcon";
|
|
10678
10817
|
var SortIcon$1 = SortIcon;
|
|
10679
10818
|
|
|
10680
|
-
var _excluded$
|
|
10819
|
+
var _excluded$1_ = ["gradient"];
|
|
10681
10820
|
|
|
10682
10821
|
/**
|
|
10683
10822
|
* @component SortListIcon
|
|
@@ -10707,7 +10846,7 @@
|
|
|
10707
10846
|
*/
|
|
10708
10847
|
var SortListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10709
10848
|
var gradient = _ref.gradient,
|
|
10710
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10849
|
+
props = _objectWithoutProperties(_ref, _excluded$1_);
|
|
10711
10850
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10712
10851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10713
10852
|
width: 20,
|
|
@@ -10727,7 +10866,7 @@
|
|
|
10727
10866
|
SortListIcon.displayName = "SortListIcon";
|
|
10728
10867
|
var SortListIcon$1 = SortListIcon;
|
|
10729
10868
|
|
|
10730
|
-
var _excluded$
|
|
10869
|
+
var _excluded$1Z = ["gradient"];
|
|
10731
10870
|
|
|
10732
10871
|
/**
|
|
10733
10872
|
* @component SortSmallIcon
|
|
@@ -10757,7 +10896,7 @@
|
|
|
10757
10896
|
*/
|
|
10758
10897
|
var SortSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10759
10898
|
var gradient = _ref.gradient,
|
|
10760
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10899
|
+
props = _objectWithoutProperties(_ref, _excluded$1Z);
|
|
10761
10900
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10762
10901
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10763
10902
|
width: 10,
|
|
@@ -10778,6 +10917,47 @@
|
|
|
10778
10917
|
SortSmallIcon.displayName = "SortSmallIcon";
|
|
10779
10918
|
var SortSmallIcon$1 = SortSmallIcon;
|
|
10780
10919
|
|
|
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
|
+
|
|
10781
10961
|
var _excluded$1X = ["gradient"];
|
|
10782
10962
|
|
|
10783
10963
|
/**
|
|
@@ -11029,9 +11209,15 @@
|
|
|
11029
11209
|
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
11030
11210
|
gradient: gradient
|
|
11031
11211
|
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
11032
|
-
d: "M3 6.95a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v6.087a4 4 0 0 1-1.161 2.819l-3.884 3.912a4 4 0 0 1-2.84 1.182H7a4 4 0 0 1-4-4z"
|
|
11212
|
+
d: "M3 6.95a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v6.087a4 4 0 0 1-1.161 2.819l-3.884 3.912a4 4 0 0 1-2.84 1.182H7a4 4 0 0 1-4-4z",
|
|
11213
|
+
style: {
|
|
11214
|
+
fill: "#ffcc6b"
|
|
11215
|
+
}
|
|
11033
11216
|
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
11034
|
-
d: "M17.031 13.95h2a2 2 0 0 0 1.992-1.818l.008-2.651v2.469q0 .092-.008.182l-.003.866a4 4 0 0 1-1.144 2.789L15.99 19.75a4 4 0 0 1-2.856 1.2H12.03a2 2 0 0 0 2-2v-2a3 3 0 0 1 3.001-3"
|
|
11217
|
+
d: "M17.031 13.95h2a2 2 0 0 0 1.992-1.818l.008-2.651v2.469q0 .092-.008.182l-.003.866a4 4 0 0 1-1.144 2.789L15.99 19.75a4 4 0 0 1-2.856 1.2H12.03a2 2 0 0 0 2-2v-2a3 3 0 0 1 3.001-3",
|
|
11218
|
+
style: {
|
|
11219
|
+
fill: "#c49cb6"
|
|
11220
|
+
}
|
|
11035
11221
|
}));
|
|
11036
11222
|
});
|
|
11037
11223
|
StickyIcon.displayName = "StickyIcon";
|
|
@@ -11692,11 +11878,14 @@
|
|
|
11692
11878
|
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
11693
11879
|
gradient: gradient
|
|
11694
11880
|
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
11695
|
-
stroke: "
|
|
11881
|
+
stroke: "var(--color-theme-600)",
|
|
11696
11882
|
strokeLinecap: "round",
|
|
11697
11883
|
strokeLinejoin: "round",
|
|
11698
11884
|
strokeWidth: 2,
|
|
11699
|
-
d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0"
|
|
11885
|
+
d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0",
|
|
11886
|
+
style: {
|
|
11887
|
+
fill: "none"
|
|
11888
|
+
}
|
|
11700
11889
|
}));
|
|
11701
11890
|
});
|
|
11702
11891
|
TriangleIcon.displayName = "TriangleIcon";
|
|
@@ -25994,6 +26183,9 @@
|
|
|
25994
26183
|
exports.FolderOutlineIcon = FolderOutlineIcon$1;
|
|
25995
26184
|
exports.FromElement = FromElement;
|
|
25996
26185
|
exports.GiftIcon = GiftIcon$1;
|
|
26186
|
+
exports.GitBranchIcon = GitBranchIcon$1;
|
|
26187
|
+
exports.GitCommitIcon = GitCommitIcon$1;
|
|
26188
|
+
exports.GitPullRequestIcon = GitPullRequestIcon$1;
|
|
25997
26189
|
exports.GlobalAddButton = GlobalAddButton;
|
|
25998
26190
|
exports.GlobalStyle = GlobalStyle;
|
|
25999
26191
|
exports.GroupByIcon = GroupByIcon$1;
|
|
@@ -26154,6 +26346,7 @@
|
|
|
26154
26346
|
exports.SortIcon = SortIcon$1;
|
|
26155
26347
|
exports.SortListIcon = SortListIcon$1;
|
|
26156
26348
|
exports.SortSmallIcon = SortSmallIcon$1;
|
|
26349
|
+
exports.SourceCodeIcon = SourceCodeIcon$1;
|
|
26157
26350
|
exports.SparkIcon = SparkIcon$1;
|
|
26158
26351
|
exports.SpinnerLoader = SpinnerLoader;
|
|
26159
26352
|
exports.StarIcon = StarIcon$1;
|