@cypress-design/react-icon 0.4.2 → 0.7.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 +33 -0
- package/dist/TreeShakableIcons.d.ts +27 -0
- package/dist/TreeShakableIcons.d.ts.map +1 -1
- package/dist/index.es.mjs +305 -6
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +331 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.es.mjs
CHANGED
|
@@ -132,9 +132,10 @@ var IconActionDeleteCircle = function (props) {
|
|
|
132
132
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
133
133
|
};
|
|
134
134
|
var IconActionDeleteLarge = function (props) {
|
|
135
|
-
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
135
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
136
136
|
var iconBodies = {
|
|
137
|
-
"16": "<path d=\"M3 13 13 3M3 3l10 10\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
137
|
+
"16": "<path d=\"M3 13 13 3M3 3l10 10\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
138
|
+
"24": "<path d=\"M4 20 20 4M4 4l16 16\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
138
139
|
};
|
|
139
140
|
var body = iconBodies[size];
|
|
140
141
|
if (!body) {
|
|
@@ -266,7 +267,7 @@ var IconActionQuestionMarkDefault = function (props) {
|
|
|
266
267
|
var IconActionQuestionMarkOutline = function (props) {
|
|
267
268
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
268
269
|
var iconBodies = {
|
|
269
|
-
"16": "<path d=\"M12.95 12.95a7 7 0 1 1-9.9-9.9 7 7 0 0 1 9.9 9.9Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m6.845 5.535-.001.001A1 1 0 0 1 5.146 4.48L6 5c-.854-.52-.854-.52-.853-.521v-.001l.001-.002.003-.004.005-.009.015-.023.042-.061a3.315 3.315 0 0 1 .657-.672A3.452 3.452 0 0 1 8 3c1.099 0 1.911.432 2.414 1.113.465.63.586 1.365.586 1.887 0 .63-.173 1.147-.463 1.574-.272.402-.62.68-.871.873-.608.465-.655.516-.673.67a1 1 0 1 1-1.986-.234c.125-1.061.915-1.638 1.327-1.938l.117-.087c.229-.175.352-.29.43-.405C8.944 6.363 9 6.237 9 6c0-.259-.067-.525-.195-.7C8.714 5.179 8.526 5 8 5c-.437 0-.729.152-.913.294a1.316 1.316 0 0 0-.242.241ZM8 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
270
|
+
"16": "<path d=\"M12.95 12.95a7 7 0 1 1-9.9-9.9 7 7 0 0 1 9.9 9.9Z\" fill=\"#E1E3ED\" stroke=\"currentColor\" class=\"icon-dark-stroke icon-light-fill\" stroke-width=\"2\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m6.845 5.535-.001.001A1 1 0 0 1 5.146 4.48L6 5c-.854-.52-.854-.52-.853-.521v-.001l.001-.002.003-.004.005-.009.015-.023.042-.061a3.315 3.315 0 0 1 .657-.672A3.452 3.452 0 0 1 8 3c1.099 0 1.911.432 2.414 1.113.465.63.586 1.365.586 1.887 0 .63-.173 1.147-.463 1.574-.272.402-.62.68-.871.873-.608.465-.655.516-.673.67a1 1 0 1 1-1.986-.234c.125-1.061.915-1.638 1.327-1.938l.117-.087c.229-.175.352-.29.43-.405C8.944 6.363 9 6.237 9 6c0-.259-.067-.525-.195-.7C8.714 5.179 8.526 5 8 5c-.437 0-.729.152-.913.294a1.316 1.316 0 0 0-.242.241ZM8 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
270
271
|
};
|
|
271
272
|
var body = iconBodies[size];
|
|
272
273
|
if (!body) {
|
|
@@ -373,6 +374,17 @@ var IconArrowOutlineDown = function (props) {
|
|
|
373
374
|
}
|
|
374
375
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
375
376
|
};
|
|
377
|
+
var IconArrowRightLarge = function (props) {
|
|
378
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
379
|
+
var iconBodies = {
|
|
380
|
+
"16": "<path d=\"m10 13 5-5m0 0-5-5m5 5H1\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
381
|
+
};
|
|
382
|
+
var body = iconBodies[size];
|
|
383
|
+
if (!body) {
|
|
384
|
+
throw Error("Icon \"arrow-right-large\" is not available in size " + size);
|
|
385
|
+
}
|
|
386
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
387
|
+
};
|
|
376
388
|
var IconArrowRight = function (props) {
|
|
377
389
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
378
390
|
var iconBodies = {
|
|
@@ -418,9 +430,10 @@ var IconCheckmarkSmall = function (props) {
|
|
|
418
430
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
419
431
|
};
|
|
420
432
|
var IconCheckmarkSolid = function (props) {
|
|
421
|
-
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
433
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
422
434
|
var iconBodies = {
|
|
423
|
-
"
|
|
435
|
+
"16": "<path d=\"M13.657 13.657A8 8 0 1 1 2.343 2.343a8 8 0 0 1 11.314 11.314Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"m5 8.5 2 2 4-5\" stroke=\"#fff\" class=\"icon-light\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
436
|
+
"24": "<path d=\"M20.485 20.485c-4.686 4.687-12.284 4.687-16.97 0-4.687-4.686-4.687-12.284 0-16.97 4.686-4.687 12.284-4.687 16.97 0 4.687 4.686 4.687 12.284 0 16.97Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M15.999 9 11 15l-2.999-3\" stroke=\"#D0D2E0\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-light\"/>"
|
|
424
437
|
};
|
|
425
438
|
var body = iconBodies[size];
|
|
426
439
|
if (!body) {
|
|
@@ -461,6 +474,17 @@ var IconChevronDownLarge = function (props) {
|
|
|
461
474
|
}
|
|
462
475
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
463
476
|
};
|
|
477
|
+
var IconChevronDownMedium = function (props) {
|
|
478
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
479
|
+
var iconBodies = {
|
|
480
|
+
"16": "<path d=\"m4 6 4 4 4-4\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
481
|
+
};
|
|
482
|
+
var body = iconBodies[size];
|
|
483
|
+
if (!body) {
|
|
484
|
+
throw Error("Icon \"chevron-down-medium\" is not available in size " + size);
|
|
485
|
+
}
|
|
486
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
487
|
+
};
|
|
464
488
|
var IconChevronDownSmall = function (props) {
|
|
465
489
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
466
490
|
var iconBodies = {
|
|
@@ -575,6 +599,61 @@ var IconChevronUpSmall = function (props) {
|
|
|
575
599
|
}
|
|
576
600
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
577
601
|
};
|
|
602
|
+
var IconCurrencyEur = function (props) {
|
|
603
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
604
|
+
var iconBodies = {
|
|
605
|
+
"16": "<path d=\"m6.524 13.214.565-.825-.565.825Zm6.145.33a1 1 0 1 0-1.338-1.486l1.338 1.485Zm-1.338-9.602a1 1 0 1 0 1.338-1.485l-1.338 1.485ZM2.5 5.501a1 1 0 0 0 0 2v-2Zm7.695 2a1 1 0 1 0 0-2v2ZM2.5 8.5a1 1 0 0 0 0 2v-2Zm6.054 2a1 1 0 1 0 0-2v2ZM9 13a3.356 3.356 0 0 1-1.91-.611l-1.132 1.65A5.355 5.355 0 0 0 9 15v-2Zm-1.91-.611C5.884 11.564 5 9.943 5 8H3c0 2.522 1.147 4.797 2.958 6.039l1.131-1.65ZM5 8c0-2.94 1.954-5 4-5V1C5.523 1 3 4.312 3 8h2Zm6.33 4.058C10.657 12.665 9.85 13 9 13v2c1.401 0 2.672-.558 3.67-1.457l-1.34-1.485ZM9 3c.85 0 1.656.335 2.33.942l1.34-1.485C11.671 1.557 10.4 1 9 1v2ZM2.5 7.5h7.695v-2H2.5v2Zm0 3h6.054v-2H2.5v2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
606
|
+
};
|
|
607
|
+
var body = iconBodies[size];
|
|
608
|
+
if (!body) {
|
|
609
|
+
throw Error("Icon \"currency-eur\" is not available in size " + size);
|
|
610
|
+
}
|
|
611
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
612
|
+
};
|
|
613
|
+
var IconCurrencyGbp = function (props) {
|
|
614
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
615
|
+
var iconBodies = {
|
|
616
|
+
"16": "<path d=\"M10 5a1 1 0 1 0 2 0h-2Zm-6 9-.79-.614a1 1 0 0 0 1.345 1.446L4 14Zm8.555.832a1 1 0 0 0-1.11-1.664l1.11 1.664ZM4 8a1 1 0 0 0 0 2V8Zm5 2a1 1 0 0 0 0-2v2ZM6 5a2 2 0 0 1 2-2V1a4 4 0 0 0-4 4h2Zm2-2a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4v2ZM4 14c.555.832.554.832.554.833h-.001l-.002.002-.003.002-.005.003-.004.002.014-.008c.02-.011.06-.032.12-.058.117-.05.309-.12.568-.167.51-.093 1.319-.108 2.388.32l.742-1.857c-1.431-.573-2.622-.588-3.487-.43a4.601 4.601 0 0 0-1.01.3 3.406 3.406 0 0 0-.42.22l-.004.003-.003.002c-.001 0-.002 0 .553.833Zm3.629.928c1.431.573 2.622.588 3.487.43a4.603 4.603 0 0 0 1.01-.3 3.4 3.4 0 0 0 .408-.212l.011-.008.005-.003.003-.002c.001 0 .002 0-.553-.833-.555-.832-.554-.832-.554-.833h.001l.002-.002.003-.002a.265.265 0 0 1 .005-.003l.004-.002-.014.008c-.02.011-.06.032-.12.058-.117.05-.309.12-.568.167-.51.093-1.319.108-2.388-.32l-.742 1.857Zm-2.84-.314c1.77-2.276 2.2-4.085 2.048-5.707l-1.991.186c.095 1.022-.115 2.338-1.635 4.293l1.578 1.228Zm2.048-5.707c-.08-.863-.325-1.632-.51-2.254C6.13 5.996 6 5.498 6 5H4c0 .827.22 1.584.41 2.223.2.674.377 1.242.436 1.87l1.99-.186ZM4 10h1.841V8H4v2Zm1.841 0H9V8H5.841v2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
617
|
+
};
|
|
618
|
+
var body = iconBodies[size];
|
|
619
|
+
if (!body) {
|
|
620
|
+
throw Error("Icon \"currency-gbp\" is not available in size " + size);
|
|
621
|
+
}
|
|
622
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
623
|
+
};
|
|
624
|
+
var IconCurrencyInr = function (props) {
|
|
625
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
626
|
+
var iconBodies = {
|
|
627
|
+
"16": "<path d=\"M3.5 2H8m3 3a3 3 0 0 1-3 3H3.5l6.5 6m1-9a3 3 0 0 0-3-3m3 3H3.5M11 5h1.5M8 2h4.5\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
628
|
+
};
|
|
629
|
+
var body = iconBodies[size];
|
|
630
|
+
if (!body) {
|
|
631
|
+
throw Error("Icon \"currency-inr\" is not available in size " + size);
|
|
632
|
+
}
|
|
633
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
634
|
+
};
|
|
635
|
+
var IconCurrencyRub = function (props) {
|
|
636
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
637
|
+
var iconBodies = {
|
|
638
|
+
"16": "<path d=\"M5 8h5a3 3 0 1 0 0-6H5v6Zm0 0v6m0-6H3m0 3h6\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
639
|
+
};
|
|
640
|
+
var body = iconBodies[size];
|
|
641
|
+
if (!body) {
|
|
642
|
+
throw Error("Icon \"currency-rub\" is not available in size " + size);
|
|
643
|
+
}
|
|
644
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
645
|
+
};
|
|
646
|
+
var IconCurrencyUsd = function (props) {
|
|
647
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
648
|
+
var iconBodies = {
|
|
649
|
+
"16": "<path d=\"M8 3h3a1 1 0 0 1 1 1v.5M8 3H5a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3m0-5V1m0 2v5m0 5h3a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1H8m0 5H5a1 1 0 0 1-1-1v-.5M8 13v2m0-2V8\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
650
|
+
};
|
|
651
|
+
var body = iconBodies[size];
|
|
652
|
+
if (!body) {
|
|
653
|
+
throw Error("Icon \"currency-usd\" is not available in size " + size);
|
|
654
|
+
}
|
|
655
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
656
|
+
};
|
|
578
657
|
var IconDeviceLaptop = function (props) {
|
|
579
658
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
580
659
|
var iconBodies = {
|
|
@@ -973,6 +1052,83 @@ var IconMenuExpandRight = function (props) {
|
|
|
973
1052
|
}
|
|
974
1053
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
975
1054
|
};
|
|
1055
|
+
var IconMenuHamburger = function (props) {
|
|
1056
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1057
|
+
var iconBodies = {
|
|
1058
|
+
"24": "<path d=\"M1 6h22M1 12h14M1 18h18\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1059
|
+
};
|
|
1060
|
+
var body = iconBodies[size];
|
|
1061
|
+
if (!body) {
|
|
1062
|
+
throw Error("Icon \"menu-hamburger\" is not available in size " + size);
|
|
1063
|
+
}
|
|
1064
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1065
|
+
};
|
|
1066
|
+
var IconNumber1 = function (props) {
|
|
1067
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1068
|
+
var iconBodies = {
|
|
1069
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"12\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M13 17V8h-2L9.5 9.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
1070
|
+
};
|
|
1071
|
+
var body = iconBodies[size];
|
|
1072
|
+
if (!body) {
|
|
1073
|
+
throw Error("Icon \"number-1\" is not available in size " + size);
|
|
1074
|
+
}
|
|
1075
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1076
|
+
};
|
|
1077
|
+
var IconNumber2 = function (props) {
|
|
1078
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1079
|
+
var iconBodies = {
|
|
1080
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"12\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M15 16H9l4.5-4c2-2 1-5-1.5-5S9 9.5 9 9.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
1081
|
+
};
|
|
1082
|
+
var body = iconBodies[size];
|
|
1083
|
+
if (!body) {
|
|
1084
|
+
throw Error("Icon \"number-2\" is not available in size " + size);
|
|
1085
|
+
}
|
|
1086
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1087
|
+
};
|
|
1088
|
+
var IconNumber3 = function (props) {
|
|
1089
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1090
|
+
var iconBodies = {
|
|
1091
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"12\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M9 15c.5 3 5.5 3 6 0 0-2.5-3-3-3-3l3-4H9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
1092
|
+
};
|
|
1093
|
+
var body = iconBodies[size];
|
|
1094
|
+
if (!body) {
|
|
1095
|
+
throw Error("Icon \"number-3\" is not available in size " + size);
|
|
1096
|
+
}
|
|
1097
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1098
|
+
};
|
|
1099
|
+
var IconNumber4 = function (props) {
|
|
1100
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1101
|
+
var iconBodies = {
|
|
1102
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"12\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M13.5 17V8h-2l-3 6h7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
1103
|
+
};
|
|
1104
|
+
var body = iconBodies[size];
|
|
1105
|
+
if (!body) {
|
|
1106
|
+
throw Error("Icon \"number-4\" is not available in size " + size);
|
|
1107
|
+
}
|
|
1108
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1109
|
+
};
|
|
1110
|
+
var IconNumber5 = function (props) {
|
|
1111
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1112
|
+
var iconBodies = {
|
|
1113
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"12\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M14.5 8h-4l-.5 4h2c1.657 0 3 1.12 3 2.5S13.657 17 12 17c-.982 0-1.853-.393-2.4-1\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
1114
|
+
};
|
|
1115
|
+
var body = iconBodies[size];
|
|
1116
|
+
if (!body) {
|
|
1117
|
+
throw Error("Icon \"number-5\" is not available in size " + size);
|
|
1118
|
+
}
|
|
1119
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1120
|
+
};
|
|
1121
|
+
var IconNumberOctothorpe = function (props) {
|
|
1122
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1123
|
+
var iconBodies = {
|
|
1124
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"12\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M11 6 8 18m5 0 3-12m2 4H7m10 4H6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
1125
|
+
};
|
|
1126
|
+
var body = iconBodies[size];
|
|
1127
|
+
if (!body) {
|
|
1128
|
+
throw Error("Icon \"number-octothorpe\" is not available in size " + size);
|
|
1129
|
+
}
|
|
1130
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1131
|
+
};
|
|
976
1132
|
var IconObjectBookCode = function (props) {
|
|
977
1133
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
978
1134
|
var iconBodies = {
|
|
@@ -1089,6 +1245,28 @@ var IconObjectGear = function (props) {
|
|
|
1089
1245
|
}
|
|
1090
1246
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1091
1247
|
};
|
|
1248
|
+
var IconObjectGraduationCap = function (props) {
|
|
1249
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1250
|
+
var iconBodies = {
|
|
1251
|
+
"16": "<path d=\"m8 3 7 3-2 .857V8.97a3 3 0 0 1-1.886 2.785l-2.371.949a2 2 0 0 1-1.486 0l-2.371-.949A3 3 0 0 1 3 8.97V6.857L1 6l7-3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M13 6.857 15 6 8 3 1 6l2 .857m10 0V8.97a3 3 0 0 1-1.886 2.785l-2.371.949a2 2 0 0 1-1.486 0l-2.371-.949A3 3 0 0 1 3 8.97V6.857m10 0L8 9 3 6.857\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.5 6v3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1252
|
+
};
|
|
1253
|
+
var body = iconBodies[size];
|
|
1254
|
+
if (!body) {
|
|
1255
|
+
throw Error("Icon \"object-graduation-cap\" is not available in size " + size);
|
|
1256
|
+
}
|
|
1257
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1258
|
+
};
|
|
1259
|
+
var IconObjectLetter = function (props) {
|
|
1260
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1261
|
+
var iconBodies = {
|
|
1262
|
+
"16": "<path d=\"M14.5 3h-13a.498.498 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.499.499 0 0 0-.5-.5Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M14.842 3.135 8 9 1.158 3.135m13.684 0A.498.498 0 0 0 14.5 3h-13a.498.498 0 0 0-.342.135m13.684 0c.097.092.158.221.158.365v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9c0-.144.06-.273.158-.365\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
1263
|
+
};
|
|
1264
|
+
var body = iconBodies[size];
|
|
1265
|
+
if (!body) {
|
|
1266
|
+
throw Error("Icon \"object-letter\" is not available in size " + size);
|
|
1267
|
+
}
|
|
1268
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1269
|
+
};
|
|
1092
1270
|
var IconObjectMagicWandDarkMode = function (props) {
|
|
1093
1271
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1094
1272
|
var iconBodies = {
|
|
@@ -1155,6 +1333,28 @@ var IconObjectRuler = function (props) {
|
|
|
1155
1333
|
}
|
|
1156
1334
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1157
1335
|
};
|
|
1336
|
+
var IconObjectSlidersRound = function (props) {
|
|
1337
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1338
|
+
var iconBodies = {
|
|
1339
|
+
"16": "<g clip-path=\"url(#a)\"><path d=\"M2 12h5m7 0h-2M2 4h2m10 0H9m3 8v0a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v0ZM9 4v0a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v0m5 0v0a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v0m-1406-193.999h100v100h-100v-100Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" class=\"icon-light\" d=\"M0 0h16v16H0z\"/></clipPath></defs>"
|
|
1340
|
+
};
|
|
1341
|
+
var body = iconBodies[size];
|
|
1342
|
+
if (!body) {
|
|
1343
|
+
throw Error("Icon \"object-sliders-round\" is not available in size " + size);
|
|
1344
|
+
}
|
|
1345
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1346
|
+
};
|
|
1347
|
+
var IconObjectTag = function (props) {
|
|
1348
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1349
|
+
var iconBodies = {
|
|
1350
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.586 2a1 1 0 0 1 .707.294l5.5 5.5a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-5.5-5.5A1 1 0 0 1 2 7.587V3a1 1 0 0 1 1-1h4.586Z\" fill=\"#D0D2E0\" stroke=\"currentColor\" class=\"icon-dark-stroke icon-light-fill\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"5.5\" cy=\"5.501\" r=\"1\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1351
|
+
};
|
|
1352
|
+
var body = iconBodies[size];
|
|
1353
|
+
if (!body) {
|
|
1354
|
+
throw Error("Icon \"object-tag\" is not available in size " + size);
|
|
1355
|
+
}
|
|
1356
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1357
|
+
};
|
|
1158
1358
|
var IconSecurityKey = function (props) {
|
|
1159
1359
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1160
1360
|
var iconBodies = {
|
|
@@ -1189,6 +1389,83 @@ var IconShapeLightningBolt = function (props) {
|
|
|
1189
1389
|
}
|
|
1190
1390
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1191
1391
|
};
|
|
1392
|
+
var IconSocialDiscordSolid = function (props) {
|
|
1393
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1394
|
+
var iconBodies = {
|
|
1395
|
+
"16": "<path d=\"M13.545 3.069a13.513 13.513 0 0 0-3.257-.978.05.05 0 0 0-.052.024c-.141.242-.297.558-.406.806a12.576 12.576 0 0 0-3.658 0 8.054 8.054 0 0 0-.412-.806.052.052 0 0 0-.052-.024c-1.143.19-2.236.524-3.257.978a.046.046 0 0 0-.021.017c-2.074 3-2.643 5.927-2.364 8.818.001.014.01.027.02.036a13.443 13.443 0 0 0 3.996 1.955.053.053 0 0 0 .056-.018c.308-.407.582-.836.818-1.287a.048.048 0 0 0-.028-.068 8.874 8.874 0 0 1-1.248-.576.049.049 0 0 1-.005-.082 6.78 6.78 0 0 0 .248-.189.05.05 0 0 1 .051-.006c2.619 1.157 5.454 1.157 8.041 0a.05.05 0 0 1 .053.006c.08.064.164.128.248.189a.049.049 0 0 1-.004.082 8.318 8.318 0 0 1-1.249.575.049.049 0 0 0-.027.07c.24.45.514.879.817 1.286a.052.052 0 0 0 .056.018 13.399 13.399 0 0 0 4.001-1.955.05.05 0 0 0 .021-.036c.334-3.341-.559-6.244-2.365-8.817a.04.04 0 0 0-.021-.018Zm-8.198 7.075c-.789 0-1.438-.701-1.438-1.562 0-.86.637-1.56 1.438-1.56.807 0 1.45.706 1.438 1.56 0 .861-.637 1.562-1.438 1.562Zm5.316 0c-.788 0-1.438-.701-1.438-1.562 0-.86.637-1.56 1.438-1.56.807 0 1.45.706 1.438 1.56 0 .861-.63 1.562-1.438 1.562Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1396
|
+
};
|
|
1397
|
+
var body = iconBodies[size];
|
|
1398
|
+
if (!body) {
|
|
1399
|
+
throw Error("Icon \"social-discord-solid\" is not available in size " + size);
|
|
1400
|
+
}
|
|
1401
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1402
|
+
};
|
|
1403
|
+
var IconSocialEmail = function (props) {
|
|
1404
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1405
|
+
var iconBodies = {
|
|
1406
|
+
"16": "<path d=\"M11 5.25V8.5a2 2 0 0 0 3.92.562A7 7 0 1 0 12 13.745M10.5 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1407
|
+
};
|
|
1408
|
+
var body = iconBodies[size];
|
|
1409
|
+
if (!body) {
|
|
1410
|
+
throw Error("Icon \"social-email\" is not available in size " + size);
|
|
1411
|
+
}
|
|
1412
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1413
|
+
};
|
|
1414
|
+
var IconSocialFacebookSolid = function (props) {
|
|
1415
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1416
|
+
var iconBodies = {
|
|
1417
|
+
"16": "<path d=\"M16 8a8 8 0 1 0-9.25 7.903v-5.59H4.719V8H6.75V6.237c0-2.005 1.194-3.112 3.022-3.112.875 0 1.79.156 1.79.156V5.25h-1.008c-.994 0-1.304.617-1.304 1.25V8h2.219l-.355 2.313H9.25v5.59A8.002 8.002 0 0 0 16 8Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1418
|
+
};
|
|
1419
|
+
var body = iconBodies[size];
|
|
1420
|
+
if (!body) {
|
|
1421
|
+
throw Error("Icon \"social-facebook-solid\" is not available in size " + size);
|
|
1422
|
+
}
|
|
1423
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1424
|
+
};
|
|
1425
|
+
var IconSocialGithubSolid = function (props) {
|
|
1426
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1427
|
+
var iconBodies = {
|
|
1428
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 1.002a7 7 0 0 0-2.213 13.642c.35.065.479-.152.479-.337 0-.167-.007-.719-.01-1.303-1.948.424-2.358-.826-2.358-.826-.319-.81-.778-1.025-.778-1.025-.635-.434.049-.425.049-.425.703.05 1.073.721 1.073.721.624 1.07 1.638.76 2.037.582.063-.453.244-.762.444-.937-1.555-.176-3.19-.776-3.19-3.459 0-.764.275-1.389.722-1.878-.073-.177-.313-.889.067-1.853 0 0 .588-.188 1.926.718a6.714 6.714 0 0 1 1.751-.236c.595.003 1.195.08 1.754.236 1.336-.905 1.923-.718 1.923-.718.38.965.142 1.677.07 1.853.448.49.72 1.114.72 1.878 0 2.689-1.639 3.28-3.197 3.453.251.217.476.643.476 1.296 0 .936-.008 1.69-.008 1.92 0 .187.126.405.48.337A7 7 0 0 0 8 1v.002Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1429
|
+
};
|
|
1430
|
+
var body = iconBodies[size];
|
|
1431
|
+
if (!body) {
|
|
1432
|
+
throw Error("Icon \"social-github-solid\" is not available in size " + size);
|
|
1433
|
+
}
|
|
1434
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1435
|
+
};
|
|
1436
|
+
var IconSocialLinkedinSolid = function (props) {
|
|
1437
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1438
|
+
var iconBodies = {
|
|
1439
|
+
"16": "<path d=\"M16 1.176v13.647A1.176 1.176 0 0 1 14.823 16H1.176A1.176 1.176 0 0 1 0 14.823V1.176A1.176 1.176 0 0 1 1.176 0h13.647A1.176 1.176 0 0 1 16 1.176ZM4.706 6.118H2.353v7.53h2.353v-7.53Zm.212-2.589a1.355 1.355 0 0 0-1.346-1.364h-.043a1.365 1.365 0 1 0 0 2.73 1.355 1.355 0 0 0 1.389-1.323v-.043Zm8.73 5.544c0-2.264-1.44-3.144-2.871-3.144a2.682 2.682 0 0 0-2.382 1.215H8.33V6.118H6.118v7.53H8.47V9.641a1.562 1.562 0 0 1 1.411-1.684h.09c.748 0 1.303.47 1.303 1.656v4.033h2.353l.02-4.574Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1440
|
+
};
|
|
1441
|
+
var body = iconBodies[size];
|
|
1442
|
+
if (!body) {
|
|
1443
|
+
throw Error("Icon \"social-linkedin-solid\" is not available in size " + size);
|
|
1444
|
+
}
|
|
1445
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1446
|
+
};
|
|
1447
|
+
var IconSocialTwitterSolid = function (props) {
|
|
1448
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1449
|
+
var iconBodies = {
|
|
1450
|
+
"16": "<path d=\"M14.355 4.741c.01.142.01.284.01.427 0 4.335-3.299 9.33-9.33 9.33A9.266 9.266 0 0 1 0 13.024c.264.03.518.041.792.041a6.567 6.567 0 0 0 4.07-1.401 3.285 3.285 0 0 1-3.065-2.274c.203.03.406.05.62.05.294 0 .588-.04.862-.111A3.28 3.28 0 0 1 .65 6.112v-.04c.437.243.945.395 1.483.415A3.277 3.277 0 0 1 .67 3.757c0-.61.162-1.168.447-1.655a9.32 9.32 0 0 0 6.761 3.431 3.702 3.702 0 0 1-.081-.751 3.278 3.278 0 0 1 3.28-3.28c.943 0 1.796.397 2.395 1.036a6.457 6.457 0 0 0 2.081-.792 3.27 3.27 0 0 1-1.441 1.807c.66-.07 1.3-.253 1.888-.507a7.048 7.048 0 0 1-1.645 1.695Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1451
|
+
};
|
|
1452
|
+
var body = iconBodies[size];
|
|
1453
|
+
if (!body) {
|
|
1454
|
+
throw Error("Icon \"social-twitter-solid\" is not available in size " + size);
|
|
1455
|
+
}
|
|
1456
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1457
|
+
};
|
|
1458
|
+
var IconSocialYoutubeSolid = function (props) {
|
|
1459
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1460
|
+
var iconBodies = {
|
|
1461
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.25 2.575c.69.184 1.231.725 1.415 1.414C16 5.237 16 7.84 16 7.84s0 2.604-.335 3.852a2.004 2.004 0 0 1-1.414 1.414c-1.247.335-6.251.335-6.251.335s-5.004 0-6.25-.335a2.004 2.004 0 0 1-1.415-1.414C0 10.444 0 7.84 0 7.84s0-2.603.335-3.85a2.004 2.004 0 0 1 1.414-1.415C2.996 2.24 8 2.24 8 2.24s5.004 0 6.25.335ZM10.556 7.84l-4.157 2.4v-4.8l4.157 2.4Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1462
|
+
};
|
|
1463
|
+
var body = iconBodies[size];
|
|
1464
|
+
if (!body) {
|
|
1465
|
+
throw Error("Icon \"social-youtube-solid\" is not available in size " + size);
|
|
1466
|
+
}
|
|
1467
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1468
|
+
};
|
|
1192
1469
|
var IconStatusCancelledOutline = function (props) {
|
|
1193
1470
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1194
1471
|
var iconBodies = {
|
|
@@ -1739,6 +2016,17 @@ var IconTestingTypeE2E = function (props) {
|
|
|
1739
2016
|
}
|
|
1740
2017
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1741
2018
|
};
|
|
2019
|
+
var IconTimeCalendarDay = function (props) {
|
|
2020
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
2021
|
+
var iconBodies = {
|
|
2022
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v2h12V4Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M14 6V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v2m12 0v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6m12 0H2m3-5v2m6-2v2M5 9v1h1V9H5Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
2023
|
+
};
|
|
2024
|
+
var body = iconBodies[size];
|
|
2025
|
+
if (!body) {
|
|
2026
|
+
throw Error("Icon \"time-calendar-day\" is not available in size " + size);
|
|
2027
|
+
}
|
|
2028
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
2029
|
+
};
|
|
1742
2030
|
var IconTimeStopwatch = function (props) {
|
|
1743
2031
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1744
2032
|
var iconBodies = {
|
|
@@ -1783,6 +2071,17 @@ var IconViewList = function (props) {
|
|
|
1783
2071
|
}
|
|
1784
2072
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1785
2073
|
};
|
|
2074
|
+
var IconViewPieChart = function (props) {
|
|
2075
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
2076
|
+
var iconBodies = {
|
|
2077
|
+
"16": "<path d=\"M8 1a7 7 0 0 1 7 7H8V1Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M15 8a7 7 0 0 1-11.95 4.95M15 8a7 7 0 0 0-7-7m7 7H8m0-7a6.978 6.978 0 0 0-4.95 2.05A6.978 6.978 0 0 0 1 8c0 1.933.784 3.683 2.05 4.95M8 1v7m-4.95 4.95L8 8\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
2078
|
+
};
|
|
2079
|
+
var body = iconBodies[size];
|
|
2080
|
+
if (!body) {
|
|
2081
|
+
throw Error("Icon \"view-pie-chart\" is not available in size " + size);
|
|
2082
|
+
}
|
|
2083
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
2084
|
+
};
|
|
1786
2085
|
var IconViewTreeAlt = function (props) {
|
|
1787
2086
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1788
2087
|
var iconBodies = {
|
|
@@ -1817,7 +2116,7 @@ var IconWarning = function (props) {
|
|
|
1817
2116
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1818
2117
|
};
|
|
1819
2118
|
|
|
1820
|
-
export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionAddXsmall, IconActionDelete, IconActionDeleteCircle, IconActionDeleteLarge, IconActionDeleteMedium, IconActionDeleteXlarge, IconActionDisableCircleSolid, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOutlineDown, IconArrowRight, IconArrowUp, IconCheckmark, IconCheckmarkOutline, IconCheckmarkSmall, IconCheckmarkSolid, IconChevronDownDouble, IconChevronDownLarge, IconChevronDownSmall, IconChevronLeftDouble, IconChevronLeftLarge, IconChevronLeftSmall, IconChevronRightDouble, IconChevronRightLarge, IconChevronRightSmall, IconChevronUpDouble, IconChevronUpLarge, IconChevronUpSmall, IconDeviceLaptop, IconDocumentAdded, IconDocumentBlank, IconDocumentCode, IconDocumentDeleted, IconDocumentDownload, IconDocumentMinus, IconDocumentModified, IconDocumentPlus, IconDocumentPlusMinus, IconDocumentScript, IconDocumentSheet, IconDocumentStar, IconDocumentText, IconDotOutlineLarge, IconDotOutlineSmall, IconFileChangesAdded, IconFileChangesError, IconFileChangesSkipped, IconFileChangesWarning, IconGeneralClipboard, IconGeneralCommandKey, IconGeneralCrosshairs, IconGeneralEarth, IconGeneralEyeClosed, IconGeneralEyeOpen, IconGeneralGlobe, IconGeneralGrid2X2, IconGeneralLifeRing, IconGeneralOfficeBuilding, IconGeneralPlaceholder, IconLoading, IconMenuDotsVertical, IconMenuExpandLeft, IconMenuExpandRight, IconObjectBook, IconObjectBookCode, IconObjectBookmark, IconObjectBox, IconObjectBoxOpen, IconObjectBriefcase, IconObjectChainLink, IconObjectFolderDark, IconObjectFolderLight, IconObjectGear, IconObjectMagicWandDarkMode, IconObjectMagnifyingGlass, IconObjectOdometer, IconObjectPaperAirplane, IconObjectPinModern, IconObjectRuler, IconSecurityKey, IconSecurityLockLocked, IconShapeLightningBolt, IconStatusCancelledOutline, IconStatusCancelledSimple, IconStatusCancelledSolid, IconStatusErroredOutline, IconStatusErroredSimple, IconStatusErroredSolid, IconStatusFailedOutline, IconStatusFailedSimple, IconStatusFailedSolid, IconStatusPassedOutline, IconStatusPassedSimple, IconStatusPassedSolid, IconStatusPendingOutline, IconStatusPendingSimple, IconStatusPlaceholderSimple, IconStatusPlaceholderSolid, IconStatusQueuedOutline, IconStatusQueuedSimple, IconStatusRunningOutline, IconStatusRunningSimple, IconStatusSkippedOutline, IconStatusSkippedSimple, IconTechnologyBranchH, IconTechnologyBranchHTall, IconTechnologyBrowserTesting2, IconTechnologyCodeEditor, IconTechnologyCommandLine, IconTechnologyCypress, IconTechnologyDashboardCheckmark, IconTechnologyDashboardFail, IconTechnologyDollar, IconTechnologyDragProject, IconTechnologyElementSelector, IconTechnologyImageScreenshot, IconTechnologyInfinityLoop, IconTechnologyLockedProject, IconTechnologyOctothorpe, IconTechnologyPullRequest, IconTechnologyServer, IconTechnologyTerminal, IconTechnologyTerminalLog, IconTechnologyTestResults, IconTestingTypeComponent, IconTestingTypeComponentSolid, IconTestingTypeE2E, IconTestingTypeE2ESolid, IconTimeStopwatch, IconUserGeneralOutline, IconUserGeneralSolid, IconViewList, IconViewTreeAlt, IconWarning, IconWarningCircle, compileReactIconProperties, Icon as default };
|
|
2119
|
+
export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionAddXsmall, IconActionDelete, IconActionDeleteCircle, IconActionDeleteLarge, IconActionDeleteMedium, IconActionDeleteXlarge, IconActionDisableCircleSolid, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOutlineDown, IconArrowRight, IconArrowRightLarge, IconArrowUp, IconCheckmark, IconCheckmarkOutline, IconCheckmarkSmall, IconCheckmarkSolid, IconChevronDownDouble, IconChevronDownLarge, IconChevronDownMedium, IconChevronDownSmall, IconChevronLeftDouble, IconChevronLeftLarge, IconChevronLeftSmall, IconChevronRightDouble, IconChevronRightLarge, IconChevronRightSmall, IconChevronUpDouble, IconChevronUpLarge, IconChevronUpSmall, IconCurrencyEur, IconCurrencyGbp, IconCurrencyInr, IconCurrencyRub, IconCurrencyUsd, IconDeviceLaptop, IconDocumentAdded, IconDocumentBlank, IconDocumentCode, IconDocumentDeleted, IconDocumentDownload, IconDocumentMinus, IconDocumentModified, IconDocumentPlus, IconDocumentPlusMinus, IconDocumentScript, IconDocumentSheet, IconDocumentStar, IconDocumentText, IconDotOutlineLarge, IconDotOutlineSmall, IconFileChangesAdded, IconFileChangesError, IconFileChangesSkipped, IconFileChangesWarning, IconGeneralClipboard, IconGeneralCommandKey, IconGeneralCrosshairs, IconGeneralEarth, IconGeneralEyeClosed, IconGeneralEyeOpen, IconGeneralGlobe, IconGeneralGrid2X2, IconGeneralLifeRing, IconGeneralOfficeBuilding, IconGeneralPlaceholder, IconLoading, IconMenuDotsVertical, IconMenuExpandLeft, IconMenuExpandRight, IconMenuHamburger, IconNumber1, IconNumber2, IconNumber3, IconNumber4, IconNumber5, IconNumberOctothorpe, IconObjectBook, IconObjectBookCode, IconObjectBookmark, IconObjectBox, IconObjectBoxOpen, IconObjectBriefcase, IconObjectChainLink, IconObjectFolderDark, IconObjectFolderLight, IconObjectGear, IconObjectGraduationCap, IconObjectLetter, IconObjectMagicWandDarkMode, IconObjectMagnifyingGlass, IconObjectOdometer, IconObjectPaperAirplane, IconObjectPinModern, IconObjectRuler, IconObjectSlidersRound, IconObjectTag, IconSecurityKey, IconSecurityLockLocked, IconShapeLightningBolt, IconSocialDiscordSolid, IconSocialEmail, IconSocialFacebookSolid, IconSocialGithubSolid, IconSocialLinkedinSolid, IconSocialTwitterSolid, IconSocialYoutubeSolid, IconStatusCancelledOutline, IconStatusCancelledSimple, IconStatusCancelledSolid, IconStatusErroredOutline, IconStatusErroredSimple, IconStatusErroredSolid, IconStatusFailedOutline, IconStatusFailedSimple, IconStatusFailedSolid, IconStatusPassedOutline, IconStatusPassedSimple, IconStatusPassedSolid, IconStatusPendingOutline, IconStatusPendingSimple, IconStatusPlaceholderSimple, IconStatusPlaceholderSolid, IconStatusQueuedOutline, IconStatusQueuedSimple, IconStatusRunningOutline, IconStatusRunningSimple, IconStatusSkippedOutline, IconStatusSkippedSimple, IconTechnologyBranchH, IconTechnologyBranchHTall, IconTechnologyBrowserTesting2, IconTechnologyCodeEditor, IconTechnologyCommandLine, IconTechnologyCypress, IconTechnologyDashboardCheckmark, IconTechnologyDashboardFail, IconTechnologyDollar, IconTechnologyDragProject, IconTechnologyElementSelector, IconTechnologyImageScreenshot, IconTechnologyInfinityLoop, IconTechnologyLockedProject, IconTechnologyOctothorpe, IconTechnologyPullRequest, IconTechnologyServer, IconTechnologyTerminal, IconTechnologyTerminalLog, IconTechnologyTestResults, IconTestingTypeComponent, IconTestingTypeComponentSolid, IconTestingTypeE2E, IconTestingTypeE2ESolid, IconTimeCalendarDay, IconTimeStopwatch, IconUserGeneralOutline, IconUserGeneralSolid, IconViewList, IconViewPieChart, IconViewTreeAlt, IconWarning, IconWarningCircle, compileReactIconProperties, Icon as default };
|
|
1821
2120
|
|
|
1822
2121
|
/* <windicss-keep class=""> */
|
|
1823
2122
|
//# sourceMappingURL=index.es.mjs.map
|