@activecollab/components 2.0.381 → 2.0.382
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/CircleSlashIcon.js +66 -0
- package/dist/cjs/components/Icons/collection/CircleSlashIcon.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +7 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/CircleSlashIcon.d.ts +36 -0
- package/dist/esm/components/Icons/collection/CircleSlashIcon.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/CircleSlashIcon.js +59 -0
- package/dist/esm/components/Icons/collection/CircleSlashIcon.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +1 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +156 -100
- 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$5G = ["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$5G);
|
|
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$5F = ["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$5F);
|
|
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$5E = ["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$5E);
|
|
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$5D = ["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$5D);
|
|
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$5C = ["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$5C);
|
|
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$5B = ["className"];
|
|
424
424
|
var ListSeparator = function ListSeparator(_ref) {
|
|
425
425
|
var className = _ref.className,
|
|
426
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
426
|
+
props = _objectWithoutProperties(_ref, _excluded$5B);
|
|
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$5A = ["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$5A);
|
|
438
438
|
return /*#__PURE__*/React__default["default"].createElement(StyledList$1, _extends({
|
|
439
439
|
className: className,
|
|
440
440
|
ref: ref,
|
|
@@ -1033,7 +1033,7 @@
|
|
|
1033
1033
|
return size === "big" && styled.css(["width:40px;"]);
|
|
1034
1034
|
});
|
|
1035
1035
|
|
|
1036
|
-
var _excluded$
|
|
1036
|
+
var _excluded$5z = ["children", "className", "variant", "size", "active"];
|
|
1037
1037
|
|
|
1038
1038
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
1039
1039
|
|
|
@@ -1063,7 +1063,7 @@
|
|
|
1063
1063
|
variant = _ref.variant,
|
|
1064
1064
|
size = _ref.size,
|
|
1065
1065
|
active = _ref.active,
|
|
1066
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
1066
|
+
args = _objectWithoutProperties(_ref, _excluded$5z);
|
|
1067
1067
|
return /*#__PURE__*/React__default["default"].createElement(StyledIconButton$1, _extends({
|
|
1068
1068
|
className: className,
|
|
1069
1069
|
variant: variant,
|
|
@@ -1074,7 +1074,7 @@
|
|
|
1074
1074
|
});
|
|
1075
1075
|
IconButton.displayName = "IconButton";
|
|
1076
1076
|
|
|
1077
|
-
var _excluded$
|
|
1077
|
+
var _excluded$5y = ["gradient"];
|
|
1078
1078
|
|
|
1079
1079
|
/**
|
|
1080
1080
|
* @component RecurringIcon
|
|
@@ -1104,7 +1104,7 @@
|
|
|
1104
1104
|
*/
|
|
1105
1105
|
var RecurringIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1106
1106
|
var gradient = _ref.gradient,
|
|
1107
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1107
|
+
props = _objectWithoutProperties(_ref, _excluded$5y);
|
|
1108
1108
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1109
1109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1110
1110
|
width: 18,
|
|
@@ -1125,7 +1125,7 @@
|
|
|
1125
1125
|
RecurringIcon.displayName = "RecurringIcon";
|
|
1126
1126
|
var RecurringIcon$1 = RecurringIcon;
|
|
1127
1127
|
|
|
1128
|
-
var _excluded$
|
|
1128
|
+
var _excluded$5x = ["gradient"];
|
|
1129
1129
|
|
|
1130
1130
|
/**
|
|
1131
1131
|
* @component AccessLogIcon
|
|
@@ -1155,7 +1155,7 @@
|
|
|
1155
1155
|
*/
|
|
1156
1156
|
var AccessLogIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1157
1157
|
var gradient = _ref.gradient,
|
|
1158
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1158
|
+
props = _objectWithoutProperties(_ref, _excluded$5x);
|
|
1159
1159
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1160
1160
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1161
1161
|
width: 24,
|
|
@@ -1183,7 +1183,7 @@
|
|
|
1183
1183
|
AccessLogIcon.displayName = "AccessLogIcon";
|
|
1184
1184
|
var AccessLogIcon$1 = AccessLogIcon;
|
|
1185
1185
|
|
|
1186
|
-
var _excluded$
|
|
1186
|
+
var _excluded$5w = ["gradient"];
|
|
1187
1187
|
|
|
1188
1188
|
/**
|
|
1189
1189
|
* @component ActivityIcon
|
|
@@ -1213,7 +1213,7 @@
|
|
|
1213
1213
|
*/
|
|
1214
1214
|
var ActivityIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1215
1215
|
var gradient = _ref.gradient,
|
|
1216
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1216
|
+
props = _objectWithoutProperties(_ref, _excluded$5w);
|
|
1217
1217
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1218
1218
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1219
1219
|
width: 24,
|
|
@@ -1237,7 +1237,7 @@
|
|
|
1237
1237
|
ActivityIcon.displayName = "ActivityIcon";
|
|
1238
1238
|
var ActivityIcon$1 = ActivityIcon;
|
|
1239
1239
|
|
|
1240
|
-
var _excluded$
|
|
1240
|
+
var _excluded$5v = ["gradient"];
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
1243
|
* @component AddCrossIcon
|
|
@@ -1267,7 +1267,7 @@
|
|
|
1267
1267
|
*/
|
|
1268
1268
|
var AddCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1269
1269
|
var gradient = _ref.gradient,
|
|
1270
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1270
|
+
props = _objectWithoutProperties(_ref, _excluded$5v);
|
|
1271
1271
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1272
1272
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1273
1273
|
width: 10,
|
|
@@ -1287,7 +1287,7 @@
|
|
|
1287
1287
|
AddCrossIcon.displayName = "AddCrossIcon";
|
|
1288
1288
|
var AddCrossIcon$1 = AddCrossIcon;
|
|
1289
1289
|
|
|
1290
|
-
var _excluded$
|
|
1290
|
+
var _excluded$5u = ["gradient"];
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
1293
|
* @component ArchiveIcon
|
|
@@ -1317,7 +1317,7 @@
|
|
|
1317
1317
|
*/
|
|
1318
1318
|
var ArchiveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1319
1319
|
var gradient = _ref.gradient,
|
|
1320
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1320
|
+
props = _objectWithoutProperties(_ref, _excluded$5u);
|
|
1321
1321
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1322
1322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1323
1323
|
width: 24,
|
|
@@ -1338,7 +1338,7 @@
|
|
|
1338
1338
|
ArchiveIcon.displayName = "ArchiveIcon";
|
|
1339
1339
|
var ArchiveIcon$1 = ArchiveIcon;
|
|
1340
1340
|
|
|
1341
|
-
var _excluded$
|
|
1341
|
+
var _excluded$5t = ["gradient"];
|
|
1342
1342
|
|
|
1343
1343
|
/**
|
|
1344
1344
|
* @component ArrowBackMobileIcon
|
|
@@ -1368,7 +1368,7 @@
|
|
|
1368
1368
|
*/
|
|
1369
1369
|
var ArrowBackMobileIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1370
1370
|
var gradient = _ref.gradient,
|
|
1371
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1371
|
+
props = _objectWithoutProperties(_ref, _excluded$5t);
|
|
1372
1372
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1373
1373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1374
1374
|
width: 24,
|
|
@@ -1389,7 +1389,7 @@
|
|
|
1389
1389
|
ArrowBackMobileIcon.displayName = "ArrowBackMobileIcon";
|
|
1390
1390
|
var ArrowBackMobileIcon$1 = ArrowBackMobileIcon;
|
|
1391
1391
|
|
|
1392
|
-
var _excluded$
|
|
1392
|
+
var _excluded$5s = ["gradient"];
|
|
1393
1393
|
|
|
1394
1394
|
/**
|
|
1395
1395
|
* @component ArrowCollapseMultipleIcon
|
|
@@ -1419,7 +1419,7 @@
|
|
|
1419
1419
|
*/
|
|
1420
1420
|
var ArrowCollapseMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1421
1421
|
var gradient = _ref.gradient,
|
|
1422
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1422
|
+
props = _objectWithoutProperties(_ref, _excluded$5s);
|
|
1423
1423
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1424
1424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1425
1425
|
width: 24,
|
|
@@ -1439,7 +1439,7 @@
|
|
|
1439
1439
|
ArrowCollapseMultipleIcon.displayName = "ArrowCollapseMultipleIcon";
|
|
1440
1440
|
var ArrowCollapseMultipleIcon$1 = ArrowCollapseMultipleIcon;
|
|
1441
1441
|
|
|
1442
|
-
var _excluded$
|
|
1442
|
+
var _excluded$5r = ["gradient"];
|
|
1443
1443
|
|
|
1444
1444
|
/**
|
|
1445
1445
|
* @component ArrowDownLongIcon
|
|
@@ -1469,7 +1469,7 @@
|
|
|
1469
1469
|
*/
|
|
1470
1470
|
var ArrowDownLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1471
1471
|
var gradient = _ref.gradient,
|
|
1472
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1472
|
+
props = _objectWithoutProperties(_ref, _excluded$5r);
|
|
1473
1473
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1474
1474
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1475
1475
|
width: 24,
|
|
@@ -1489,7 +1489,7 @@
|
|
|
1489
1489
|
ArrowDownLongIcon.displayName = "ArrowDownLongIcon";
|
|
1490
1490
|
var ArrowDownLongIcon$1 = ArrowDownLongIcon;
|
|
1491
1491
|
|
|
1492
|
-
var _excluded$
|
|
1492
|
+
var _excluded$5q = ["gradient"];
|
|
1493
1493
|
|
|
1494
1494
|
/**
|
|
1495
1495
|
* @component ArrowDownSmallIcon
|
|
@@ -1519,7 +1519,7 @@
|
|
|
1519
1519
|
*/
|
|
1520
1520
|
var ArrowDownSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1521
1521
|
var gradient = _ref.gradient,
|
|
1522
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1522
|
+
props = _objectWithoutProperties(_ref, _excluded$5q);
|
|
1523
1523
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1524
1524
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1525
1525
|
width: 16,
|
|
@@ -1539,7 +1539,7 @@
|
|
|
1539
1539
|
ArrowDownSmallIcon.displayName = "ArrowDownSmallIcon";
|
|
1540
1540
|
var ArrowDownSmallIcon$1 = ArrowDownSmallIcon;
|
|
1541
1541
|
|
|
1542
|
-
var _excluded$
|
|
1542
|
+
var _excluded$5p = ["gradient"];
|
|
1543
1543
|
|
|
1544
1544
|
/**
|
|
1545
1545
|
* @component ArrowDownIcon
|
|
@@ -1569,7 +1569,7 @@
|
|
|
1569
1569
|
*/
|
|
1570
1570
|
var ArrowDownIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1571
1571
|
var gradient = _ref.gradient,
|
|
1572
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1572
|
+
props = _objectWithoutProperties(_ref, _excluded$5p);
|
|
1573
1573
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1574
1574
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1575
1575
|
width: 24,
|
|
@@ -1588,7 +1588,7 @@
|
|
|
1588
1588
|
ArrowDownIcon.displayName = "ArrowDownIcon";
|
|
1589
1589
|
var ArrowDownIcon$1 = ArrowDownIcon;
|
|
1590
1590
|
|
|
1591
|
-
var _excluded$
|
|
1591
|
+
var _excluded$5o = ["gradient"];
|
|
1592
1592
|
|
|
1593
1593
|
/**
|
|
1594
1594
|
* @component ArrowExpandeMultipleIcon
|
|
@@ -1618,7 +1618,7 @@
|
|
|
1618
1618
|
*/
|
|
1619
1619
|
var ArrowExpandeMultipleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1620
1620
|
var gradient = _ref.gradient,
|
|
1621
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1621
|
+
props = _objectWithoutProperties(_ref, _excluded$5o);
|
|
1622
1622
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1623
1623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1624
1624
|
width: 24,
|
|
@@ -1638,7 +1638,7 @@
|
|
|
1638
1638
|
ArrowExpandeMultipleIcon.displayName = "ArrowExpandeMultipleIcon";
|
|
1639
1639
|
var ArrowExpandeMultipleIcon$1 = ArrowExpandeMultipleIcon;
|
|
1640
1640
|
|
|
1641
|
-
var _excluded$
|
|
1641
|
+
var _excluded$5n = ["gradient"];
|
|
1642
1642
|
|
|
1643
1643
|
/**
|
|
1644
1644
|
* @component ArrowLeftBoxIcon
|
|
@@ -1668,7 +1668,7 @@
|
|
|
1668
1668
|
*/
|
|
1669
1669
|
var ArrowLeftBoxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1670
1670
|
var gradient = _ref.gradient,
|
|
1671
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1671
|
+
props = _objectWithoutProperties(_ref, _excluded$5n);
|
|
1672
1672
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1673
1673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1674
1674
|
width: 24,
|
|
@@ -1688,7 +1688,7 @@
|
|
|
1688
1688
|
ArrowLeftBoxIcon.displayName = "ArrowLeftBoxIcon";
|
|
1689
1689
|
var ArrowLeftBoxIcon$1 = ArrowLeftBoxIcon;
|
|
1690
1690
|
|
|
1691
|
-
var _excluded$
|
|
1691
|
+
var _excluded$5m = ["gradient"];
|
|
1692
1692
|
|
|
1693
1693
|
/**
|
|
1694
1694
|
* @component ArrowLeftIcon
|
|
@@ -1718,7 +1718,7 @@
|
|
|
1718
1718
|
*/
|
|
1719
1719
|
var ArrowLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1720
1720
|
var gradient = _ref.gradient,
|
|
1721
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1721
|
+
props = _objectWithoutProperties(_ref, _excluded$5m);
|
|
1722
1722
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1723
1723
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1724
1724
|
width: 24,
|
|
@@ -1738,7 +1738,7 @@
|
|
|
1738
1738
|
ArrowLeftIcon.displayName = "ArrowLeftIcon";
|
|
1739
1739
|
var ArrowLeftIcon$1 = ArrowLeftIcon;
|
|
1740
1740
|
|
|
1741
|
-
var _excluded$
|
|
1741
|
+
var _excluded$5l = ["gradient"];
|
|
1742
1742
|
|
|
1743
1743
|
/**
|
|
1744
1744
|
* @component ArrowRefreshIcon
|
|
@@ -1768,7 +1768,7 @@
|
|
|
1768
1768
|
*/
|
|
1769
1769
|
var ArrowRefreshIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1770
1770
|
var gradient = _ref.gradient,
|
|
1771
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1771
|
+
props = _objectWithoutProperties(_ref, _excluded$5l);
|
|
1772
1772
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1773
1773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1774
1774
|
width: 24,
|
|
@@ -1789,7 +1789,7 @@
|
|
|
1789
1789
|
ArrowRefreshIcon.displayName = "ArrowRefreshIcon";
|
|
1790
1790
|
var ArrowRefreshIcon$1 = ArrowRefreshIcon;
|
|
1791
1791
|
|
|
1792
|
-
var _excluded$
|
|
1792
|
+
var _excluded$5k = ["gradient"];
|
|
1793
1793
|
|
|
1794
1794
|
/**
|
|
1795
1795
|
* @component ArrowRestoreIcon
|
|
@@ -1819,7 +1819,7 @@
|
|
|
1819
1819
|
*/
|
|
1820
1820
|
var ArrowRestoreIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1821
1821
|
var gradient = _ref.gradient,
|
|
1822
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1822
|
+
props = _objectWithoutProperties(_ref, _excluded$5k);
|
|
1823
1823
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1824
1824
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1825
1825
|
width: 24,
|
|
@@ -1839,7 +1839,7 @@
|
|
|
1839
1839
|
ArrowRestoreIcon.displayName = "ArrowRestoreIcon";
|
|
1840
1840
|
var ArrowRestoreIcon$1 = ArrowRestoreIcon;
|
|
1841
1841
|
|
|
1842
|
-
var _excluded$
|
|
1842
|
+
var _excluded$5j = ["gradient"];
|
|
1843
1843
|
|
|
1844
1844
|
/**
|
|
1845
1845
|
* @component ArrowRightIcon
|
|
@@ -1869,7 +1869,7 @@
|
|
|
1869
1869
|
*/
|
|
1870
1870
|
var ArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1871
1871
|
var gradient = _ref.gradient,
|
|
1872
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1872
|
+
props = _objectWithoutProperties(_ref, _excluded$5j);
|
|
1873
1873
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1874
1874
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1875
1875
|
width: 24,
|
|
@@ -1889,7 +1889,7 @@
|
|
|
1889
1889
|
ArrowRightIcon.displayName = "ArrowRightIcon";
|
|
1890
1890
|
var ArrowRightIcon$1 = ArrowRightIcon;
|
|
1891
1891
|
|
|
1892
|
-
var _excluded$
|
|
1892
|
+
var _excluded$5i = ["gradient"];
|
|
1893
1893
|
|
|
1894
1894
|
/**
|
|
1895
1895
|
* @component ArrowUpLongIcon
|
|
@@ -1919,7 +1919,7 @@
|
|
|
1919
1919
|
*/
|
|
1920
1920
|
var ArrowUpLongIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1921
1921
|
var gradient = _ref.gradient,
|
|
1922
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1922
|
+
props = _objectWithoutProperties(_ref, _excluded$5i);
|
|
1923
1923
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1924
1924
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1925
1925
|
width: 24,
|
|
@@ -1939,7 +1939,7 @@
|
|
|
1939
1939
|
ArrowUpLongIcon.displayName = "ArrowUpLongIcon";
|
|
1940
1940
|
var ArrowUpLongIcon$1 = ArrowUpLongIcon;
|
|
1941
1941
|
|
|
1942
|
-
var _excluded$
|
|
1942
|
+
var _excluded$5h = ["gradient"];
|
|
1943
1943
|
|
|
1944
1944
|
/**
|
|
1945
1945
|
* @component ArrowUpIcon
|
|
@@ -1969,7 +1969,7 @@
|
|
|
1969
1969
|
*/
|
|
1970
1970
|
var ArrowUpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
1971
1971
|
var gradient = _ref.gradient,
|
|
1972
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1972
|
+
props = _objectWithoutProperties(_ref, _excluded$5h);
|
|
1973
1973
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1974
1974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1975
1975
|
width: 24,
|
|
@@ -1988,7 +1988,7 @@
|
|
|
1988
1988
|
ArrowUpIcon.displayName = "ArrowUpIcon";
|
|
1989
1989
|
var ArrowUpIcon$1 = ArrowUpIcon;
|
|
1990
1990
|
|
|
1991
|
-
var _excluded$
|
|
1991
|
+
var _excluded$5g = ["gradient"];
|
|
1992
1992
|
|
|
1993
1993
|
/**
|
|
1994
1994
|
* @component AssignIcon
|
|
@@ -2018,7 +2018,7 @@
|
|
|
2018
2018
|
*/
|
|
2019
2019
|
var AssignIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2020
2020
|
var gradient = _ref.gradient,
|
|
2021
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2021
|
+
props = _objectWithoutProperties(_ref, _excluded$5g);
|
|
2022
2022
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2023
2023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2024
2024
|
width: 24,
|
|
@@ -2038,7 +2038,7 @@
|
|
|
2038
2038
|
AssignIcon.displayName = "AssignIcon";
|
|
2039
2039
|
var AssignIcon$1 = AssignIcon;
|
|
2040
2040
|
|
|
2041
|
-
var _excluded$
|
|
2041
|
+
var _excluded$5f = ["gradient"];
|
|
2042
2042
|
|
|
2043
2043
|
/**
|
|
2044
2044
|
* @component AttachmentIcon
|
|
@@ -2068,7 +2068,7 @@
|
|
|
2068
2068
|
*/
|
|
2069
2069
|
var AttachmentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2070
2070
|
var gradient = _ref.gradient,
|
|
2071
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2071
|
+
props = _objectWithoutProperties(_ref, _excluded$5f);
|
|
2072
2072
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2073
2073
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2074
2074
|
width: 24,
|
|
@@ -2088,7 +2088,7 @@
|
|
|
2088
2088
|
AttachmentIcon.displayName = "AttachmentIcon";
|
|
2089
2089
|
var AttachmentIcon$1 = AttachmentIcon;
|
|
2090
2090
|
|
|
2091
|
-
var _excluded$
|
|
2091
|
+
var _excluded$5e = ["gradient"];
|
|
2092
2092
|
|
|
2093
2093
|
/**
|
|
2094
2094
|
* @component BellOffSmallIcon
|
|
@@ -2118,7 +2118,7 @@
|
|
|
2118
2118
|
*/
|
|
2119
2119
|
var BellOffSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2120
2120
|
var gradient = _ref.gradient,
|
|
2121
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2121
|
+
props = _objectWithoutProperties(_ref, _excluded$5e);
|
|
2122
2122
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2123
2123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2124
2124
|
width: 12,
|
|
@@ -2138,7 +2138,7 @@
|
|
|
2138
2138
|
BellOffSmallIcon.displayName = "BellOffSmallIcon";
|
|
2139
2139
|
var BellOffSmallIcon$1 = BellOffSmallIcon;
|
|
2140
2140
|
|
|
2141
|
-
var _excluded$
|
|
2141
|
+
var _excluded$5d = ["gradient"];
|
|
2142
2142
|
|
|
2143
2143
|
/**
|
|
2144
2144
|
* @component BellOffIcon
|
|
@@ -2168,7 +2168,7 @@
|
|
|
2168
2168
|
*/
|
|
2169
2169
|
var BellOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2170
2170
|
var gradient = _ref.gradient,
|
|
2171
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2171
|
+
props = _objectWithoutProperties(_ref, _excluded$5d);
|
|
2172
2172
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2173
2173
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2174
2174
|
width: 24,
|
|
@@ -2188,7 +2188,7 @@
|
|
|
2188
2188
|
BellOffIcon.displayName = "BellOffIcon";
|
|
2189
2189
|
var BellOffIcon$1 = BellOffIcon;
|
|
2190
2190
|
|
|
2191
|
-
var _excluded$
|
|
2191
|
+
var _excluded$5c = ["gradient"];
|
|
2192
2192
|
|
|
2193
2193
|
/**
|
|
2194
2194
|
* @component BillingIcon
|
|
@@ -2218,7 +2218,7 @@
|
|
|
2218
2218
|
*/
|
|
2219
2219
|
var BillingIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2220
2220
|
var gradient = _ref.gradient,
|
|
2221
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2221
|
+
props = _objectWithoutProperties(_ref, _excluded$5c);
|
|
2222
2222
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2223
2223
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2224
2224
|
width: 24,
|
|
@@ -2241,7 +2241,7 @@
|
|
|
2241
2241
|
BillingIcon.displayName = "BillingIcon";
|
|
2242
2242
|
var BillingIcon$1 = BillingIcon;
|
|
2243
2243
|
|
|
2244
|
-
var _excluded$
|
|
2244
|
+
var _excluded$5b = ["gradient"];
|
|
2245
2245
|
|
|
2246
2246
|
/**
|
|
2247
2247
|
* @component BudgetAlertIcon
|
|
@@ -2271,7 +2271,7 @@
|
|
|
2271
2271
|
*/
|
|
2272
2272
|
var BudgetAlertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2273
2273
|
var gradient = _ref.gradient,
|
|
2274
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2274
|
+
props = _objectWithoutProperties(_ref, _excluded$5b);
|
|
2275
2275
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2276
2276
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2277
2277
|
width: 24,
|
|
@@ -2291,7 +2291,7 @@
|
|
|
2291
2291
|
BudgetAlertIcon.displayName = "BudgetAlertIcon";
|
|
2292
2292
|
var BudgetAlertIcon$1 = BudgetAlertIcon;
|
|
2293
2293
|
|
|
2294
|
-
var _excluded$
|
|
2294
|
+
var _excluded$5a = ["gradient"];
|
|
2295
2295
|
|
|
2296
2296
|
/**
|
|
2297
2297
|
* @component BulbIcon
|
|
@@ -2321,7 +2321,7 @@
|
|
|
2321
2321
|
*/
|
|
2322
2322
|
var BulbIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2323
2323
|
var gradient = _ref.gradient,
|
|
2324
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2324
|
+
props = _objectWithoutProperties(_ref, _excluded$5a);
|
|
2325
2325
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2326
2326
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2327
2327
|
width: 16,
|
|
@@ -2340,7 +2340,7 @@
|
|
|
2340
2340
|
BulbIcon.displayName = "BulbIcon";
|
|
2341
2341
|
var BulbIcon$1 = BulbIcon;
|
|
2342
2342
|
|
|
2343
|
-
var _excluded$
|
|
2343
|
+
var _excluded$59 = ["gradient"];
|
|
2344
2344
|
|
|
2345
2345
|
/**
|
|
2346
2346
|
* @component CalendarAddXIcon
|
|
@@ -2370,7 +2370,7 @@
|
|
|
2370
2370
|
*/
|
|
2371
2371
|
var CalendarAddXIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2372
2372
|
var gradient = _ref.gradient,
|
|
2373
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2373
|
+
props = _objectWithoutProperties(_ref, _excluded$59);
|
|
2374
2374
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2375
2375
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2376
2376
|
width: 24,
|
|
@@ -2390,7 +2390,7 @@
|
|
|
2390
2390
|
CalendarAddXIcon.displayName = "CalendarAddXIcon";
|
|
2391
2391
|
var CalendarAddXIcon$1 = CalendarAddXIcon;
|
|
2392
2392
|
|
|
2393
|
-
var _excluded$
|
|
2393
|
+
var _excluded$58 = ["gradient"];
|
|
2394
2394
|
|
|
2395
2395
|
/**
|
|
2396
2396
|
* @component CalendarImportIcon
|
|
@@ -2420,7 +2420,7 @@
|
|
|
2420
2420
|
*/
|
|
2421
2421
|
var CalendarImportIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2422
2422
|
var gradient = _ref.gradient,
|
|
2423
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2423
|
+
props = _objectWithoutProperties(_ref, _excluded$58);
|
|
2424
2424
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2425
2425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2426
2426
|
width: 18,
|
|
@@ -2443,7 +2443,7 @@
|
|
|
2443
2443
|
CalendarImportIcon.displayName = "CalendarImportIcon";
|
|
2444
2444
|
var CalendarImportIcon$1 = CalendarImportIcon;
|
|
2445
2445
|
|
|
2446
|
-
var _excluded$
|
|
2446
|
+
var _excluded$57 = ["gradient"];
|
|
2447
2447
|
|
|
2448
2448
|
/**
|
|
2449
2449
|
* @component CalendarIcon
|
|
@@ -2473,7 +2473,7 @@
|
|
|
2473
2473
|
*/
|
|
2474
2474
|
var CalendarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2475
2475
|
var gradient = _ref.gradient,
|
|
2476
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2476
|
+
props = _objectWithoutProperties(_ref, _excluded$57);
|
|
2477
2477
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2478
2478
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2479
2479
|
width: 24,
|
|
@@ -2493,7 +2493,7 @@
|
|
|
2493
2493
|
CalendarIcon.displayName = "CalendarIcon";
|
|
2494
2494
|
var CalendarIcon$1 = CalendarIcon;
|
|
2495
2495
|
|
|
2496
|
-
var _excluded$
|
|
2496
|
+
var _excluded$56 = ["gradient"];
|
|
2497
2497
|
|
|
2498
2498
|
/**
|
|
2499
2499
|
* @component CancelCrossIcon
|
|
@@ -2523,7 +2523,7 @@
|
|
|
2523
2523
|
*/
|
|
2524
2524
|
var CancelCrossIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2525
2525
|
var gradient = _ref.gradient,
|
|
2526
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2526
|
+
props = _objectWithoutProperties(_ref, _excluded$56);
|
|
2527
2527
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2528
2528
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2529
2529
|
width: 24,
|
|
@@ -2543,7 +2543,7 @@
|
|
|
2543
2543
|
CancelCrossIcon.displayName = "CancelCrossIcon";
|
|
2544
2544
|
var CancelCrossIcon$1 = CancelCrossIcon;
|
|
2545
2545
|
|
|
2546
|
-
var _excluded$
|
|
2546
|
+
var _excluded$55 = ["gradient"];
|
|
2547
2547
|
|
|
2548
2548
|
/**
|
|
2549
2549
|
* @component CaretLeftIcon
|
|
@@ -2573,7 +2573,7 @@
|
|
|
2573
2573
|
*/
|
|
2574
2574
|
var CaretLeftIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2575
2575
|
var gradient = _ref.gradient,
|
|
2576
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2576
|
+
props = _objectWithoutProperties(_ref, _excluded$55);
|
|
2577
2577
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2578
2578
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2579
2579
|
width: 18,
|
|
@@ -2593,7 +2593,7 @@
|
|
|
2593
2593
|
CaretLeftIcon.displayName = "CaretLeftIcon";
|
|
2594
2594
|
var CaretLeftIcon$1 = CaretLeftIcon;
|
|
2595
2595
|
|
|
2596
|
-
var _excluded$
|
|
2596
|
+
var _excluded$54 = ["gradient"];
|
|
2597
2597
|
|
|
2598
2598
|
/**
|
|
2599
2599
|
* @component CaretRightIcon
|
|
@@ -2623,7 +2623,7 @@
|
|
|
2623
2623
|
*/
|
|
2624
2624
|
var CaretRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2625
2625
|
var gradient = _ref.gradient,
|
|
2626
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2626
|
+
props = _objectWithoutProperties(_ref, _excluded$54);
|
|
2627
2627
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2628
2628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2629
2629
|
width: 18,
|
|
@@ -2643,7 +2643,7 @@
|
|
|
2643
2643
|
CaretRightIcon.displayName = "CaretRightIcon";
|
|
2644
2644
|
var CaretRightIcon$1 = CaretRightIcon;
|
|
2645
2645
|
|
|
2646
|
-
var _excluded$
|
|
2646
|
+
var _excluded$53 = ["gradient"];
|
|
2647
2647
|
|
|
2648
2648
|
/**
|
|
2649
2649
|
* @component ChatIcon
|
|
@@ -2673,7 +2673,7 @@
|
|
|
2673
2673
|
*/
|
|
2674
2674
|
var ChatIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2675
2675
|
var gradient = _ref.gradient,
|
|
2676
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2676
|
+
props = _objectWithoutProperties(_ref, _excluded$53);
|
|
2677
2677
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2678
2678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2679
2679
|
width: 24,
|
|
@@ -2693,7 +2693,7 @@
|
|
|
2693
2693
|
ChatIcon.displayName = "ChatIcon";
|
|
2694
2694
|
var ChatIcon$1 = ChatIcon;
|
|
2695
2695
|
|
|
2696
|
-
var _excluded$
|
|
2696
|
+
var _excluded$52 = ["gradient"];
|
|
2697
2697
|
|
|
2698
2698
|
/**
|
|
2699
2699
|
* @component CheckIcon
|
|
@@ -2723,7 +2723,7 @@
|
|
|
2723
2723
|
*/
|
|
2724
2724
|
var CheckIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2725
2725
|
var gradient = _ref.gradient,
|
|
2726
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2726
|
+
props = _objectWithoutProperties(_ref, _excluded$52);
|
|
2727
2727
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2728
2728
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2729
2729
|
width: 24,
|
|
@@ -2743,7 +2743,7 @@
|
|
|
2743
2743
|
CheckIcon.displayName = "CheckIcon";
|
|
2744
2744
|
var CheckIcon$1 = CheckIcon;
|
|
2745
2745
|
|
|
2746
|
-
var _excluded$
|
|
2746
|
+
var _excluded$51 = ["gradient"];
|
|
2747
2747
|
|
|
2748
2748
|
/**
|
|
2749
2749
|
* @component CheckboxBlankTogglerIcon
|
|
@@ -2773,7 +2773,7 @@
|
|
|
2773
2773
|
*/
|
|
2774
2774
|
var CheckboxBlankTogglerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2775
2775
|
var gradient = _ref.gradient,
|
|
2776
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2776
|
+
props = _objectWithoutProperties(_ref, _excluded$51);
|
|
2777
2777
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2778
2778
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2779
2779
|
width: 24,
|
|
@@ -2793,7 +2793,7 @@
|
|
|
2793
2793
|
CheckboxBlankTogglerIcon.displayName = "CheckboxBlankTogglerIcon";
|
|
2794
2794
|
var CheckboxBlankTogglerIcon$1 = CheckboxBlankTogglerIcon;
|
|
2795
2795
|
|
|
2796
|
-
var _excluded$
|
|
2796
|
+
var _excluded$50 = ["gradient"];
|
|
2797
2797
|
|
|
2798
2798
|
/**
|
|
2799
2799
|
* @component CheckboxCircleArrowIcon
|
|
@@ -2823,7 +2823,7 @@
|
|
|
2823
2823
|
*/
|
|
2824
2824
|
var CheckboxCircleArrowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2825
2825
|
var gradient = _ref.gradient,
|
|
2826
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2826
|
+
props = _objectWithoutProperties(_ref, _excluded$50);
|
|
2827
2827
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2828
2828
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2829
2829
|
width: 24,
|
|
@@ -2843,7 +2843,7 @@
|
|
|
2843
2843
|
CheckboxCircleArrowIcon.displayName = "CheckboxCircleArrowIcon";
|
|
2844
2844
|
var CheckboxCircleArrowIcon$1 = CheckboxCircleArrowIcon;
|
|
2845
2845
|
|
|
2846
|
-
var _excluded$
|
|
2846
|
+
var _excluded$4$ = ["gradient"];
|
|
2847
2847
|
|
|
2848
2848
|
/**
|
|
2849
2849
|
* @component CheckboxCircleBlankIcon
|
|
@@ -2873,7 +2873,7 @@
|
|
|
2873
2873
|
*/
|
|
2874
2874
|
var CheckboxCircleBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2875
2875
|
var gradient = _ref.gradient,
|
|
2876
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2876
|
+
props = _objectWithoutProperties(_ref, _excluded$4$);
|
|
2877
2877
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2878
2878
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2879
2879
|
width: 15,
|
|
@@ -2894,7 +2894,7 @@
|
|
|
2894
2894
|
CheckboxCircleBlankIcon.displayName = "CheckboxCircleBlankIcon";
|
|
2895
2895
|
var CheckboxCircleBlankIcon$1 = CheckboxCircleBlankIcon;
|
|
2896
2896
|
|
|
2897
|
-
var _excluded$
|
|
2897
|
+
var _excluded$4_ = ["gradient"];
|
|
2898
2898
|
|
|
2899
2899
|
/**
|
|
2900
2900
|
* @component CheckboxDocumentsIcon
|
|
@@ -2924,7 +2924,7 @@
|
|
|
2924
2924
|
*/
|
|
2925
2925
|
var CheckboxDocumentsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2926
2926
|
var gradient = _ref.gradient,
|
|
2927
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2927
|
+
props = _objectWithoutProperties(_ref, _excluded$4_);
|
|
2928
2928
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2929
2929
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2930
2930
|
width: 24,
|
|
@@ -2944,7 +2944,7 @@
|
|
|
2944
2944
|
CheckboxDocumentsIcon.displayName = "CheckboxDocumentsIcon";
|
|
2945
2945
|
var CheckboxDocumentsIcon$1 = CheckboxDocumentsIcon;
|
|
2946
2946
|
|
|
2947
|
-
var _excluded$
|
|
2947
|
+
var _excluded$4Z = ["gradient"];
|
|
2948
2948
|
|
|
2949
2949
|
/**
|
|
2950
2950
|
* @component CheckboxIcon
|
|
@@ -2974,7 +2974,7 @@
|
|
|
2974
2974
|
*/
|
|
2975
2975
|
var CheckboxIcon$2 = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
2976
2976
|
var gradient = _ref.gradient,
|
|
2977
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2977
|
+
props = _objectWithoutProperties(_ref, _excluded$4Z);
|
|
2978
2978
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
2979
2979
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2980
2980
|
width: 16,
|
|
@@ -3004,7 +3004,7 @@
|
|
|
3004
3004
|
CheckboxIcon$2.displayName = "CheckboxIcon";
|
|
3005
3005
|
var CheckboxIcon$3 = CheckboxIcon$2;
|
|
3006
3006
|
|
|
3007
|
-
var _excluded$
|
|
3007
|
+
var _excluded$4Y = ["gradient"];
|
|
3008
3008
|
|
|
3009
3009
|
/**
|
|
3010
3010
|
* @component ChecklistSmallIcon
|
|
@@ -3034,7 +3034,7 @@
|
|
|
3034
3034
|
*/
|
|
3035
3035
|
var ChecklistSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3036
3036
|
var gradient = _ref.gradient,
|
|
3037
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3037
|
+
props = _objectWithoutProperties(_ref, _excluded$4Y);
|
|
3038
3038
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3039
3039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3040
3040
|
width: 12,
|
|
@@ -3054,7 +3054,7 @@
|
|
|
3054
3054
|
ChecklistSmallIcon.displayName = "ChecklistSmallIcon";
|
|
3055
3055
|
var ChecklistSmallIcon$1 = ChecklistSmallIcon;
|
|
3056
3056
|
|
|
3057
|
-
var _excluded$
|
|
3057
|
+
var _excluded$4X = ["gradient"];
|
|
3058
3058
|
|
|
3059
3059
|
/**
|
|
3060
3060
|
* @component ChecklistIcon
|
|
@@ -3084,7 +3084,7 @@
|
|
|
3084
3084
|
*/
|
|
3085
3085
|
var ChecklistIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3086
3086
|
var gradient = _ref.gradient,
|
|
3087
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3087
|
+
props = _objectWithoutProperties(_ref, _excluded$4X);
|
|
3088
3088
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3089
3089
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3090
3090
|
width: 24,
|
|
@@ -3104,7 +3104,7 @@
|
|
|
3104
3104
|
ChecklistIcon.displayName = "ChecklistIcon";
|
|
3105
3105
|
var ChecklistIcon$1 = ChecklistIcon;
|
|
3106
3106
|
|
|
3107
|
-
var _excluded$
|
|
3107
|
+
var _excluded$4W = ["gradient"];
|
|
3108
3108
|
|
|
3109
3109
|
/**
|
|
3110
3110
|
* @component CircleDotIcon
|
|
@@ -3134,7 +3134,7 @@
|
|
|
3134
3134
|
*/
|
|
3135
3135
|
var CircleDotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3136
3136
|
var gradient = _ref.gradient,
|
|
3137
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3137
|
+
props = _objectWithoutProperties(_ref, _excluded$4W);
|
|
3138
3138
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3139
3139
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3140
3140
|
width: 24,
|
|
@@ -3157,7 +3157,7 @@
|
|
|
3157
3157
|
CircleDotIcon.displayName = "CircleDotIcon";
|
|
3158
3158
|
var CircleDotIcon$1 = CircleDotIcon;
|
|
3159
3159
|
|
|
3160
|
-
var _excluded$
|
|
3160
|
+
var _excluded$4V = ["gradient"];
|
|
3161
3161
|
|
|
3162
3162
|
/**
|
|
3163
3163
|
* @component CircleIcon
|
|
@@ -3187,7 +3187,7 @@
|
|
|
3187
3187
|
*/
|
|
3188
3188
|
var CircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3189
3189
|
var gradient = _ref.gradient,
|
|
3190
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3190
|
+
props = _objectWithoutProperties(_ref, _excluded$4V);
|
|
3191
3191
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3192
3192
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3193
3193
|
width: 24,
|
|
@@ -3206,6 +3206,61 @@
|
|
|
3206
3206
|
CircleIcon.displayName = "CircleIcon";
|
|
3207
3207
|
var CircleIcon$1 = CircleIcon;
|
|
3208
3208
|
|
|
3209
|
+
var _excluded$4U = ["gradient"];
|
|
3210
|
+
|
|
3211
|
+
/**
|
|
3212
|
+
* @component CircleSlashIcon
|
|
3213
|
+
* @description
|
|
3214
|
+
*
|
|
3215
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
3216
|
+
* The Icon component is
|
|
3217
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
3218
|
+
*
|
|
3219
|
+
* A ring (based on CircleIcon) crossed by a single diagonal line at 45 degrees,
|
|
3220
|
+
* running from the bottom-left to the top-right. The slash matches the ring's
|
|
3221
|
+
* stroke weight (~2.222 units).
|
|
3222
|
+
*
|
|
3223
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
3224
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
3225
|
+
*
|
|
3226
|
+
* @example
|
|
3227
|
+
* return (
|
|
3228
|
+
* <CircleSlashIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
3229
|
+
* )
|
|
3230
|
+
*
|
|
3231
|
+
* @example
|
|
3232
|
+
* return (
|
|
3233
|
+
* <CircleSlashIcon className="mr-2" />
|
|
3234
|
+
* )
|
|
3235
|
+
*
|
|
3236
|
+
* @see
|
|
3237
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
3238
|
+
* @see
|
|
3239
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
3240
|
+
*/
|
|
3241
|
+
var CircleSlashIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3242
|
+
var gradient = _ref.gradient,
|
|
3243
|
+
props = _objectWithoutProperties(_ref, _excluded$4U);
|
|
3244
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
3245
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3246
|
+
width: 24,
|
|
3247
|
+
height: 24,
|
|
3248
|
+
viewBox: "0 0 24 24",
|
|
3249
|
+
"data-testid": "CircleSlashIcon",
|
|
3250
|
+
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
3251
|
+
focusable: false,
|
|
3252
|
+
ref: ref
|
|
3253
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
3254
|
+
gradient: gradient
|
|
3255
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
3256
|
+
d: "M12 4.222a7.778 7.778 0 1 0 0 15.556 7.778 7.778 0 0 0 0-15.556M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20"
|
|
3257
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
3258
|
+
d: "M5.716 19.856 19.856 5.716l-1.571-1.571L4.144 18.284z"
|
|
3259
|
+
}));
|
|
3260
|
+
});
|
|
3261
|
+
CircleSlashIcon.displayName = "CircleSlashIcon";
|
|
3262
|
+
var CircleSlashIcon$1 = CircleSlashIcon;
|
|
3263
|
+
|
|
3209
3264
|
var _excluded$4T = ["gradient"];
|
|
3210
3265
|
|
|
3211
3266
|
/**
|
|
@@ -28817,6 +28872,7 @@
|
|
|
28817
28872
|
exports.CircleDotIcon = CircleDotIcon$1;
|
|
28818
28873
|
exports.CircleIcon = CircleIcon$1;
|
|
28819
28874
|
exports.CircleMultipleIcon = CircleMultipleIcon$1;
|
|
28875
|
+
exports.CircleSlashIcon = CircleSlashIcon$1;
|
|
28820
28876
|
exports.ClockAddIcon = ClockAddIcon$1;
|
|
28821
28877
|
exports.ClockDollarIcon = ClockDollarIcon$1;
|
|
28822
28878
|
exports.ClockIcon = ClockIcon$1;
|