@activecollab/components 2.0.342 → 2.0.344
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Icons/collection/{SourceCode.js → GitRepository.js} +13 -11
- package/dist/cjs/components/Icons/collection/GitRepository.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +7 -7
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/cjs/presentation/shared/ConnectRepositoryDialog.js +272 -0
- package/dist/cjs/presentation/shared/ConnectRepositoryDialog.js.map +1 -0
- package/dist/cjs/presentation/shared/LinkBranchOrPullRequestDialog.js +690 -0
- package/dist/cjs/presentation/shared/LinkBranchOrPullRequestDialog.js.map +1 -0
- package/dist/cjs/presentation/shared/headers.js +259 -32
- package/dist/cjs/presentation/shared/headers.js.map +1 -1
- package/dist/cjs/presentation/shared/index.js +51 -0
- package/dist/cjs/presentation/shared/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/GitRepository.d.ts +16 -0
- package/dist/esm/components/Icons/collection/GitRepository.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/{SourceCode.js → GitRepository.js} +13 -11
- package/dist/esm/components/Icons/collection/GitRepository.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +1 -1
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +1 -1
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/presentation/shared/ConnectRepositoryDialog.d.ts +51 -0
- package/dist/esm/presentation/shared/ConnectRepositoryDialog.d.ts.map +1 -0
- package/dist/esm/presentation/shared/ConnectRepositoryDialog.js +225 -0
- package/dist/esm/presentation/shared/ConnectRepositoryDialog.js.map +1 -0
- package/dist/esm/presentation/shared/LinkBranchOrPullRequestDialog.d.ts +7 -0
- package/dist/esm/presentation/shared/LinkBranchOrPullRequestDialog.d.ts.map +1 -0
- package/dist/esm/presentation/shared/LinkBranchOrPullRequestDialog.js +579 -0
- package/dist/esm/presentation/shared/LinkBranchOrPullRequestDialog.js.map +1 -0
- package/dist/esm/presentation/shared/headers.d.ts +8 -1
- package/dist/esm/presentation/shared/headers.d.ts.map +1 -1
- package/dist/esm/presentation/shared/headers.js +224 -30
- package/dist/esm/presentation/shared/headers.js.map +1 -1
- package/dist/esm/presentation/shared/index.d.ts +4 -0
- package/dist/esm/presentation/shared/index.d.ts.map +1 -1
- package/dist/esm/presentation/shared/index.js +2 -0
- package/dist/esm/presentation/shared/index.js.map +1 -1
- package/dist/index.js +229 -227
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/dist/cjs/components/Icons/collection/SourceCode.js.map +0 -1
- package/dist/esm/components/Icons/collection/SourceCode.d.ts +0 -16
- package/dist/esm/components/Icons/collection/SourceCode.d.ts.map +0 -1
- package/dist/esm/components/Icons/collection/SourceCode.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -6187,6 +6187,49 @@
|
|
|
6187
6187
|
|
|
6188
6188
|
var _excluded$3p = ["gradient"];
|
|
6189
6189
|
|
|
6190
|
+
/**
|
|
6191
|
+
* @component GitRepositoryIcon
|
|
6192
|
+
* @description
|
|
6193
|
+
* Outline repository glyph (a stacked database cylinder) used as a
|
|
6194
|
+
* source-control / repository signifier.
|
|
6195
|
+
*
|
|
6196
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
|
|
6197
|
+
*
|
|
6198
|
+
* @see https://design.activecollab.com/docs/foundations/icons
|
|
6199
|
+
*/
|
|
6200
|
+
var GitRepositoryIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6201
|
+
var gradient = _ref.gradient,
|
|
6202
|
+
props = _objectWithoutProperties(_ref, _excluded$3p);
|
|
6203
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6204
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6205
|
+
width: 24,
|
|
6206
|
+
height: 24,
|
|
6207
|
+
viewBox: "0 0 24 24",
|
|
6208
|
+
"data-testid": "GitRepositoryIcon",
|
|
6209
|
+
fill: "none",
|
|
6210
|
+
stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
|
|
6211
|
+
strokeWidth: 2,
|
|
6212
|
+
strokeLinecap: "round",
|
|
6213
|
+
strokeLinejoin: "round",
|
|
6214
|
+
focusable: false,
|
|
6215
|
+
ref: ref
|
|
6216
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
6217
|
+
gradient: gradient
|
|
6218
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6219
|
+
d: "M12 4m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"
|
|
6220
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6221
|
+
d: "M4 4v5a8 2 0 0 0 16 0v-5"
|
|
6222
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6223
|
+
d: "M4 9v5a8 2 0 0 0 16 0v-5"
|
|
6224
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6225
|
+
d: "M4 14v5a8 2 0 0 0 16 0v-5"
|
|
6226
|
+
}));
|
|
6227
|
+
});
|
|
6228
|
+
GitRepositoryIcon.displayName = "GitRepositoryIcon";
|
|
6229
|
+
var GitRepositoryIcon$1 = GitRepositoryIcon;
|
|
6230
|
+
|
|
6231
|
+
var _excluded$3o = ["gradient"];
|
|
6232
|
+
|
|
6190
6233
|
/**
|
|
6191
6234
|
* @component GroupByIcon
|
|
6192
6235
|
* @description
|
|
@@ -6215,7 +6258,7 @@
|
|
|
6215
6258
|
*/
|
|
6216
6259
|
var GroupByIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6217
6260
|
var gradient = _ref.gradient,
|
|
6218
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6261
|
+
props = _objectWithoutProperties(_ref, _excluded$3o);
|
|
6219
6262
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6220
6263
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6221
6264
|
width: 24,
|
|
@@ -6234,7 +6277,7 @@
|
|
|
6234
6277
|
GroupByIcon.displayName = "GroupByIcon";
|
|
6235
6278
|
var GroupByIcon$1 = GroupByIcon;
|
|
6236
6279
|
|
|
6237
|
-
var _excluded$
|
|
6280
|
+
var _excluded$3n = ["gradient"];
|
|
6238
6281
|
|
|
6239
6282
|
/**
|
|
6240
6283
|
* @component HashtagIcon
|
|
@@ -6264,7 +6307,7 @@
|
|
|
6264
6307
|
*/
|
|
6265
6308
|
var HashtagIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6266
6309
|
var gradient = _ref.gradient,
|
|
6267
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6310
|
+
props = _objectWithoutProperties(_ref, _excluded$3n);
|
|
6268
6311
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6269
6312
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6270
6313
|
width: 24,
|
|
@@ -6285,7 +6328,7 @@
|
|
|
6285
6328
|
HashtagIcon.displayName = "HashtagIcon";
|
|
6286
6329
|
var HashtagIcon$1 = HashtagIcon;
|
|
6287
6330
|
|
|
6288
|
-
var _excluded$
|
|
6331
|
+
var _excluded$3m = ["gradient"];
|
|
6289
6332
|
|
|
6290
6333
|
/**
|
|
6291
6334
|
* @component HelpIcon
|
|
@@ -6315,7 +6358,7 @@
|
|
|
6315
6358
|
*/
|
|
6316
6359
|
var HelpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6317
6360
|
var gradient = _ref.gradient,
|
|
6318
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6361
|
+
props = _objectWithoutProperties(_ref, _excluded$3m);
|
|
6319
6362
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6320
6363
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6321
6364
|
width: 24,
|
|
@@ -6335,7 +6378,7 @@
|
|
|
6335
6378
|
HelpIcon.displayName = "HelpIcon";
|
|
6336
6379
|
var HelpIcon$1 = HelpIcon;
|
|
6337
6380
|
|
|
6338
|
-
var _excluded$
|
|
6381
|
+
var _excluded$3l = ["gradient"];
|
|
6339
6382
|
|
|
6340
6383
|
/**
|
|
6341
6384
|
* @component HistoryOfChangesIcon
|
|
@@ -6365,7 +6408,7 @@
|
|
|
6365
6408
|
*/
|
|
6366
6409
|
var HistoryOfChangesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6367
6410
|
var gradient = _ref.gradient,
|
|
6368
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6411
|
+
props = _objectWithoutProperties(_ref, _excluded$3l);
|
|
6369
6412
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6370
6413
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6371
6414
|
width: 24,
|
|
@@ -6386,7 +6429,7 @@
|
|
|
6386
6429
|
HistoryOfChangesIcon.displayName = "HistoryOfChangesIcon";
|
|
6387
6430
|
var HistoryOfChangesIcon$1 = HistoryOfChangesIcon;
|
|
6388
6431
|
|
|
6389
|
-
var _excluded$
|
|
6432
|
+
var _excluded$3k = ["gradient"];
|
|
6390
6433
|
|
|
6391
6434
|
/**
|
|
6392
6435
|
* @component ImageIcon
|
|
@@ -6416,7 +6459,7 @@
|
|
|
6416
6459
|
*/
|
|
6417
6460
|
var ImageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6418
6461
|
var gradient = _ref.gradient,
|
|
6419
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6462
|
+
props = _objectWithoutProperties(_ref, _excluded$3k);
|
|
6420
6463
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6421
6464
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6422
6465
|
width: 24,
|
|
@@ -6437,7 +6480,7 @@
|
|
|
6437
6480
|
ImageIcon.displayName = "ImageIcon";
|
|
6438
6481
|
var ImageIcon$1 = ImageIcon;
|
|
6439
6482
|
|
|
6440
|
-
var _excluded$
|
|
6483
|
+
var _excluded$3j = ["gradient"];
|
|
6441
6484
|
|
|
6442
6485
|
/**
|
|
6443
6486
|
* @component InfoSmallIcon
|
|
@@ -6467,7 +6510,7 @@
|
|
|
6467
6510
|
*/
|
|
6468
6511
|
var InfoSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6469
6512
|
var gradient = _ref.gradient,
|
|
6470
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6513
|
+
props = _objectWithoutProperties(_ref, _excluded$3j);
|
|
6471
6514
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6472
6515
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6473
6516
|
width: 15,
|
|
@@ -6487,7 +6530,7 @@
|
|
|
6487
6530
|
InfoSmallIcon.displayName = "InfoSmallIcon";
|
|
6488
6531
|
var InfoSmallIcon$1 = InfoSmallIcon;
|
|
6489
6532
|
|
|
6490
|
-
var _excluded$
|
|
6533
|
+
var _excluded$3i = ["gradient"];
|
|
6491
6534
|
|
|
6492
6535
|
/**
|
|
6493
6536
|
* @component InfoIcon
|
|
@@ -6517,7 +6560,7 @@
|
|
|
6517
6560
|
*/
|
|
6518
6561
|
var InfoIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6519
6562
|
var gradient = _ref.gradient,
|
|
6520
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6563
|
+
props = _objectWithoutProperties(_ref, _excluded$3i);
|
|
6521
6564
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6522
6565
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6523
6566
|
width: 24,
|
|
@@ -6537,7 +6580,7 @@
|
|
|
6537
6580
|
InfoIcon.displayName = "InfoIcon";
|
|
6538
6581
|
var InfoIcon$1 = InfoIcon;
|
|
6539
6582
|
|
|
6540
|
-
var _excluded$
|
|
6583
|
+
var _excluded$3h = ["gradient"];
|
|
6541
6584
|
|
|
6542
6585
|
/**
|
|
6543
6586
|
* @component InsertLinkIcon
|
|
@@ -6567,7 +6610,7 @@
|
|
|
6567
6610
|
*/
|
|
6568
6611
|
var InsertLinkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6569
6612
|
var gradient = _ref.gradient,
|
|
6570
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6613
|
+
props = _objectWithoutProperties(_ref, _excluded$3h);
|
|
6571
6614
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6572
6615
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6573
6616
|
width: 24,
|
|
@@ -6587,7 +6630,7 @@
|
|
|
6587
6630
|
InsertLinkIcon.displayName = "InsertLinkIcon";
|
|
6588
6631
|
var InsertLinkIcon$1 = InsertLinkIcon;
|
|
6589
6632
|
|
|
6590
|
-
var _excluded$
|
|
6633
|
+
var _excluded$3g = ["gradient"];
|
|
6591
6634
|
|
|
6592
6635
|
/**
|
|
6593
6636
|
* @component IntegrationsIcon
|
|
@@ -6617,7 +6660,7 @@
|
|
|
6617
6660
|
*/
|
|
6618
6661
|
var IntegrationsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6619
6662
|
var gradient = _ref.gradient,
|
|
6620
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6663
|
+
props = _objectWithoutProperties(_ref, _excluded$3g);
|
|
6621
6664
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6622
6665
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6623
6666
|
width: 24,
|
|
@@ -6641,7 +6684,7 @@
|
|
|
6641
6684
|
IntegrationsIcon.displayName = "IntegrationsIcon";
|
|
6642
6685
|
var IntegrationsIcon$1 = IntegrationsIcon;
|
|
6643
6686
|
|
|
6644
|
-
var _excluded$
|
|
6687
|
+
var _excluded$3f = ["gradient"];
|
|
6645
6688
|
|
|
6646
6689
|
/**
|
|
6647
6690
|
* @component InvoicesIcon
|
|
@@ -6671,7 +6714,7 @@
|
|
|
6671
6714
|
*/
|
|
6672
6715
|
var InvoicesIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6673
6716
|
var gradient = _ref.gradient,
|
|
6674
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6717
|
+
props = _objectWithoutProperties(_ref, _excluded$3f);
|
|
6675
6718
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6676
6719
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6677
6720
|
width: 24,
|
|
@@ -6695,7 +6738,7 @@
|
|
|
6695
6738
|
InvoicesIcon.displayName = "InvoicesIcon";
|
|
6696
6739
|
var InvoicesIcon$1 = InvoicesIcon;
|
|
6697
6740
|
|
|
6698
|
-
var _excluded$
|
|
6741
|
+
var _excluded$3e = ["gradient"];
|
|
6699
6742
|
|
|
6700
6743
|
/**
|
|
6701
6744
|
* @component LabelsIcon
|
|
@@ -6725,7 +6768,7 @@
|
|
|
6725
6768
|
*/
|
|
6726
6769
|
var LabelsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6727
6770
|
var gradient = _ref.gradient,
|
|
6728
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6771
|
+
props = _objectWithoutProperties(_ref, _excluded$3e);
|
|
6729
6772
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6730
6773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6731
6774
|
width: 24,
|
|
@@ -6745,7 +6788,7 @@
|
|
|
6745
6788
|
LabelsIcon.displayName = "LabelsIcon";
|
|
6746
6789
|
var LabelsIcon$1 = LabelsIcon;
|
|
6747
6790
|
|
|
6748
|
-
var _excluded$
|
|
6791
|
+
var _excluded$3d = ["gradient"];
|
|
6749
6792
|
|
|
6750
6793
|
/**
|
|
6751
6794
|
* @component LetterArrowRightIcon
|
|
@@ -6775,7 +6818,7 @@
|
|
|
6775
6818
|
*/
|
|
6776
6819
|
var LetterArrowRightIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6777
6820
|
var gradient = _ref.gradient,
|
|
6778
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6821
|
+
props = _objectWithoutProperties(_ref, _excluded$3d);
|
|
6779
6822
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6780
6823
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6781
6824
|
width: 24,
|
|
@@ -6796,7 +6839,7 @@
|
|
|
6796
6839
|
LetterArrowRightIcon.displayName = "LetterArrowRightIcon";
|
|
6797
6840
|
var LetterArrowRightIcon$1 = LetterArrowRightIcon;
|
|
6798
6841
|
|
|
6799
|
-
var _excluded$
|
|
6842
|
+
var _excluded$3c = ["gradient"];
|
|
6800
6843
|
|
|
6801
6844
|
/**
|
|
6802
6845
|
* @component LetterFastIcon
|
|
@@ -6826,7 +6869,7 @@
|
|
|
6826
6869
|
*/
|
|
6827
6870
|
var LetterFastIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6828
6871
|
var gradient = _ref.gradient,
|
|
6829
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6872
|
+
props = _objectWithoutProperties(_ref, _excluded$3c);
|
|
6830
6873
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6831
6874
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6832
6875
|
width: 24,
|
|
@@ -6846,7 +6889,7 @@
|
|
|
6846
6889
|
LetterFastIcon.displayName = "LetterFastIcon";
|
|
6847
6890
|
var LetterFastIcon$1 = LetterFastIcon;
|
|
6848
6891
|
|
|
6849
|
-
var _excluded$
|
|
6892
|
+
var _excluded$3b = ["gradient"];
|
|
6850
6893
|
|
|
6851
6894
|
/**
|
|
6852
6895
|
* @component LetterIcon
|
|
@@ -6876,7 +6919,7 @@
|
|
|
6876
6919
|
*/
|
|
6877
6920
|
var LetterIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6878
6921
|
var gradient = _ref.gradient,
|
|
6879
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6922
|
+
props = _objectWithoutProperties(_ref, _excluded$3b);
|
|
6880
6923
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6881
6924
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6882
6925
|
width: 24,
|
|
@@ -6897,7 +6940,7 @@
|
|
|
6897
6940
|
LetterIcon.displayName = "LetterIcon";
|
|
6898
6941
|
var LetterIcon$1 = LetterIcon;
|
|
6899
6942
|
|
|
6900
|
-
var _excluded$
|
|
6943
|
+
var _excluded$3a = ["gradient"];
|
|
6901
6944
|
|
|
6902
6945
|
/**
|
|
6903
6946
|
* @component LockSmallIcon
|
|
@@ -6927,7 +6970,7 @@
|
|
|
6927
6970
|
*/
|
|
6928
6971
|
var LockSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6929
6972
|
var gradient = _ref.gradient,
|
|
6930
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6973
|
+
props = _objectWithoutProperties(_ref, _excluded$3a);
|
|
6931
6974
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6932
6975
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6933
6976
|
width: 12,
|
|
@@ -6947,7 +6990,7 @@
|
|
|
6947
6990
|
LockSmallIcon.displayName = "LockSmallIcon";
|
|
6948
6991
|
var LockSmallIcon$1 = LockSmallIcon;
|
|
6949
6992
|
|
|
6950
|
-
var _excluded$
|
|
6993
|
+
var _excluded$39 = ["gradient"];
|
|
6951
6994
|
|
|
6952
6995
|
/**
|
|
6953
6996
|
* @component LockIcon
|
|
@@ -6977,7 +7020,7 @@
|
|
|
6977
7020
|
*/
|
|
6978
7021
|
var LockIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
6979
7022
|
var gradient = _ref.gradient,
|
|
6980
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7023
|
+
props = _objectWithoutProperties(_ref, _excluded$39);
|
|
6981
7024
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6982
7025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6983
7026
|
width: 24,
|
|
@@ -6997,7 +7040,7 @@
|
|
|
6997
7040
|
LockIcon.displayName = "LockIcon";
|
|
6998
7041
|
var LockIcon$1 = LockIcon;
|
|
6999
7042
|
|
|
7000
|
-
var _excluded$
|
|
7043
|
+
var _excluded$38 = ["gradient"];
|
|
7001
7044
|
|
|
7002
7045
|
/**
|
|
7003
7046
|
* @component MarkerIcon
|
|
@@ -7027,7 +7070,7 @@
|
|
|
7027
7070
|
*/
|
|
7028
7071
|
var MarkerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7029
7072
|
var gradient = _ref.gradient,
|
|
7030
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7073
|
+
props = _objectWithoutProperties(_ref, _excluded$38);
|
|
7031
7074
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7032
7075
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7033
7076
|
width: 24,
|
|
@@ -7047,7 +7090,7 @@
|
|
|
7047
7090
|
MarkerIcon.displayName = "MarkerIcon";
|
|
7048
7091
|
var MarkerIcon$1 = MarkerIcon;
|
|
7049
7092
|
|
|
7050
|
-
var _excluded$
|
|
7093
|
+
var _excluded$37 = ["gradient"];
|
|
7051
7094
|
|
|
7052
7095
|
/**
|
|
7053
7096
|
* @component MessageAddIcon
|
|
@@ -7077,7 +7120,7 @@
|
|
|
7077
7120
|
*/
|
|
7078
7121
|
var MessageAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7079
7122
|
var gradient = _ref.gradient,
|
|
7080
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7123
|
+
props = _objectWithoutProperties(_ref, _excluded$37);
|
|
7081
7124
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7082
7125
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7083
7126
|
width: 24,
|
|
@@ -7096,7 +7139,7 @@
|
|
|
7096
7139
|
MessageAddIcon.displayName = "MessageAddIcon";
|
|
7097
7140
|
var MessageAddIcon$1 = MessageAddIcon;
|
|
7098
7141
|
|
|
7099
|
-
var _excluded$
|
|
7142
|
+
var _excluded$36 = ["gradient"];
|
|
7100
7143
|
|
|
7101
7144
|
/**
|
|
7102
7145
|
* @component MessageEmptyIcon
|
|
@@ -7126,7 +7169,7 @@
|
|
|
7126
7169
|
*/
|
|
7127
7170
|
var MessageEmptyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7128
7171
|
var gradient = _ref.gradient,
|
|
7129
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7172
|
+
props = _objectWithoutProperties(_ref, _excluded$36);
|
|
7130
7173
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7131
7174
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7132
7175
|
width: 24,
|
|
@@ -7146,7 +7189,7 @@
|
|
|
7146
7189
|
MessageEmptyIcon.displayName = "MessageEmptyIcon";
|
|
7147
7190
|
var MessageEmptyIcon$1 = MessageEmptyIcon;
|
|
7148
7191
|
|
|
7149
|
-
var _excluded$
|
|
7192
|
+
var _excluded$35 = ["gradient"];
|
|
7150
7193
|
|
|
7151
7194
|
/**
|
|
7152
7195
|
* @component MessageSmallIcon
|
|
@@ -7176,7 +7219,7 @@
|
|
|
7176
7219
|
*/
|
|
7177
7220
|
var MessageSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7178
7221
|
var gradient = _ref.gradient,
|
|
7179
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7222
|
+
props = _objectWithoutProperties(_ref, _excluded$35);
|
|
7180
7223
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7181
7224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7182
7225
|
width: 12,
|
|
@@ -7196,7 +7239,7 @@
|
|
|
7196
7239
|
MessageSmallIcon.displayName = "MessageSmallIcon";
|
|
7197
7240
|
var MessageSmallIcon$1 = MessageSmallIcon;
|
|
7198
7241
|
|
|
7199
|
-
var _excluded$
|
|
7242
|
+
var _excluded$34 = ["gradient"];
|
|
7200
7243
|
|
|
7201
7244
|
/**
|
|
7202
7245
|
* @component MessageSolidIcon
|
|
@@ -7226,7 +7269,7 @@
|
|
|
7226
7269
|
*/
|
|
7227
7270
|
var MessageSolidIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7228
7271
|
var gradient = _ref.gradient,
|
|
7229
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7272
|
+
props = _objectWithoutProperties(_ref, _excluded$34);
|
|
7230
7273
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7231
7274
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7232
7275
|
width: 24,
|
|
@@ -7246,7 +7289,7 @@
|
|
|
7246
7289
|
MessageSolidIcon.displayName = "MessageSolidIcon";
|
|
7247
7290
|
var MessageSolidIcon$1 = MessageSolidIcon;
|
|
7248
7291
|
|
|
7249
|
-
var _excluded$
|
|
7292
|
+
var _excluded$33 = ["gradient"];
|
|
7250
7293
|
|
|
7251
7294
|
/**
|
|
7252
7295
|
* @component MessageStarIcon
|
|
@@ -7276,7 +7319,7 @@
|
|
|
7276
7319
|
*/
|
|
7277
7320
|
var MessageStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7278
7321
|
var gradient = _ref.gradient,
|
|
7279
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7322
|
+
props = _objectWithoutProperties(_ref, _excluded$33);
|
|
7280
7323
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7281
7324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7282
7325
|
width: 24,
|
|
@@ -7299,7 +7342,7 @@
|
|
|
7299
7342
|
MessageStarIcon.displayName = "MessageStarIcon";
|
|
7300
7343
|
var MessageStarIcon$1 = MessageStarIcon;
|
|
7301
7344
|
|
|
7302
|
-
var _excluded$
|
|
7345
|
+
var _excluded$32 = ["gradient"];
|
|
7303
7346
|
|
|
7304
7347
|
/**
|
|
7305
7348
|
* @component MessageIcon
|
|
@@ -7329,7 +7372,7 @@
|
|
|
7329
7372
|
*/
|
|
7330
7373
|
var MessageIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7331
7374
|
var gradient = _ref.gradient,
|
|
7332
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7375
|
+
props = _objectWithoutProperties(_ref, _excluded$32);
|
|
7333
7376
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7334
7377
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7335
7378
|
width: 24,
|
|
@@ -7349,7 +7392,7 @@
|
|
|
7349
7392
|
MessageIcon.displayName = "MessageIcon";
|
|
7350
7393
|
var MessageIcon$1 = MessageIcon;
|
|
7351
7394
|
|
|
7352
|
-
var _excluded$
|
|
7395
|
+
var _excluded$31 = ["gradient"];
|
|
7353
7396
|
|
|
7354
7397
|
/**
|
|
7355
7398
|
* @component MinusIcon
|
|
@@ -7379,7 +7422,7 @@
|
|
|
7379
7422
|
*/
|
|
7380
7423
|
var MinusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7381
7424
|
var gradient = _ref.gradient,
|
|
7382
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7425
|
+
props = _objectWithoutProperties(_ref, _excluded$31);
|
|
7383
7426
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7384
7427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7385
7428
|
width: 24,
|
|
@@ -7403,7 +7446,7 @@
|
|
|
7403
7446
|
MinusIcon.displayName = "MinusIcon";
|
|
7404
7447
|
var MinusIcon$1 = MinusIcon;
|
|
7405
7448
|
|
|
7406
|
-
var _excluded$
|
|
7449
|
+
var _excluded$30 = ["gradient"];
|
|
7407
7450
|
|
|
7408
7451
|
/**
|
|
7409
7452
|
* @component MobileMenuIcon
|
|
@@ -7433,7 +7476,7 @@
|
|
|
7433
7476
|
*/
|
|
7434
7477
|
var MobileMenuIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7435
7478
|
var gradient = _ref.gradient,
|
|
7436
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7479
|
+
props = _objectWithoutProperties(_ref, _excluded$30);
|
|
7437
7480
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7438
7481
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7439
7482
|
width: 24,
|
|
@@ -7454,7 +7497,7 @@
|
|
|
7454
7497
|
MobileMenuIcon.displayName = "MobileMenuIcon";
|
|
7455
7498
|
var MobileMenuIcon$1 = MobileMenuIcon;
|
|
7456
7499
|
|
|
7457
|
-
var _excluded$
|
|
7500
|
+
var _excluded$2$ = ["gradient"];
|
|
7458
7501
|
|
|
7459
7502
|
/**
|
|
7460
7503
|
* @component MoneyStackIcon
|
|
@@ -7484,7 +7527,7 @@
|
|
|
7484
7527
|
*/
|
|
7485
7528
|
var MoneyStackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7486
7529
|
var gradient = _ref.gradient,
|
|
7487
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7530
|
+
props = _objectWithoutProperties(_ref, _excluded$2$);
|
|
7488
7531
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7489
7532
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7490
7533
|
width: 24,
|
|
@@ -7511,7 +7554,7 @@
|
|
|
7511
7554
|
MoneyStackIcon.displayName = "MoneyStackIcon";
|
|
7512
7555
|
var MoneyStackIcon$1 = MoneyStackIcon;
|
|
7513
7556
|
|
|
7514
|
-
var _excluded$
|
|
7557
|
+
var _excluded$2_ = ["gradient"];
|
|
7515
7558
|
|
|
7516
7559
|
/**
|
|
7517
7560
|
* @component MoonIcon
|
|
@@ -7541,7 +7584,7 @@
|
|
|
7541
7584
|
*/
|
|
7542
7585
|
var MoonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7543
7586
|
var gradient = _ref.gradient,
|
|
7544
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7587
|
+
props = _objectWithoutProperties(_ref, _excluded$2_);
|
|
7545
7588
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7546
7589
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7547
7590
|
width: 20,
|
|
@@ -7562,7 +7605,7 @@
|
|
|
7562
7605
|
MoonIcon.displayName = "MoonIcon";
|
|
7563
7606
|
var MoonIcon$1 = MoonIcon;
|
|
7564
7607
|
|
|
7565
|
-
var _excluded$
|
|
7608
|
+
var _excluded$2Z = ["gradient"];
|
|
7566
7609
|
|
|
7567
7610
|
/**
|
|
7568
7611
|
* @component MoveTriggerIcon
|
|
@@ -7592,7 +7635,7 @@
|
|
|
7592
7635
|
*/
|
|
7593
7636
|
var MoveTriggerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7594
7637
|
var gradient = _ref.gradient,
|
|
7595
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7638
|
+
props = _objectWithoutProperties(_ref, _excluded$2Z);
|
|
7596
7639
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7597
7640
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7598
7641
|
width: 10,
|
|
@@ -7612,7 +7655,7 @@
|
|
|
7612
7655
|
MoveTriggerIcon.displayName = "MoveTriggerIcon";
|
|
7613
7656
|
var MoveTriggerIcon$1 = MoveTriggerIcon;
|
|
7614
7657
|
|
|
7615
|
-
var _excluded$
|
|
7658
|
+
var _excluded$2Y = ["gradient"];
|
|
7616
7659
|
|
|
7617
7660
|
/**
|
|
7618
7661
|
* @component MoveIcon
|
|
@@ -7642,7 +7685,7 @@
|
|
|
7642
7685
|
*/
|
|
7643
7686
|
var MoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7644
7687
|
var gradient = _ref.gradient,
|
|
7645
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7688
|
+
props = _objectWithoutProperties(_ref, _excluded$2Y);
|
|
7646
7689
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7647
7690
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7648
7691
|
width: 24,
|
|
@@ -7663,7 +7706,7 @@
|
|
|
7663
7706
|
MoveIcon.displayName = "MoveIcon";
|
|
7664
7707
|
var MoveIcon$1 = MoveIcon;
|
|
7665
7708
|
|
|
7666
|
-
var _excluded$
|
|
7709
|
+
var _excluded$2X = ["gradient"];
|
|
7667
7710
|
|
|
7668
7711
|
/**
|
|
7669
7712
|
* @component MyWorkIcon
|
|
@@ -7693,7 +7736,7 @@
|
|
|
7693
7736
|
*/
|
|
7694
7737
|
var MyWorkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7695
7738
|
var gradient = _ref.gradient,
|
|
7696
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7739
|
+
props = _objectWithoutProperties(_ref, _excluded$2X);
|
|
7697
7740
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7698
7741
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7699
7742
|
width: 24,
|
|
@@ -7717,7 +7760,7 @@
|
|
|
7717
7760
|
MyWorkIcon.displayName = "MyWorkIcon";
|
|
7718
7761
|
var MyWorkIcon$1 = MyWorkIcon;
|
|
7719
7762
|
|
|
7720
|
-
var _excluded$
|
|
7763
|
+
var _excluded$2W = ["gradient"];
|
|
7721
7764
|
|
|
7722
7765
|
/**
|
|
7723
7766
|
* @component NoteAddIcon
|
|
@@ -7747,7 +7790,7 @@
|
|
|
7747
7790
|
*/
|
|
7748
7791
|
var NoteAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7749
7792
|
var gradient = _ref.gradient,
|
|
7750
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7793
|
+
props = _objectWithoutProperties(_ref, _excluded$2W);
|
|
7751
7794
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7752
7795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7753
7796
|
width: 24,
|
|
@@ -7767,7 +7810,7 @@
|
|
|
7767
7810
|
NoteAddIcon.displayName = "NoteAddIcon";
|
|
7768
7811
|
var NoteAddIcon$1 = NoteAddIcon;
|
|
7769
7812
|
|
|
7770
|
-
var _excluded$
|
|
7813
|
+
var _excluded$2V = ["gradient"];
|
|
7771
7814
|
|
|
7772
7815
|
/**
|
|
7773
7816
|
* @component NoteIcon
|
|
@@ -7797,7 +7840,7 @@
|
|
|
7797
7840
|
*/
|
|
7798
7841
|
var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7799
7842
|
var gradient = _ref.gradient,
|
|
7800
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7843
|
+
props = _objectWithoutProperties(_ref, _excluded$2V);
|
|
7801
7844
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7802
7845
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7803
7846
|
width: 24,
|
|
@@ -7817,7 +7860,7 @@
|
|
|
7817
7860
|
NoteIcon.displayName = "NoteIcon";
|
|
7818
7861
|
var NoteIcon$1 = NoteIcon;
|
|
7819
7862
|
|
|
7820
|
-
var _excluded$
|
|
7863
|
+
var _excluded$2U = ["gradient"];
|
|
7821
7864
|
|
|
7822
7865
|
/**
|
|
7823
7866
|
* @component NotebookIcon
|
|
@@ -7847,7 +7890,7 @@
|
|
|
7847
7890
|
*/
|
|
7848
7891
|
var NotebookIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7849
7892
|
var gradient = _ref.gradient,
|
|
7850
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7893
|
+
props = _objectWithoutProperties(_ref, _excluded$2U);
|
|
7851
7894
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7852
7895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7853
7896
|
width: 24,
|
|
@@ -7867,7 +7910,7 @@
|
|
|
7867
7910
|
NotebookIcon.displayName = "NotebookIcon";
|
|
7868
7911
|
var NotebookIcon$1 = NotebookIcon;
|
|
7869
7912
|
|
|
7870
|
-
var _excluded$
|
|
7913
|
+
var _excluded$2T = ["gradient"];
|
|
7871
7914
|
|
|
7872
7915
|
/**
|
|
7873
7916
|
* @component NotificationBellIcon
|
|
@@ -7897,7 +7940,7 @@
|
|
|
7897
7940
|
*/
|
|
7898
7941
|
var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7899
7942
|
var gradient = _ref.gradient,
|
|
7900
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7943
|
+
props = _objectWithoutProperties(_ref, _excluded$2T);
|
|
7901
7944
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7902
7945
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7903
7946
|
width: 24,
|
|
@@ -7916,7 +7959,7 @@
|
|
|
7916
7959
|
NotificationBellIcon.displayName = "NotificationBellIcon";
|
|
7917
7960
|
var NotificationBellIcon$1 = NotificationBellIcon;
|
|
7918
7961
|
|
|
7919
|
-
var _excluded$
|
|
7962
|
+
var _excluded$2S = ["gradient"];
|
|
7920
7963
|
|
|
7921
7964
|
/**
|
|
7922
7965
|
* @component OpenExpandedIcon
|
|
@@ -7946,7 +7989,7 @@
|
|
|
7946
7989
|
*/
|
|
7947
7990
|
var OpenExpandedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7948
7991
|
var gradient = _ref.gradient,
|
|
7949
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7992
|
+
props = _objectWithoutProperties(_ref, _excluded$2S);
|
|
7950
7993
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7951
7994
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7952
7995
|
width: 24,
|
|
@@ -7966,7 +8009,7 @@
|
|
|
7966
8009
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
7967
8010
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
7968
8011
|
|
|
7969
|
-
var _excluded$
|
|
8012
|
+
var _excluded$2R = ["gradient"];
|
|
7970
8013
|
|
|
7971
8014
|
/**
|
|
7972
8015
|
* @component OpenSheetIcon
|
|
@@ -7996,7 +8039,7 @@
|
|
|
7996
8039
|
*/
|
|
7997
8040
|
var OpenSheetIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7998
8041
|
var gradient = _ref.gradient,
|
|
7999
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8042
|
+
props = _objectWithoutProperties(_ref, _excluded$2R);
|
|
8000
8043
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8001
8044
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8002
8045
|
width: 24,
|
|
@@ -8021,7 +8064,7 @@
|
|
|
8021
8064
|
OpenSheetIcon.displayName = "OpenSheetIcon";
|
|
8022
8065
|
var OpenSheetIcon$1 = OpenSheetIcon;
|
|
8023
8066
|
|
|
8024
|
-
var _excluded$
|
|
8067
|
+
var _excluded$2Q = ["gradient"];
|
|
8025
8068
|
|
|
8026
8069
|
/**
|
|
8027
8070
|
* @component OrderFirstIcon
|
|
@@ -8051,7 +8094,7 @@
|
|
|
8051
8094
|
*/
|
|
8052
8095
|
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8053
8096
|
var gradient = _ref.gradient,
|
|
8054
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8097
|
+
props = _objectWithoutProperties(_ref, _excluded$2Q);
|
|
8055
8098
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8056
8099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8057
8100
|
width: 24,
|
|
@@ -8071,7 +8114,7 @@
|
|
|
8071
8114
|
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
8072
8115
|
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
8073
8116
|
|
|
8074
|
-
var _excluded$
|
|
8117
|
+
var _excluded$2P = ["gradient"];
|
|
8075
8118
|
|
|
8076
8119
|
/**
|
|
8077
8120
|
* @component PaidSmallIcon
|
|
@@ -8101,7 +8144,7 @@
|
|
|
8101
8144
|
*/
|
|
8102
8145
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8103
8146
|
var gradient = _ref.gradient,
|
|
8104
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8147
|
+
props = _objectWithoutProperties(_ref, _excluded$2P);
|
|
8105
8148
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8106
8149
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8107
8150
|
width: 12,
|
|
@@ -8121,7 +8164,7 @@
|
|
|
8121
8164
|
PaidSmallIcon.displayName = "PaidSmallIcon";
|
|
8122
8165
|
var PaidSmallIcon$1 = PaidSmallIcon;
|
|
8123
8166
|
|
|
8124
|
-
var _excluded$
|
|
8167
|
+
var _excluded$2O = ["gradient"];
|
|
8125
8168
|
|
|
8126
8169
|
/**
|
|
8127
8170
|
* @component PauseCircleOutlineIcon
|
|
@@ -8151,7 +8194,7 @@
|
|
|
8151
8194
|
*/
|
|
8152
8195
|
var PauseCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8153
8196
|
var gradient = _ref.gradient,
|
|
8154
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8197
|
+
props = _objectWithoutProperties(_ref, _excluded$2O);
|
|
8155
8198
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8156
8199
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8157
8200
|
width: 24,
|
|
@@ -8171,7 +8214,7 @@
|
|
|
8171
8214
|
PauseCircleOutlineIcon.displayName = "PauseCircleOutlineIcon";
|
|
8172
8215
|
var PauseCircleOutlineIcon$1 = PauseCircleOutlineIcon;
|
|
8173
8216
|
|
|
8174
|
-
var _excluded$
|
|
8217
|
+
var _excluded$2N = ["gradient"];
|
|
8175
8218
|
|
|
8176
8219
|
/**
|
|
8177
8220
|
* @component PauseIcon
|
|
@@ -8201,7 +8244,7 @@
|
|
|
8201
8244
|
*/
|
|
8202
8245
|
var PauseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8203
8246
|
var gradient = _ref.gradient,
|
|
8204
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8247
|
+
props = _objectWithoutProperties(_ref, _excluded$2N);
|
|
8205
8248
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8206
8249
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8207
8250
|
width: 24,
|
|
@@ -8221,7 +8264,7 @@
|
|
|
8221
8264
|
PauseIcon.displayName = "PauseIcon";
|
|
8222
8265
|
var PauseIcon$1 = PauseIcon;
|
|
8223
8266
|
|
|
8224
|
-
var _excluded$
|
|
8267
|
+
var _excluded$2M = ["gradient"];
|
|
8225
8268
|
|
|
8226
8269
|
/**
|
|
8227
8270
|
* @component PauseSmallIcon
|
|
@@ -8251,7 +8294,7 @@
|
|
|
8251
8294
|
*/
|
|
8252
8295
|
var PauseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8253
8296
|
var gradient = _ref.gradient,
|
|
8254
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8297
|
+
props = _objectWithoutProperties(_ref, _excluded$2M);
|
|
8255
8298
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8256
8299
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8257
8300
|
width: 24,
|
|
@@ -8271,7 +8314,7 @@
|
|
|
8271
8314
|
PauseSmallIcon.displayName = "PauseSmallIcon";
|
|
8272
8315
|
var PauseSmallIcon$1 = PauseSmallIcon;
|
|
8273
8316
|
|
|
8274
|
-
var _excluded$
|
|
8317
|
+
var _excluded$2L = ["gradient"];
|
|
8275
8318
|
|
|
8276
8319
|
/**
|
|
8277
8320
|
* @component PencilSmallIcon
|
|
@@ -8301,7 +8344,7 @@
|
|
|
8301
8344
|
*/
|
|
8302
8345
|
var PencilSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8303
8346
|
var gradient = _ref.gradient,
|
|
8304
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8347
|
+
props = _objectWithoutProperties(_ref, _excluded$2L);
|
|
8305
8348
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8306
8349
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8307
8350
|
width: 12,
|
|
@@ -8320,7 +8363,7 @@
|
|
|
8320
8363
|
PencilSmallIcon.displayName = "PencilSmallIcon";
|
|
8321
8364
|
var PencilSmallIcon$1 = PencilSmallIcon;
|
|
8322
8365
|
|
|
8323
|
-
var _excluded$
|
|
8366
|
+
var _excluded$2K = ["gradient"];
|
|
8324
8367
|
|
|
8325
8368
|
/**
|
|
8326
8369
|
* @component PencilIcon
|
|
@@ -8350,7 +8393,7 @@
|
|
|
8350
8393
|
*/
|
|
8351
8394
|
var PencilIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8352
8395
|
var gradient = _ref.gradient,
|
|
8353
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8396
|
+
props = _objectWithoutProperties(_ref, _excluded$2K);
|
|
8354
8397
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8355
8398
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8356
8399
|
width: 24,
|
|
@@ -8369,7 +8412,7 @@
|
|
|
8369
8412
|
PencilIcon.displayName = "PencilIcon";
|
|
8370
8413
|
var PencilIcon$1 = PencilIcon;
|
|
8371
8414
|
|
|
8372
|
-
var _excluded$
|
|
8415
|
+
var _excluded$2J = ["gradient"];
|
|
8373
8416
|
|
|
8374
8417
|
/**
|
|
8375
8418
|
* @component PendingPaymentSmallIcon
|
|
@@ -8399,7 +8442,7 @@
|
|
|
8399
8442
|
*/
|
|
8400
8443
|
var PendingPaymentSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8401
8444
|
var gradient = _ref.gradient,
|
|
8402
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8445
|
+
props = _objectWithoutProperties(_ref, _excluded$2J);
|
|
8403
8446
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8404
8447
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8405
8448
|
width: 12,
|
|
@@ -8419,7 +8462,7 @@
|
|
|
8419
8462
|
PendingPaymentSmallIcon.displayName = "PendingPaymentSmallIcon";
|
|
8420
8463
|
var PendingPaymentSmallIcon$1 = PendingPaymentSmallIcon;
|
|
8421
8464
|
|
|
8422
|
-
var _excluded$
|
|
8465
|
+
var _excluded$2I = ["gradient"];
|
|
8423
8466
|
|
|
8424
8467
|
/**
|
|
8425
8468
|
* @component PeopleIcon
|
|
@@ -8449,7 +8492,7 @@
|
|
|
8449
8492
|
*/
|
|
8450
8493
|
var PeopleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8451
8494
|
var gradient = _ref.gradient,
|
|
8452
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8495
|
+
props = _objectWithoutProperties(_ref, _excluded$2I);
|
|
8453
8496
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8454
8497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8455
8498
|
width: 24,
|
|
@@ -8473,7 +8516,7 @@
|
|
|
8473
8516
|
PeopleIcon.displayName = "PeopleIcon";
|
|
8474
8517
|
var PeopleIcon$1 = PeopleIcon;
|
|
8475
8518
|
|
|
8476
|
-
var _excluded$
|
|
8519
|
+
var _excluded$2H = ["gradient"];
|
|
8477
8520
|
|
|
8478
8521
|
/**
|
|
8479
8522
|
* @component PersonArrowOutCircleIcon
|
|
@@ -8503,7 +8546,7 @@
|
|
|
8503
8546
|
*/
|
|
8504
8547
|
var PersonArrowOutCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8505
8548
|
var gradient = _ref.gradient,
|
|
8506
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8549
|
+
props = _objectWithoutProperties(_ref, _excluded$2H);
|
|
8507
8550
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8508
8551
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8509
8552
|
width: 24,
|
|
@@ -8524,7 +8567,7 @@
|
|
|
8524
8567
|
PersonArrowOutCircleIcon.displayName = "PersonArrowOutCircleIcon";
|
|
8525
8568
|
var PersonArrowOutCircleIcon$1 = PersonArrowOutCircleIcon;
|
|
8526
8569
|
|
|
8527
|
-
var _excluded$
|
|
8570
|
+
var _excluded$2G = ["gradient"];
|
|
8528
8571
|
|
|
8529
8572
|
/**
|
|
8530
8573
|
* @component PersonCircleOffIcon
|
|
@@ -8554,7 +8597,7 @@
|
|
|
8554
8597
|
*/
|
|
8555
8598
|
var PersonCircleOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8556
8599
|
var gradient = _ref.gradient,
|
|
8557
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8600
|
+
props = _objectWithoutProperties(_ref, _excluded$2G);
|
|
8558
8601
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8559
8602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8560
8603
|
width: 24,
|
|
@@ -8574,7 +8617,7 @@
|
|
|
8574
8617
|
PersonCircleOffIcon.displayName = "PersonCircleOffIcon";
|
|
8575
8618
|
var PersonCircleOffIcon$1 = PersonCircleOffIcon;
|
|
8576
8619
|
|
|
8577
|
-
var _excluded$
|
|
8620
|
+
var _excluded$2F = ["gradient"];
|
|
8578
8621
|
|
|
8579
8622
|
/**
|
|
8580
8623
|
* @component PersonCircleIcon
|
|
@@ -8604,7 +8647,7 @@
|
|
|
8604
8647
|
*/
|
|
8605
8648
|
var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8606
8649
|
var gradient = _ref.gradient,
|
|
8607
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8650
|
+
props = _objectWithoutProperties(_ref, _excluded$2F);
|
|
8608
8651
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8609
8652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8610
8653
|
width: 24,
|
|
@@ -8624,7 +8667,7 @@
|
|
|
8624
8667
|
PersonCircleIcon.displayName = "PersonCircleIcon";
|
|
8625
8668
|
var PersonCircleIcon$1 = PersonCircleIcon;
|
|
8626
8669
|
|
|
8627
|
-
var _excluded$
|
|
8670
|
+
var _excluded$2E = ["gradient"];
|
|
8628
8671
|
|
|
8629
8672
|
/**
|
|
8630
8673
|
* @component PersonListIcon
|
|
@@ -8654,7 +8697,7 @@
|
|
|
8654
8697
|
*/
|
|
8655
8698
|
var PersonListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8656
8699
|
var gradient = _ref.gradient,
|
|
8657
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8700
|
+
props = _objectWithoutProperties(_ref, _excluded$2E);
|
|
8658
8701
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8659
8702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8660
8703
|
width: 24,
|
|
@@ -8675,7 +8718,7 @@
|
|
|
8675
8718
|
PersonListIcon.displayName = "PersonListIcon";
|
|
8676
8719
|
var PersonListIcon$1 = PersonListIcon;
|
|
8677
8720
|
|
|
8678
|
-
var _excluded$
|
|
8721
|
+
var _excluded$2D = ["gradient"];
|
|
8679
8722
|
|
|
8680
8723
|
/**
|
|
8681
8724
|
* @component PersonPlusIcon
|
|
@@ -8705,7 +8748,7 @@
|
|
|
8705
8748
|
*/
|
|
8706
8749
|
var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8707
8750
|
var gradient = _ref.gradient,
|
|
8708
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8751
|
+
props = _objectWithoutProperties(_ref, _excluded$2D);
|
|
8709
8752
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8710
8753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8711
8754
|
width: 24,
|
|
@@ -8725,7 +8768,7 @@
|
|
|
8725
8768
|
PersonPlusIcon.displayName = "PersonPlusIcon";
|
|
8726
8769
|
var PersonPlusIcon$1 = PersonPlusIcon;
|
|
8727
8770
|
|
|
8728
|
-
var _excluded$
|
|
8771
|
+
var _excluded$2C = ["gradient"];
|
|
8729
8772
|
|
|
8730
8773
|
/**
|
|
8731
8774
|
* @component PersonIcon
|
|
@@ -8755,7 +8798,7 @@
|
|
|
8755
8798
|
*/
|
|
8756
8799
|
var PersonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8757
8800
|
var gradient = _ref.gradient,
|
|
8758
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8801
|
+
props = _objectWithoutProperties(_ref, _excluded$2C);
|
|
8759
8802
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8760
8803
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8761
8804
|
width: 24,
|
|
@@ -8775,7 +8818,7 @@
|
|
|
8775
8818
|
PersonIcon.displayName = "PersonIcon";
|
|
8776
8819
|
var PersonIcon$1 = PersonIcon;
|
|
8777
8820
|
|
|
8778
|
-
var _excluded$
|
|
8821
|
+
var _excluded$2B = ["gradient"];
|
|
8779
8822
|
|
|
8780
8823
|
/**
|
|
8781
8824
|
* @component PinSmallIcon
|
|
@@ -8805,7 +8848,7 @@
|
|
|
8805
8848
|
*/
|
|
8806
8849
|
var PinSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8807
8850
|
var gradient = _ref.gradient,
|
|
8808
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8851
|
+
props = _objectWithoutProperties(_ref, _excluded$2B);
|
|
8809
8852
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8810
8853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8811
8854
|
width: 12,
|
|
@@ -8826,7 +8869,7 @@
|
|
|
8826
8869
|
PinSmallIcon.displayName = "PinSmallIcon";
|
|
8827
8870
|
var PinSmallIcon$1 = PinSmallIcon;
|
|
8828
8871
|
|
|
8829
|
-
var _excluded$
|
|
8872
|
+
var _excluded$2A = ["gradient"];
|
|
8830
8873
|
|
|
8831
8874
|
/**
|
|
8832
8875
|
* @component PinIcon
|
|
@@ -8856,7 +8899,7 @@
|
|
|
8856
8899
|
*/
|
|
8857
8900
|
var PinIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8858
8901
|
var gradient = _ref.gradient,
|
|
8859
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8902
|
+
props = _objectWithoutProperties(_ref, _excluded$2A);
|
|
8860
8903
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8861
8904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8862
8905
|
width: 24,
|
|
@@ -8876,7 +8919,7 @@
|
|
|
8876
8919
|
PinIcon.displayName = "PinIcon";
|
|
8877
8920
|
var PinIcon$1 = PinIcon;
|
|
8878
8921
|
|
|
8879
|
-
var _excluded$
|
|
8922
|
+
var _excluded$2z = ["gradient"];
|
|
8880
8923
|
|
|
8881
8924
|
/**
|
|
8882
8925
|
* @component PlayCircleOutlineIcon
|
|
@@ -8906,7 +8949,7 @@
|
|
|
8906
8949
|
*/
|
|
8907
8950
|
var PlayCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8908
8951
|
var gradient = _ref.gradient,
|
|
8909
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8952
|
+
props = _objectWithoutProperties(_ref, _excluded$2z);
|
|
8910
8953
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8911
8954
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8912
8955
|
width: 24,
|
|
@@ -8926,7 +8969,7 @@
|
|
|
8926
8969
|
PlayCircleOutlineIcon.displayName = "PlayCircleOutlineIcon";
|
|
8927
8970
|
var PlayCircleOutlineIcon$1 = PlayCircleOutlineIcon;
|
|
8928
8971
|
|
|
8929
|
-
var _excluded$
|
|
8972
|
+
var _excluded$2y = ["gradient"];
|
|
8930
8973
|
|
|
8931
8974
|
/**
|
|
8932
8975
|
* @component PlayIcon
|
|
@@ -8956,7 +8999,7 @@
|
|
|
8956
8999
|
*/
|
|
8957
9000
|
var PlayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
8958
9001
|
var gradient = _ref.gradient,
|
|
8959
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9002
|
+
props = _objectWithoutProperties(_ref, _excluded$2y);
|
|
8960
9003
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8961
9004
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8962
9005
|
width: 24,
|
|
@@ -8976,7 +9019,7 @@
|
|
|
8976
9019
|
PlayIcon.displayName = "PlayIcon";
|
|
8977
9020
|
var PlayIcon$1 = PlayIcon;
|
|
8978
9021
|
|
|
8979
|
-
var _excluded$
|
|
9022
|
+
var _excluded$2x = ["gradient"];
|
|
8980
9023
|
|
|
8981
9024
|
/**
|
|
8982
9025
|
* @component PlaySmallIcon
|
|
@@ -9006,7 +9049,7 @@
|
|
|
9006
9049
|
*/
|
|
9007
9050
|
var PlaySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9008
9051
|
var gradient = _ref.gradient,
|
|
9009
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9052
|
+
props = _objectWithoutProperties(_ref, _excluded$2x);
|
|
9010
9053
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9011
9054
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9012
9055
|
width: 24,
|
|
@@ -9026,7 +9069,7 @@
|
|
|
9026
9069
|
PlaySmallIcon.displayName = "PlaySmallIcon";
|
|
9027
9070
|
var PlaySmallIcon$1 = PlaySmallIcon;
|
|
9028
9071
|
|
|
9029
|
-
var _excluded$
|
|
9072
|
+
var _excluded$2w = ["gradient"];
|
|
9030
9073
|
|
|
9031
9074
|
/**
|
|
9032
9075
|
* @component PriorityLowIcon
|
|
@@ -9056,7 +9099,7 @@
|
|
|
9056
9099
|
*/
|
|
9057
9100
|
var PriorityLowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9058
9101
|
var gradient = _ref.gradient,
|
|
9059
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9102
|
+
props = _objectWithoutProperties(_ref, _excluded$2w);
|
|
9060
9103
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9061
9104
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9062
9105
|
width: 24,
|
|
@@ -9077,7 +9120,7 @@
|
|
|
9077
9120
|
PriorityLowIcon.displayName = "PriorityLowIcon";
|
|
9078
9121
|
var PriorityLowIcon$1 = PriorityLowIcon;
|
|
9079
9122
|
|
|
9080
|
-
var _excluded$
|
|
9123
|
+
var _excluded$2v = ["gradient"];
|
|
9081
9124
|
|
|
9082
9125
|
/**
|
|
9083
9126
|
* @component ProjectAddIcon
|
|
@@ -9107,7 +9150,7 @@
|
|
|
9107
9150
|
*/
|
|
9108
9151
|
var ProjectAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9109
9152
|
var gradient = _ref.gradient,
|
|
9110
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9153
|
+
props = _objectWithoutProperties(_ref, _excluded$2v);
|
|
9111
9154
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9112
9155
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9113
9156
|
width: 24,
|
|
@@ -9127,7 +9170,7 @@
|
|
|
9127
9170
|
ProjectAddIcon.displayName = "ProjectAddIcon";
|
|
9128
9171
|
var ProjectAddIcon$1 = ProjectAddIcon;
|
|
9129
9172
|
|
|
9130
|
-
var _excluded$
|
|
9173
|
+
var _excluded$2u = ["gradient"];
|
|
9131
9174
|
|
|
9132
9175
|
/**
|
|
9133
9176
|
* @component ProjectSearchIcon
|
|
@@ -9157,7 +9200,7 @@
|
|
|
9157
9200
|
*/
|
|
9158
9201
|
var ProjectSearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9159
9202
|
var gradient = _ref.gradient,
|
|
9160
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9203
|
+
props = _objectWithoutProperties(_ref, _excluded$2u);
|
|
9161
9204
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9162
9205
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9163
9206
|
width: 24,
|
|
@@ -9178,7 +9221,7 @@
|
|
|
9178
9221
|
ProjectSearchIcon.displayName = "ProjectSearchIcon";
|
|
9179
9222
|
var ProjectSearchIcon$1 = ProjectSearchIcon;
|
|
9180
9223
|
|
|
9181
|
-
var _excluded$
|
|
9224
|
+
var _excluded$2t = ["gradient"];
|
|
9182
9225
|
|
|
9183
9226
|
/**
|
|
9184
9227
|
* @component ProjectStarIcon
|
|
@@ -9208,7 +9251,7 @@
|
|
|
9208
9251
|
*/
|
|
9209
9252
|
var ProjectStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9210
9253
|
var gradient = _ref.gradient,
|
|
9211
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9254
|
+
props = _objectWithoutProperties(_ref, _excluded$2t);
|
|
9212
9255
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9213
9256
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9214
9257
|
width: 24,
|
|
@@ -9231,7 +9274,7 @@
|
|
|
9231
9274
|
ProjectStarIcon.displayName = "ProjectStarIcon";
|
|
9232
9275
|
var ProjectStarIcon$1 = ProjectStarIcon;
|
|
9233
9276
|
|
|
9234
|
-
var _excluded$
|
|
9277
|
+
var _excluded$2s = ["gradient"];
|
|
9235
9278
|
|
|
9236
9279
|
/**
|
|
9237
9280
|
* @component ProjectTemplateAddIcon
|
|
@@ -9261,7 +9304,7 @@
|
|
|
9261
9304
|
*/
|
|
9262
9305
|
var ProjectTemplateAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9263
9306
|
var gradient = _ref.gradient,
|
|
9264
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9307
|
+
props = _objectWithoutProperties(_ref, _excluded$2s);
|
|
9265
9308
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9266
9309
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9267
9310
|
width: 24,
|
|
@@ -9281,7 +9324,7 @@
|
|
|
9281
9324
|
ProjectTemplateAddIcon.displayName = "ProjectTemplateAddIcon";
|
|
9282
9325
|
var ProjectTemplateAddIcon$1 = ProjectTemplateAddIcon;
|
|
9283
9326
|
|
|
9284
|
-
var _excluded$
|
|
9327
|
+
var _excluded$2r = ["gradient"];
|
|
9285
9328
|
|
|
9286
9329
|
/**
|
|
9287
9330
|
* @component ProjectTemplateConvertIcon
|
|
@@ -9311,7 +9354,7 @@
|
|
|
9311
9354
|
*/
|
|
9312
9355
|
var ProjectTemplateConvertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9313
9356
|
var gradient = _ref.gradient,
|
|
9314
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9357
|
+
props = _objectWithoutProperties(_ref, _excluded$2r);
|
|
9315
9358
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9316
9359
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9317
9360
|
width: 24,
|
|
@@ -9331,7 +9374,7 @@
|
|
|
9331
9374
|
ProjectTemplateConvertIcon.displayName = "ProjectTemplateConvertIcon";
|
|
9332
9375
|
var ProjectTemplateConvertIcon$1 = ProjectTemplateConvertIcon;
|
|
9333
9376
|
|
|
9334
|
-
var _excluded$
|
|
9377
|
+
var _excluded$2q = ["gradient"];
|
|
9335
9378
|
|
|
9336
9379
|
/**
|
|
9337
9380
|
* @component ProjectTemplateIcon
|
|
@@ -9361,7 +9404,7 @@
|
|
|
9361
9404
|
*/
|
|
9362
9405
|
var ProjectTemplateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9363
9406
|
var gradient = _ref.gradient,
|
|
9364
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9407
|
+
props = _objectWithoutProperties(_ref, _excluded$2q);
|
|
9365
9408
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9366
9409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9367
9410
|
width: 24,
|
|
@@ -9381,7 +9424,7 @@
|
|
|
9381
9424
|
ProjectTemplateIcon.displayName = "ProjectTemplateIcon";
|
|
9382
9425
|
var ProjectTemplateIcon$1 = ProjectTemplateIcon;
|
|
9383
9426
|
|
|
9384
|
-
var _excluded$
|
|
9427
|
+
var _excluded$2p = ["gradient"];
|
|
9385
9428
|
|
|
9386
9429
|
/**
|
|
9387
9430
|
* @component ProjectsIcon
|
|
@@ -9411,7 +9454,7 @@
|
|
|
9411
9454
|
*/
|
|
9412
9455
|
var ProjectsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9413
9456
|
var gradient = _ref.gradient,
|
|
9414
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9457
|
+
props = _objectWithoutProperties(_ref, _excluded$2p);
|
|
9415
9458
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9416
9459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9417
9460
|
width: 24,
|
|
@@ -9435,7 +9478,7 @@
|
|
|
9435
9478
|
ProjectsIcon.displayName = "ProjectsIcon";
|
|
9436
9479
|
var ProjectsIcon$1 = ProjectsIcon;
|
|
9437
9480
|
|
|
9438
|
-
var _excluded$
|
|
9481
|
+
var _excluded$2o = ["gradient"];
|
|
9439
9482
|
|
|
9440
9483
|
/**
|
|
9441
9484
|
* @component PuzzleIcon
|
|
@@ -9465,7 +9508,7 @@
|
|
|
9465
9508
|
*/
|
|
9466
9509
|
var PuzzleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9467
9510
|
var gradient = _ref.gradient,
|
|
9468
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9511
|
+
props = _objectWithoutProperties(_ref, _excluded$2o);
|
|
9469
9512
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9470
9513
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9471
9514
|
width: 24,
|
|
@@ -9486,7 +9529,7 @@
|
|
|
9486
9529
|
PuzzleIcon.displayName = "PuzzleIcon";
|
|
9487
9530
|
var PuzzleIcon$1 = PuzzleIcon;
|
|
9488
9531
|
|
|
9489
|
-
var _excluded$
|
|
9532
|
+
var _excluded$2n = ["gradient"];
|
|
9490
9533
|
|
|
9491
9534
|
/**
|
|
9492
9535
|
* @component RadioBlankIcon
|
|
@@ -9516,7 +9559,7 @@
|
|
|
9516
9559
|
*/
|
|
9517
9560
|
var RadioBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9518
9561
|
var gradient = _ref.gradient,
|
|
9519
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9562
|
+
props = _objectWithoutProperties(_ref, _excluded$2n);
|
|
9520
9563
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9521
9564
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9522
9565
|
width: 24,
|
|
@@ -9536,7 +9579,7 @@
|
|
|
9536
9579
|
RadioBlankIcon.displayName = "RadioBlankIcon";
|
|
9537
9580
|
var RadioBlankIcon$1 = RadioBlankIcon;
|
|
9538
9581
|
|
|
9539
|
-
var _excluded$
|
|
9582
|
+
var _excluded$2m = ["gradient"];
|
|
9540
9583
|
|
|
9541
9584
|
/**
|
|
9542
9585
|
* @component RadioButtonIcon
|
|
@@ -9566,7 +9609,7 @@
|
|
|
9566
9609
|
*/
|
|
9567
9610
|
var RadioButtonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9568
9611
|
var gradient = _ref.gradient,
|
|
9569
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9612
|
+
props = _objectWithoutProperties(_ref, _excluded$2m);
|
|
9570
9613
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9571
9614
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9572
9615
|
width: 16,
|
|
@@ -9594,7 +9637,7 @@
|
|
|
9594
9637
|
RadioButtonIcon.displayName = "RadioButtonIcon";
|
|
9595
9638
|
var RadioButtonIcon$1 = RadioButtonIcon;
|
|
9596
9639
|
|
|
9597
|
-
var _excluded$
|
|
9640
|
+
var _excluded$2l = ["gradient"];
|
|
9598
9641
|
|
|
9599
9642
|
/**
|
|
9600
9643
|
* @component RearangeIcon
|
|
@@ -9624,7 +9667,7 @@
|
|
|
9624
9667
|
*/
|
|
9625
9668
|
var RearangeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9626
9669
|
var gradient = _ref.gradient,
|
|
9627
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9670
|
+
props = _objectWithoutProperties(_ref, _excluded$2l);
|
|
9628
9671
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9629
9672
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9630
9673
|
width: 24,
|
|
@@ -9644,7 +9687,7 @@
|
|
|
9644
9687
|
RearangeIcon.displayName = "RearangeIcon";
|
|
9645
9688
|
var RearangeIcon$1 = RearangeIcon;
|
|
9646
9689
|
|
|
9647
|
-
var _excluded$
|
|
9690
|
+
var _excluded$2k = ["gradient"];
|
|
9648
9691
|
|
|
9649
9692
|
/**
|
|
9650
9693
|
* @component RearrangeSmallIcon
|
|
@@ -9674,7 +9717,7 @@
|
|
|
9674
9717
|
*/
|
|
9675
9718
|
var RearrangeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9676
9719
|
var gradient = _ref.gradient,
|
|
9677
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9720
|
+
props = _objectWithoutProperties(_ref, _excluded$2k);
|
|
9678
9721
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9679
9722
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9680
9723
|
width: 12,
|
|
@@ -9694,7 +9737,7 @@
|
|
|
9694
9737
|
RearrangeSmallIcon.displayName = "RearrangeSmallIcon";
|
|
9695
9738
|
var RearrangeSmallIcon$1 = RearrangeSmallIcon;
|
|
9696
9739
|
|
|
9697
|
-
var _excluded$
|
|
9740
|
+
var _excluded$2j = ["gradient"];
|
|
9698
9741
|
|
|
9699
9742
|
/**
|
|
9700
9743
|
* @component RecurringCheckmarkSmallIcon
|
|
@@ -9724,7 +9767,7 @@
|
|
|
9724
9767
|
*/
|
|
9725
9768
|
var RecurringCheckmarkSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9726
9769
|
var gradient = _ref.gradient,
|
|
9727
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9770
|
+
props = _objectWithoutProperties(_ref, _excluded$2j);
|
|
9728
9771
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9729
9772
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9730
9773
|
width: 12,
|
|
@@ -9744,7 +9787,7 @@
|
|
|
9744
9787
|
RecurringCheckmarkSmallIcon.displayName = "RecurringCheckmarkSmallIcon";
|
|
9745
9788
|
var RecurringCheckmarkSmallIcon$1 = RecurringCheckmarkSmallIcon;
|
|
9746
9789
|
|
|
9747
|
-
var _excluded$
|
|
9790
|
+
var _excluded$2i = ["gradient"];
|
|
9748
9791
|
|
|
9749
9792
|
/**
|
|
9750
9793
|
* @component RecurringCheckmarkIcon
|
|
@@ -9774,7 +9817,7 @@
|
|
|
9774
9817
|
*/
|
|
9775
9818
|
var RecurringCheckmarkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9776
9819
|
var gradient = _ref.gradient,
|
|
9777
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9820
|
+
props = _objectWithoutProperties(_ref, _excluded$2i);
|
|
9778
9821
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9779
9822
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9780
9823
|
width: 24,
|
|
@@ -9794,7 +9837,7 @@
|
|
|
9794
9837
|
RecurringCheckmarkIcon.displayName = "RecurringCheckmarkIcon";
|
|
9795
9838
|
var RecurringCheckmarkIcon$1 = RecurringCheckmarkIcon;
|
|
9796
9839
|
|
|
9797
|
-
var _excluded$
|
|
9840
|
+
var _excluded$2h = ["gradient"];
|
|
9798
9841
|
|
|
9799
9842
|
/**
|
|
9800
9843
|
* @component RecurringDollarIcon
|
|
@@ -9824,7 +9867,7 @@
|
|
|
9824
9867
|
*/
|
|
9825
9868
|
var RecurringDollarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9826
9869
|
var gradient = _ref.gradient,
|
|
9827
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9870
|
+
props = _objectWithoutProperties(_ref, _excluded$2h);
|
|
9828
9871
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9829
9872
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9830
9873
|
width: 24,
|
|
@@ -9846,7 +9889,7 @@
|
|
|
9846
9889
|
RecurringDollarIcon.displayName = "RecurringDollarIcon";
|
|
9847
9890
|
var RecurringDollarIcon$1 = RecurringDollarIcon;
|
|
9848
9891
|
|
|
9849
|
-
var _excluded$
|
|
9892
|
+
var _excluded$2g = ["gradient"];
|
|
9850
9893
|
|
|
9851
9894
|
/**
|
|
9852
9895
|
* @component RecurringSmallIcon
|
|
@@ -9876,7 +9919,7 @@
|
|
|
9876
9919
|
*/
|
|
9877
9920
|
var RecurringSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9878
9921
|
var gradient = _ref.gradient,
|
|
9879
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9922
|
+
props = _objectWithoutProperties(_ref, _excluded$2g);
|
|
9880
9923
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9881
9924
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9882
9925
|
width: 12,
|
|
@@ -9897,7 +9940,7 @@
|
|
|
9897
9940
|
RecurringSmallIcon.displayName = "RecurringSmallIcon";
|
|
9898
9941
|
var RecurringSmallIcon$1 = RecurringSmallIcon;
|
|
9899
9942
|
|
|
9900
|
-
var _excluded$
|
|
9943
|
+
var _excluded$2f = ["gradient"];
|
|
9901
9944
|
|
|
9902
9945
|
/**
|
|
9903
9946
|
* @component ReminderIcon
|
|
@@ -9927,7 +9970,7 @@
|
|
|
9927
9970
|
*/
|
|
9928
9971
|
var ReminderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9929
9972
|
var gradient = _ref.gradient,
|
|
9930
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9973
|
+
props = _objectWithoutProperties(_ref, _excluded$2f);
|
|
9931
9974
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9932
9975
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9933
9976
|
width: 18,
|
|
@@ -9953,7 +9996,7 @@
|
|
|
9953
9996
|
ReminderIcon.displayName = "ReminderIcon";
|
|
9954
9997
|
var ReminderIcon$1 = ReminderIcon;
|
|
9955
9998
|
|
|
9956
|
-
var _excluded$
|
|
9999
|
+
var _excluded$2e = ["gradient"];
|
|
9957
10000
|
|
|
9958
10001
|
/**
|
|
9959
10002
|
* @component ReorderIcon
|
|
@@ -9983,7 +10026,7 @@
|
|
|
9983
10026
|
*/
|
|
9984
10027
|
var ReorderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
9985
10028
|
var gradient = _ref.gradient,
|
|
9986
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10029
|
+
props = _objectWithoutProperties(_ref, _excluded$2e);
|
|
9987
10030
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9988
10031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9989
10032
|
width: 24,
|
|
@@ -10002,7 +10045,7 @@
|
|
|
10002
10045
|
ReorderIcon.displayName = "ReorderIcon";
|
|
10003
10046
|
var ReorderIcon$1 = ReorderIcon;
|
|
10004
10047
|
|
|
10005
|
-
var _excluded$
|
|
10048
|
+
var _excluded$2d = ["gradient"];
|
|
10006
10049
|
|
|
10007
10050
|
/**
|
|
10008
10051
|
* @component ReportTimeIcon
|
|
@@ -10032,7 +10075,7 @@
|
|
|
10032
10075
|
*/
|
|
10033
10076
|
var ReportTimeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10034
10077
|
var gradient = _ref.gradient,
|
|
10035
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10078
|
+
props = _objectWithoutProperties(_ref, _excluded$2d);
|
|
10036
10079
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10037
10080
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10038
10081
|
width: 24,
|
|
@@ -10052,7 +10095,7 @@
|
|
|
10052
10095
|
ReportTimeIcon.displayName = "ReportTimeIcon";
|
|
10053
10096
|
var ReportTimeIcon$1 = ReportTimeIcon;
|
|
10054
10097
|
|
|
10055
|
-
var _excluded$
|
|
10098
|
+
var _excluded$2c = ["gradient"];
|
|
10056
10099
|
|
|
10057
10100
|
/**
|
|
10058
10101
|
* @component ReportsIcon
|
|
@@ -10082,7 +10125,7 @@
|
|
|
10082
10125
|
*/
|
|
10083
10126
|
var ReportsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10084
10127
|
var gradient = _ref.gradient,
|
|
10085
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10128
|
+
props = _objectWithoutProperties(_ref, _excluded$2c);
|
|
10086
10129
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10087
10130
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10088
10131
|
width: 24,
|
|
@@ -10106,7 +10149,7 @@
|
|
|
10106
10149
|
ReportsIcon.displayName = "ReportsIcon";
|
|
10107
10150
|
var ReportsIcon$1 = ReportsIcon;
|
|
10108
10151
|
|
|
10109
|
-
var _excluded$
|
|
10152
|
+
var _excluded$2b = ["gradient"];
|
|
10110
10153
|
|
|
10111
10154
|
/**
|
|
10112
10155
|
* @component RobotIcon
|
|
@@ -10136,7 +10179,7 @@
|
|
|
10136
10179
|
*/
|
|
10137
10180
|
var RobotIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10138
10181
|
var gradient = _ref.gradient,
|
|
10139
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10182
|
+
props = _objectWithoutProperties(_ref, _excluded$2b);
|
|
10140
10183
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10141
10184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10142
10185
|
width: 24,
|
|
@@ -10159,7 +10202,7 @@
|
|
|
10159
10202
|
RobotIcon.displayName = "RobotIcon";
|
|
10160
10203
|
var RobotIcon$1 = RobotIcon;
|
|
10161
10204
|
|
|
10162
|
-
var _excluded$
|
|
10205
|
+
var _excluded$2a = ["gradient"];
|
|
10163
10206
|
|
|
10164
10207
|
/**
|
|
10165
10208
|
* @component RocketSmallIcon
|
|
@@ -10189,7 +10232,7 @@
|
|
|
10189
10232
|
*/
|
|
10190
10233
|
var RocketSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10191
10234
|
var gradient = _ref.gradient,
|
|
10192
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10235
|
+
props = _objectWithoutProperties(_ref, _excluded$2a);
|
|
10193
10236
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10194
10237
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10195
10238
|
width: 18,
|
|
@@ -10207,7 +10250,7 @@
|
|
|
10207
10250
|
RocketSmallIcon.displayName = "RocketSmallIcon";
|
|
10208
10251
|
var RocketSmallIcon$1 = RocketSmallIcon;
|
|
10209
10252
|
|
|
10210
|
-
var _excluded$
|
|
10253
|
+
var _excluded$29 = ["gradient"];
|
|
10211
10254
|
|
|
10212
10255
|
/**
|
|
10213
10256
|
* @component RocketIcon
|
|
@@ -10237,7 +10280,7 @@
|
|
|
10237
10280
|
*/
|
|
10238
10281
|
var RocketIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10239
10282
|
var gradient = _ref.gradient,
|
|
10240
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10283
|
+
props = _objectWithoutProperties(_ref, _excluded$29);
|
|
10241
10284
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10242
10285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10243
10286
|
width: 24,
|
|
@@ -10256,7 +10299,7 @@
|
|
|
10256
10299
|
RocketIcon.displayName = "RocketIcon";
|
|
10257
10300
|
var RocketIcon$1 = RocketIcon;
|
|
10258
10301
|
|
|
10259
|
-
var _excluded$
|
|
10302
|
+
var _excluded$28 = ["gradient"];
|
|
10260
10303
|
|
|
10261
10304
|
/**
|
|
10262
10305
|
* @component RoundedRectangleIcon
|
|
@@ -10286,7 +10329,7 @@
|
|
|
10286
10329
|
*/
|
|
10287
10330
|
var RoundedRectangleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10288
10331
|
var gradient = _ref.gradient,
|
|
10289
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10332
|
+
props = _objectWithoutProperties(_ref, _excluded$28);
|
|
10290
10333
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10291
10334
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10292
10335
|
width: 24,
|
|
@@ -10312,7 +10355,7 @@
|
|
|
10312
10355
|
RoundedRectangleIcon.displayName = "RoundedRectangleIcon";
|
|
10313
10356
|
var RoundedRectangleIcon$1 = RoundedRectangleIcon;
|
|
10314
10357
|
|
|
10315
|
-
var _excluded$
|
|
10358
|
+
var _excluded$27 = ["gradient"];
|
|
10316
10359
|
|
|
10317
10360
|
/**
|
|
10318
10361
|
* @component SaveIcon
|
|
@@ -10342,7 +10385,7 @@
|
|
|
10342
10385
|
*/
|
|
10343
10386
|
var SaveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10344
10387
|
var gradient = _ref.gradient,
|
|
10345
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10388
|
+
props = _objectWithoutProperties(_ref, _excluded$27);
|
|
10346
10389
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10347
10390
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10348
10391
|
width: 24,
|
|
@@ -10363,7 +10406,7 @@
|
|
|
10363
10406
|
SaveIcon.displayName = "SaveIcon";
|
|
10364
10407
|
var SaveIcon$1 = SaveIcon;
|
|
10365
10408
|
|
|
10366
|
-
var _excluded$
|
|
10409
|
+
var _excluded$26 = ["gradient"];
|
|
10367
10410
|
|
|
10368
10411
|
/**
|
|
10369
10412
|
* @component SearchLargeIcon
|
|
@@ -10393,7 +10436,7 @@
|
|
|
10393
10436
|
*/
|
|
10394
10437
|
var SearchLargeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10395
10438
|
var gradient = _ref.gradient,
|
|
10396
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10439
|
+
props = _objectWithoutProperties(_ref, _excluded$26);
|
|
10397
10440
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10398
10441
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10399
10442
|
width: 32,
|
|
@@ -10414,7 +10457,7 @@
|
|
|
10414
10457
|
SearchLargeIcon.displayName = "SearchLargeIcon";
|
|
10415
10458
|
var SearchLargeIcon$1 = SearchLargeIcon;
|
|
10416
10459
|
|
|
10417
|
-
var _excluded$
|
|
10460
|
+
var _excluded$25 = ["gradient"];
|
|
10418
10461
|
|
|
10419
10462
|
/**
|
|
10420
10463
|
* @component SearchPlusIcon
|
|
@@ -10444,7 +10487,7 @@
|
|
|
10444
10487
|
*/
|
|
10445
10488
|
var SearchPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10446
10489
|
var gradient = _ref.gradient,
|
|
10447
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10490
|
+
props = _objectWithoutProperties(_ref, _excluded$25);
|
|
10448
10491
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10449
10492
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10450
10493
|
width: 24,
|
|
@@ -10468,7 +10511,7 @@
|
|
|
10468
10511
|
SearchPlusIcon.displayName = "SearchPlusIcon";
|
|
10469
10512
|
var SearchPlusIcon$1 = SearchPlusIcon;
|
|
10470
10513
|
|
|
10471
|
-
var _excluded$
|
|
10514
|
+
var _excluded$24 = ["gradient"];
|
|
10472
10515
|
|
|
10473
10516
|
/**
|
|
10474
10517
|
* @component SearchIcon
|
|
@@ -10498,7 +10541,7 @@
|
|
|
10498
10541
|
*/
|
|
10499
10542
|
var SearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10500
10543
|
var gradient = _ref.gradient,
|
|
10501
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10544
|
+
props = _objectWithoutProperties(_ref, _excluded$24);
|
|
10502
10545
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10503
10546
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10504
10547
|
width: 24,
|
|
@@ -10517,7 +10560,7 @@
|
|
|
10517
10560
|
SearchIcon.displayName = "SearchIcon";
|
|
10518
10561
|
var SearchIcon$1 = SearchIcon;
|
|
10519
10562
|
|
|
10520
|
-
var _excluded$
|
|
10563
|
+
var _excluded$23 = ["gradient"];
|
|
10521
10564
|
|
|
10522
10565
|
/**
|
|
10523
10566
|
* @component SendBlankIcon
|
|
@@ -10547,7 +10590,7 @@
|
|
|
10547
10590
|
*/
|
|
10548
10591
|
var SendBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10549
10592
|
var gradient = _ref.gradient,
|
|
10550
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10593
|
+
props = _objectWithoutProperties(_ref, _excluded$23);
|
|
10551
10594
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10552
10595
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10553
10596
|
width: 24,
|
|
@@ -10566,7 +10609,7 @@
|
|
|
10566
10609
|
SendBlankIcon.displayName = "SendBlankIcon";
|
|
10567
10610
|
var SendBlankIcon$1 = SendBlankIcon;
|
|
10568
10611
|
|
|
10569
|
-
var _excluded$
|
|
10612
|
+
var _excluded$22 = ["gradient"];
|
|
10570
10613
|
|
|
10571
10614
|
/**
|
|
10572
10615
|
* @component SendFilledIcon
|
|
@@ -10596,7 +10639,7 @@
|
|
|
10596
10639
|
*/
|
|
10597
10640
|
var SendFilledIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10598
10641
|
var gradient = _ref.gradient,
|
|
10599
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10642
|
+
props = _objectWithoutProperties(_ref, _excluded$22);
|
|
10600
10643
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10601
10644
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10602
10645
|
width: 24,
|
|
@@ -10615,7 +10658,7 @@
|
|
|
10615
10658
|
SendFilledIcon.displayName = "SendFilledIcon";
|
|
10616
10659
|
var SendFilledIcon$1 = SendFilledIcon;
|
|
10617
10660
|
|
|
10618
|
-
var _excluded$
|
|
10661
|
+
var _excluded$21 = ["gradient"];
|
|
10619
10662
|
|
|
10620
10663
|
/**
|
|
10621
10664
|
* @component SettingsIcon
|
|
@@ -10645,7 +10688,7 @@
|
|
|
10645
10688
|
*/
|
|
10646
10689
|
var SettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10647
10690
|
var gradient = _ref.gradient,
|
|
10648
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10691
|
+
props = _objectWithoutProperties(_ref, _excluded$21);
|
|
10649
10692
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10650
10693
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10651
10694
|
width: 24,
|
|
@@ -10665,7 +10708,7 @@
|
|
|
10665
10708
|
SettingsIcon.displayName = "SettingsIcon";
|
|
10666
10709
|
var SettingsIcon$1 = SettingsIcon;
|
|
10667
10710
|
|
|
10668
|
-
var _excluded$
|
|
10711
|
+
var _excluded$20 = ["gradient"];
|
|
10669
10712
|
|
|
10670
10713
|
/**
|
|
10671
10714
|
* @component ShieldIcon
|
|
@@ -10695,7 +10738,7 @@
|
|
|
10695
10738
|
*/
|
|
10696
10739
|
var ShieldIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10697
10740
|
var gradient = _ref.gradient,
|
|
10698
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10741
|
+
props = _objectWithoutProperties(_ref, _excluded$20);
|
|
10699
10742
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10700
10743
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10701
10744
|
width: 24,
|
|
@@ -10716,7 +10759,7 @@
|
|
|
10716
10759
|
ShieldIcon.displayName = "ShieldIcon";
|
|
10717
10760
|
var ShieldIcon$1 = ShieldIcon;
|
|
10718
10761
|
|
|
10719
|
-
var _excluded$
|
|
10762
|
+
var _excluded$1$ = ["gradient"];
|
|
10720
10763
|
|
|
10721
10764
|
/**
|
|
10722
10765
|
* @component SortGeneralIcon
|
|
@@ -10746,7 +10789,7 @@
|
|
|
10746
10789
|
*/
|
|
10747
10790
|
var SortGeneralIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10748
10791
|
var gradient = _ref.gradient,
|
|
10749
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10792
|
+
props = _objectWithoutProperties(_ref, _excluded$1$);
|
|
10750
10793
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10751
10794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10752
10795
|
width: 24,
|
|
@@ -10766,7 +10809,7 @@
|
|
|
10766
10809
|
SortGeneralIcon.displayName = "SortGeneralIcon";
|
|
10767
10810
|
var SortGeneralIcon$1 = SortGeneralIcon;
|
|
10768
10811
|
|
|
10769
|
-
var _excluded$
|
|
10812
|
+
var _excluded$1_ = ["gradient"];
|
|
10770
10813
|
|
|
10771
10814
|
/**
|
|
10772
10815
|
* @component SortIcon
|
|
@@ -10796,7 +10839,7 @@
|
|
|
10796
10839
|
*/
|
|
10797
10840
|
var SortIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10798
10841
|
var gradient = _ref.gradient,
|
|
10799
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10842
|
+
props = _objectWithoutProperties(_ref, _excluded$1_);
|
|
10800
10843
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10801
10844
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10802
10845
|
width: 10,
|
|
@@ -10816,7 +10859,7 @@
|
|
|
10816
10859
|
SortIcon.displayName = "SortIcon";
|
|
10817
10860
|
var SortIcon$1 = SortIcon;
|
|
10818
10861
|
|
|
10819
|
-
var _excluded$
|
|
10862
|
+
var _excluded$1Z = ["gradient"];
|
|
10820
10863
|
|
|
10821
10864
|
/**
|
|
10822
10865
|
* @component SortListIcon
|
|
@@ -10846,7 +10889,7 @@
|
|
|
10846
10889
|
*/
|
|
10847
10890
|
var SortListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10848
10891
|
var gradient = _ref.gradient,
|
|
10849
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10892
|
+
props = _objectWithoutProperties(_ref, _excluded$1Z);
|
|
10850
10893
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10851
10894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10852
10895
|
width: 20,
|
|
@@ -10866,7 +10909,7 @@
|
|
|
10866
10909
|
SortListIcon.displayName = "SortListIcon";
|
|
10867
10910
|
var SortListIcon$1 = SortListIcon;
|
|
10868
10911
|
|
|
10869
|
-
var _excluded$
|
|
10912
|
+
var _excluded$1Y = ["gradient"];
|
|
10870
10913
|
|
|
10871
10914
|
/**
|
|
10872
10915
|
* @component SortSmallIcon
|
|
@@ -10896,7 +10939,7 @@
|
|
|
10896
10939
|
*/
|
|
10897
10940
|
var SortSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10898
10941
|
var gradient = _ref.gradient,
|
|
10899
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10942
|
+
props = _objectWithoutProperties(_ref, _excluded$1Y);
|
|
10900
10943
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10901
10944
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10902
10945
|
width: 10,
|
|
@@ -10917,47 +10960,6 @@
|
|
|
10917
10960
|
SortSmallIcon.displayName = "SortSmallIcon";
|
|
10918
10961
|
var SortSmallIcon$1 = SortSmallIcon;
|
|
10919
10962
|
|
|
10920
|
-
var _excluded$1Y = ["gradient"];
|
|
10921
|
-
|
|
10922
|
-
/**
|
|
10923
|
-
* @component SourceCodeIcon
|
|
10924
|
-
* @description
|
|
10925
|
-
* Outline source-code / repository glyph (a window with code chevrons) for
|
|
10926
|
-
* source-control signifiers.
|
|
10927
|
-
*
|
|
10928
|
-
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
|
|
10929
|
-
*
|
|
10930
|
-
* @see https://design.activecollab.com/docs/foundations/icons
|
|
10931
|
-
*/
|
|
10932
|
-
var SourceCodeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10933
|
-
var gradient = _ref.gradient,
|
|
10934
|
-
props = _objectWithoutProperties(_ref, _excluded$1Y);
|
|
10935
|
-
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
10936
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
10937
|
-
width: 24,
|
|
10938
|
-
height: 24,
|
|
10939
|
-
viewBox: "0 0 24 24",
|
|
10940
|
-
"data-testid": "SourceCodeIcon",
|
|
10941
|
-
fill: "none",
|
|
10942
|
-
stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
|
|
10943
|
-
strokeWidth: 2,
|
|
10944
|
-
strokeLinecap: "round",
|
|
10945
|
-
strokeLinejoin: "round",
|
|
10946
|
-
focusable: false,
|
|
10947
|
-
ref: ref
|
|
10948
|
-
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
10949
|
-
gradient: gradient
|
|
10950
|
-
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
10951
|
-
d: "M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h2.5"
|
|
10952
|
-
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
10953
|
-
d: "M10 9l-2 2l2 2"
|
|
10954
|
-
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
10955
|
-
d: "M14 9l2 2l-2 2"
|
|
10956
|
-
}));
|
|
10957
|
-
});
|
|
10958
|
-
SourceCodeIcon.displayName = "SourceCodeIcon";
|
|
10959
|
-
var SourceCodeIcon$1 = SourceCodeIcon;
|
|
10960
|
-
|
|
10961
10963
|
var _excluded$1X = ["gradient"];
|
|
10962
10964
|
|
|
10963
10965
|
/**
|
|
@@ -26186,6 +26188,7 @@
|
|
|
26186
26188
|
exports.GitBranchIcon = GitBranchIcon$1;
|
|
26187
26189
|
exports.GitCommitIcon = GitCommitIcon$1;
|
|
26188
26190
|
exports.GitPullRequestIcon = GitPullRequestIcon$1;
|
|
26191
|
+
exports.GitRepositoryIcon = GitRepositoryIcon$1;
|
|
26189
26192
|
exports.GlobalAddButton = GlobalAddButton;
|
|
26190
26193
|
exports.GlobalStyle = GlobalStyle;
|
|
26191
26194
|
exports.GroupByIcon = GroupByIcon$1;
|
|
@@ -26346,7 +26349,6 @@
|
|
|
26346
26349
|
exports.SortIcon = SortIcon$1;
|
|
26347
26350
|
exports.SortListIcon = SortListIcon$1;
|
|
26348
26351
|
exports.SortSmallIcon = SortSmallIcon$1;
|
|
26349
|
-
exports.SourceCodeIcon = SourceCodeIcon$1;
|
|
26350
26352
|
exports.SparkIcon = SparkIcon$1;
|
|
26351
26353
|
exports.SpinnerLoader = SpinnerLoader;
|
|
26352
26354
|
exports.StarIcon = StarIcon$1;
|