@cypress-design/react-icon 0.12.0 → 0.13.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/CHANGELOG.md +11 -0
- package/dist/TreeShakableIcons.d.ts +2 -0
- package/dist/TreeShakableIcons.d.ts.map +1 -1
- package/dist/index.es.mjs +23 -1
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +24 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.umd.js
CHANGED
|
@@ -1389,6 +1389,17 @@ var IconObjectBriefcase = function (props) {
|
|
|
1389
1389
|
}
|
|
1390
1390
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1391
1391
|
};
|
|
1392
|
+
var IconObjectBug = function (props) {
|
|
1393
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1394
|
+
var iconBodies = {
|
|
1395
|
+
"24": "<path d=\"M15 10V7a3 3 0 1 0-6 0v3h6ZM15 10H9a3.162 3.162 0 0 0-2 2v4a4.564 4.564 0 0 0 4.014 3.89l.685.076c.2.023.402.023.602 0l.685-.076A4.564 4.564 0 0 0 17 16v-4a3.162 3.162 0 0 0-2-2Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M17 12v2m0-2 .265-.088A4 4 0 0 0 20 8.117V7m-3 5v0a3.162 3.162 0 0 0-2-2v0m0 0V7a3 3 0 0 0-3-3v0a3 3 0 0 0-3 3v3m6 0H9m0 0v0a3.162 3.162 0 0 0-2 2v0m0 0v2m0-2-.265-.088A4 4 0 0 1 4 8.117V7m13 7h3m-3 0v2M7 14H4m3 0v2m10 0v0a4.564 4.564 0 0 1-4.014 3.89l-.685.076c-.2.023-.402.023-.602 0l-.685-.076A4.564 4.564 0 0 1 7 16v0m10 0 .265.088A4 4 0 0 1 20 19.883V21M7 16l-.265.088A4 4 0 0 0 4 19.883V21\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1396
|
+
};
|
|
1397
|
+
var body = iconBodies[size];
|
|
1398
|
+
if (!body) {
|
|
1399
|
+
throw Error("Icon \"object-bug\" is not available in size " + size);
|
|
1400
|
+
}
|
|
1401
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1402
|
+
};
|
|
1392
1403
|
var IconObjectChainLink = function (props) {
|
|
1393
1404
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1394
1405
|
var iconBodies = {
|
|
@@ -2136,6 +2147,17 @@ var IconTechnologyDashboardFail = function (props) {
|
|
|
2136
2147
|
}
|
|
2137
2148
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
2138
2149
|
};
|
|
2150
|
+
var IconTechnologyDebugger = function (props) {
|
|
2151
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
2152
|
+
var iconBodies = {
|
|
2153
|
+
"24": "<path d=\"M15 10V7a3 3 0 1 0-6 0v3h6ZM15 10H9a3.162 3.162 0 0 0-2 2v4a4.564 4.564 0 0 0 4.014 3.89l.685.076c.2.023.402.023.602 0l.685-.076A4.564 4.564 0 0 0 17 16v-4a3.162 3.162 0 0 0-2-2Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M17 12v2m0-2 .265-.088A4 4 0 0 0 20 8.117V7m-3 5v0a3.162 3.162 0 0 0-2-2v0m0 0V7a3 3 0 0 0-3-3v0a3 3 0 0 0-3 3v3m6 0H9m0 0v0a3.162 3.162 0 0 0-2 2v0m0 0v2m0-2-.265-.088A4 4 0 0 1 4 8.117V7m13 7h3m-3 0v2M7 14H4m3 0v2m10 0v0a4.564 4.564 0 0 1-4.014 3.89l-.685.076c-.2.023-.402.023-.602 0l-.685-.076A4.564 4.564 0 0 1 7 16v0m10 0 .265.088A4 4 0 0 1 20 19.883V21M7 16l-.265.088A4 4 0 0 0 4 19.883V21\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
2154
|
+
};
|
|
2155
|
+
var body = iconBodies[size];
|
|
2156
|
+
if (!body) {
|
|
2157
|
+
throw Error("Icon \"technology-debugger\" is not available in size " + size);
|
|
2158
|
+
}
|
|
2159
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
2160
|
+
};
|
|
2139
2161
|
var IconTechnologyDollar = function (props) {
|
|
2140
2162
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
2141
2163
|
var iconBodies = {
|
|
@@ -2537,6 +2559,7 @@ exports.IconObjectBookmark = IconObjectBookmark;
|
|
|
2537
2559
|
exports.IconObjectBox = IconObjectBox;
|
|
2538
2560
|
exports.IconObjectBoxOpen = IconObjectBoxOpen;
|
|
2539
2561
|
exports.IconObjectBriefcase = IconObjectBriefcase;
|
|
2562
|
+
exports.IconObjectBug = IconObjectBug;
|
|
2540
2563
|
exports.IconObjectChainLink = IconObjectChainLink;
|
|
2541
2564
|
exports.IconObjectFolderDark = IconObjectFolderDark;
|
|
2542
2565
|
exports.IconObjectFolderDarkSmall = IconObjectFolderDarkSmall;
|
|
@@ -2601,6 +2624,7 @@ exports.IconTechnologyCommandLine = IconTechnologyCommandLine;
|
|
|
2601
2624
|
exports.IconTechnologyCypress = IconTechnologyCypress;
|
|
2602
2625
|
exports.IconTechnologyDashboardCheckmark = IconTechnologyDashboardCheckmark;
|
|
2603
2626
|
exports.IconTechnologyDashboardFail = IconTechnologyDashboardFail;
|
|
2627
|
+
exports.IconTechnologyDebugger = IconTechnologyDebugger;
|
|
2604
2628
|
exports.IconTechnologyDollar = IconTechnologyDollar;
|
|
2605
2629
|
exports.IconTechnologyDragProject = IconTechnologyDragProject;
|
|
2606
2630
|
exports.IconTechnologyElementSelector = IconTechnologyElementSelector;
|