@cypress-design/react-icon 0.21.3 → 0.22.0
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +18 -0
- package/_TreeShakableIcons.ts +105 -2
- package/dist/_TreeShakableIcons.d.ts +5 -0
- package/dist/_TreeShakableIcons.d.ts.map +1 -1
- package/dist/index.es.mjs +61 -3
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +65 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.umd.js
CHANGED
|
@@ -362,6 +362,17 @@ var IconActionStop = function (props) {
|
|
|
362
362
|
}
|
|
363
363
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
364
364
|
};
|
|
365
|
+
var IconArrowBottomRight = function (props) {
|
|
366
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
367
|
+
var iconBodies = {
|
|
368
|
+
"16": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 6v6m0 0H6m6 0L4 4\" class=\"icon-dark\"/>"
|
|
369
|
+
};
|
|
370
|
+
var body = iconBodies[size];
|
|
371
|
+
if (!body) {
|
|
372
|
+
throw Error("Icon \"arrow-bottom-right\" is not available in size ".concat(size));
|
|
373
|
+
}
|
|
374
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
375
|
+
};
|
|
365
376
|
var IconArrowCollapse = function (props) {
|
|
366
377
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
367
378
|
var iconBodies = {
|
|
@@ -450,6 +461,17 @@ var IconArrowSquareDown = function (props) {
|
|
|
450
461
|
}
|
|
451
462
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
452
463
|
};
|
|
464
|
+
var IconArrowTopRight = function (props) {
|
|
465
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
466
|
+
var iconBodies = {
|
|
467
|
+
"16": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 10V4m0 0H6m6 0-8 8\" class=\"icon-dark\"/>"
|
|
468
|
+
};
|
|
469
|
+
var body = iconBodies[size];
|
|
470
|
+
if (!body) {
|
|
471
|
+
throw Error("Icon \"arrow-top-right\" is not available in size ".concat(size));
|
|
472
|
+
}
|
|
473
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
474
|
+
};
|
|
453
475
|
var IconArrowUp = function (props) {
|
|
454
476
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
455
477
|
var iconBodies = {
|
|
@@ -830,6 +852,18 @@ var IconDeviceSmartphone = function (props) {
|
|
|
830
852
|
}
|
|
831
853
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
832
854
|
};
|
|
855
|
+
var IconDocumentAddedSquarePlus = function (props) {
|
|
856
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
857
|
+
var iconBodies = {
|
|
858
|
+
"16": "<path fill=\"#E4FBF2\" d=\"M2 12V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" class=\"icon-light\"/><path stroke=\"#1FA971\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 6v4m2-2H6m6-6H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Z\" class=\"icon-dark\"/>",
|
|
859
|
+
"24": "<path fill=\"#E4FBF2\" d=\"M3 18V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3Z\" class=\"icon-light\"/><path stroke=\"#1FA971\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 8v8m4-4H8m10-9H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3Z\" class=\"icon-dark\"/>"
|
|
860
|
+
};
|
|
861
|
+
var body = iconBodies[size];
|
|
862
|
+
if (!body) {
|
|
863
|
+
throw Error("Icon \"document-added-square-plus\" is not available in size ".concat(size));
|
|
864
|
+
}
|
|
865
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
866
|
+
};
|
|
833
867
|
var IconDocumentAdded = function (props) {
|
|
834
868
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
835
869
|
var iconBodies = {
|
|
@@ -901,6 +935,18 @@ var IconDocumentMinus = function (props) {
|
|
|
901
935
|
}
|
|
902
936
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
903
937
|
};
|
|
938
|
+
var IconDocumentModifiedSquareDot = function (props) {
|
|
939
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
940
|
+
var iconBodies = {
|
|
941
|
+
"16": "<path fill=\"#F5F4D7\" d=\"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" class=\"icon-light\"/><path fill=\"#F5F4D7\" fill-rule=\"evenodd\" d=\"M4 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm4 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"#DB7903\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" class=\"icon-dark\"/><path stroke=\"#DB7903\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm4 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>",
|
|
942
|
+
"24": "<path fill=\"#DB7903\" d=\"M14 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" class=\"icon-dark\"/><path fill=\"#F5F4D7\" fill-rule=\"evenodd\" d=\"M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm6 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"#DB7903\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" class=\"icon-dark\"/><path stroke=\"#DB7903\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm6 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
943
|
+
};
|
|
944
|
+
var body = iconBodies[size];
|
|
945
|
+
if (!body) {
|
|
946
|
+
throw Error("Icon \"document-modified-square-dot\" is not available in size ".concat(size));
|
|
947
|
+
}
|
|
948
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
949
|
+
};
|
|
904
950
|
var IconDocumentModified = function (props) {
|
|
905
951
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
906
952
|
var iconBodies = {
|
|
@@ -1557,7 +1603,7 @@ var IconObjectOdometer = function (props) {
|
|
|
1557
1603
|
var IconObjectPaperAirplane = function (props) {
|
|
1558
1604
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1559
1605
|
var iconBodies = {
|
|
1560
|
-
"16": "<path fill=\"
|
|
1606
|
+
"16": "<path fill=\"transparent\" d=\"M15 8 1 1l2 7-2 7 14-7Z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m3 8-2 7 14-7L1 1l2 7Zm0 0h3\" class=\"icon-dark\"/>"
|
|
1561
1607
|
};
|
|
1562
1608
|
var body = iconBodies[size];
|
|
1563
1609
|
if (!body) {
|
|
@@ -1947,6 +1993,18 @@ var IconStatusFailedSolid = function (props) {
|
|
|
1947
1993
|
}
|
|
1948
1994
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1949
1995
|
};
|
|
1996
|
+
var IconStatusFlaky = function (props) {
|
|
1997
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1998
|
+
var iconBodies = {
|
|
1999
|
+
"16": "<path fill=\"#F5F4D7\" d=\"M1 12V4a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3Z\" class=\"icon-light\"/><path stroke=\"#963F00\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.5 5h-3v3.5m0 2.5V8.5m0 0h2\" class=\"icon-dark\"/>",
|
|
2000
|
+
"24": "<path fill=\"#F5F4D7\" d=\"M2 18V6a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4Z\" class=\"icon-light\"/><path stroke=\"#963F00\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 8h-4v4.5m0 3.5v-3.5m0 0h3\" class=\"icon-dark\"/>"
|
|
2001
|
+
};
|
|
2002
|
+
var body = iconBodies[size];
|
|
2003
|
+
if (!body) {
|
|
2004
|
+
throw Error("Icon \"status-flaky\" is not available in size ".concat(size));
|
|
2005
|
+
}
|
|
2006
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
2007
|
+
};
|
|
1950
2008
|
var IconStatusPassedOutline = function (props) {
|
|
1951
2009
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1952
2010
|
var iconBodies = {
|
|
@@ -2466,7 +2524,7 @@ var IconTimeStopwatch = function (props) {
|
|
|
2466
2524
|
var IconUserGeneralOutline = function (props) {
|
|
2467
2525
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
2468
2526
|
var iconBodies = {
|
|
2469
|
-
"16": "<path fill=\"
|
|
2527
|
+
"16": "<path fill=\"transparent\" d=\"M8 1a7 7 0 0 0-4.9 12 5.009 5.009 0 0 1 3.043-3.644 3 3 0 1 1 3.714 0A5.009 5.009 0 0 1 12.9 13 7 7 0 0 0 8 1Z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M6.143 9.356C6.653 9.76 7.299 10 8 10c.701 0 1.346-.24 1.857-.644m-3.714 0a3 3 0 1 1 3.714 0m-3.714 0A5.009 5.009 0 0 0 3.1 13m6.757-3.643A5.009 5.009 0 0 1 12.9 13m0 0a7 7 0 1 0-9.8 0m9.8 0A6.977 6.977 0 0 1 8 15a6.977 6.977 0 0 1-4.9-2\" class=\"icon-dark\"/>"
|
|
2470
2528
|
};
|
|
2471
2529
|
var body = iconBodies[size];
|
|
2472
2530
|
if (!body) {
|
|
@@ -2566,6 +2624,7 @@ exports.IconActionRecord = IconActionRecord;
|
|
|
2566
2624
|
exports.IconActionRefresh = IconActionRefresh;
|
|
2567
2625
|
exports.IconActionRestart = IconActionRestart;
|
|
2568
2626
|
exports.IconActionStop = IconActionStop;
|
|
2627
|
+
exports.IconArrowBottomRight = IconArrowBottomRight;
|
|
2569
2628
|
exports.IconArrowCollapse = IconArrowCollapse;
|
|
2570
2629
|
exports.IconArrowDown = IconArrowDown;
|
|
2571
2630
|
exports.IconArrowExpand = IconArrowExpand;
|
|
@@ -2574,6 +2633,7 @@ exports.IconArrowOutlineDown = IconArrowOutlineDown;
|
|
|
2574
2633
|
exports.IconArrowRight = IconArrowRight;
|
|
2575
2634
|
exports.IconArrowRightLarge = IconArrowRightLarge;
|
|
2576
2635
|
exports.IconArrowSquareDown = IconArrowSquareDown;
|
|
2636
|
+
exports.IconArrowTopRight = IconArrowTopRight;
|
|
2577
2637
|
exports.IconArrowUp = IconArrowUp;
|
|
2578
2638
|
exports.IconBrowserChrome = IconBrowserChrome;
|
|
2579
2639
|
exports.IconBrowserChromeBeta = IconBrowserChromeBeta;
|
|
@@ -2609,12 +2669,14 @@ exports.IconCurrencyUsd = IconCurrencyUsd;
|
|
|
2609
2669
|
exports.IconDeviceLaptop = IconDeviceLaptop;
|
|
2610
2670
|
exports.IconDeviceSmartphone = IconDeviceSmartphone;
|
|
2611
2671
|
exports.IconDocumentAdded = IconDocumentAdded;
|
|
2672
|
+
exports.IconDocumentAddedSquarePlus = IconDocumentAddedSquarePlus;
|
|
2612
2673
|
exports.IconDocumentBlank = IconDocumentBlank;
|
|
2613
2674
|
exports.IconDocumentCode = IconDocumentCode;
|
|
2614
2675
|
exports.IconDocumentDeleted = IconDocumentDeleted;
|
|
2615
2676
|
exports.IconDocumentDownload = IconDocumentDownload;
|
|
2616
2677
|
exports.IconDocumentMinus = IconDocumentMinus;
|
|
2617
2678
|
exports.IconDocumentModified = IconDocumentModified;
|
|
2679
|
+
exports.IconDocumentModifiedSquareDot = IconDocumentModifiedSquareDot;
|
|
2618
2680
|
exports.IconDocumentPlus = IconDocumentPlus;
|
|
2619
2681
|
exports.IconDocumentPlusMinus = IconDocumentPlusMinus;
|
|
2620
2682
|
exports.IconDocumentScript = IconDocumentScript;
|
|
@@ -2706,6 +2768,7 @@ exports.IconStatusErroredSolid = IconStatusErroredSolid;
|
|
|
2706
2768
|
exports.IconStatusFailedOutline = IconStatusFailedOutline;
|
|
2707
2769
|
exports.IconStatusFailedSimple = IconStatusFailedSimple;
|
|
2708
2770
|
exports.IconStatusFailedSolid = IconStatusFailedSolid;
|
|
2771
|
+
exports.IconStatusFlaky = IconStatusFlaky;
|
|
2709
2772
|
exports.IconStatusPassedOutline = IconStatusPassedOutline;
|
|
2710
2773
|
exports.IconStatusPassedSimple = IconStatusPassedSimple;
|
|
2711
2774
|
exports.IconStatusPassedSolid = IconStatusPassedSolid;
|