@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.umd.js
CHANGED
|
@@ -156,9 +156,10 @@ var IconActionDeleteCircle = function (props) {
|
|
|
156
156
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
157
157
|
};
|
|
158
158
|
var IconActionDeleteLarge = function (props) {
|
|
159
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
159
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
160
160
|
var iconBodies = {
|
|
161
|
-
"16": "<path d=\"M3 13 13 3M3 3l10 10\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
161
|
+
"16": "<path d=\"M3 13 13 3M3 3l10 10\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
162
|
+
"24": "<path d=\"M4 20 20 4M4 4l16 16\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
162
163
|
};
|
|
163
164
|
var body = iconBodies[size];
|
|
164
165
|
if (!body) {
|
|
@@ -290,7 +291,7 @@ var IconActionQuestionMarkDefault = function (props) {
|
|
|
290
291
|
var IconActionQuestionMarkOutline = function (props) {
|
|
291
292
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
292
293
|
var iconBodies = {
|
|
293
|
-
"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\"/>"
|
|
294
|
+
"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\"/>"
|
|
294
295
|
};
|
|
295
296
|
var body = iconBodies[size];
|
|
296
297
|
if (!body) {
|
|
@@ -397,6 +398,17 @@ var IconArrowOutlineDown = function (props) {
|
|
|
397
398
|
}
|
|
398
399
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
399
400
|
};
|
|
401
|
+
var IconArrowRightLarge = function (props) {
|
|
402
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
403
|
+
var iconBodies = {
|
|
404
|
+
"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\"/>"
|
|
405
|
+
};
|
|
406
|
+
var body = iconBodies[size];
|
|
407
|
+
if (!body) {
|
|
408
|
+
throw Error("Icon \"arrow-right-large\" is not available in size " + size);
|
|
409
|
+
}
|
|
410
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
411
|
+
};
|
|
400
412
|
var IconArrowRight = function (props) {
|
|
401
413
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
402
414
|
var iconBodies = {
|
|
@@ -442,9 +454,10 @@ var IconCheckmarkSmall = function (props) {
|
|
|
442
454
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
443
455
|
};
|
|
444
456
|
var IconCheckmarkSolid = function (props) {
|
|
445
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
457
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
446
458
|
var iconBodies = {
|
|
447
|
-
"
|
|
459
|
+
"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\"/>",
|
|
460
|
+
"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\"/>"
|
|
448
461
|
};
|
|
449
462
|
var body = iconBodies[size];
|
|
450
463
|
if (!body) {
|
|
@@ -485,6 +498,17 @@ var IconChevronDownLarge = function (props) {
|
|
|
485
498
|
}
|
|
486
499
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
487
500
|
};
|
|
501
|
+
var IconChevronDownMedium = function (props) {
|
|
502
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
503
|
+
var iconBodies = {
|
|
504
|
+
"16": "<path d=\"m4 6 4 4 4-4\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
505
|
+
};
|
|
506
|
+
var body = iconBodies[size];
|
|
507
|
+
if (!body) {
|
|
508
|
+
throw Error("Icon \"chevron-down-medium\" is not available in size " + size);
|
|
509
|
+
}
|
|
510
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
511
|
+
};
|
|
488
512
|
var IconChevronDownSmall = function (props) {
|
|
489
513
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
490
514
|
var iconBodies = {
|
|
@@ -599,6 +623,61 @@ var IconChevronUpSmall = function (props) {
|
|
|
599
623
|
}
|
|
600
624
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
601
625
|
};
|
|
626
|
+
var IconCurrencyEur = function (props) {
|
|
627
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
628
|
+
var iconBodies = {
|
|
629
|
+
"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\"/>"
|
|
630
|
+
};
|
|
631
|
+
var body = iconBodies[size];
|
|
632
|
+
if (!body) {
|
|
633
|
+
throw Error("Icon \"currency-eur\" is not available in size " + size);
|
|
634
|
+
}
|
|
635
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
636
|
+
};
|
|
637
|
+
var IconCurrencyGbp = function (props) {
|
|
638
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
639
|
+
var iconBodies = {
|
|
640
|
+
"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\"/>"
|
|
641
|
+
};
|
|
642
|
+
var body = iconBodies[size];
|
|
643
|
+
if (!body) {
|
|
644
|
+
throw Error("Icon \"currency-gbp\" is not available in size " + size);
|
|
645
|
+
}
|
|
646
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
647
|
+
};
|
|
648
|
+
var IconCurrencyInr = function (props) {
|
|
649
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
650
|
+
var iconBodies = {
|
|
651
|
+
"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\"/>"
|
|
652
|
+
};
|
|
653
|
+
var body = iconBodies[size];
|
|
654
|
+
if (!body) {
|
|
655
|
+
throw Error("Icon \"currency-inr\" is not available in size " + size);
|
|
656
|
+
}
|
|
657
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
658
|
+
};
|
|
659
|
+
var IconCurrencyRub = function (props) {
|
|
660
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
661
|
+
var iconBodies = {
|
|
662
|
+
"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\"/>"
|
|
663
|
+
};
|
|
664
|
+
var body = iconBodies[size];
|
|
665
|
+
if (!body) {
|
|
666
|
+
throw Error("Icon \"currency-rub\" is not available in size " + size);
|
|
667
|
+
}
|
|
668
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
669
|
+
};
|
|
670
|
+
var IconCurrencyUsd = function (props) {
|
|
671
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
672
|
+
var iconBodies = {
|
|
673
|
+
"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\"/>"
|
|
674
|
+
};
|
|
675
|
+
var body = iconBodies[size];
|
|
676
|
+
if (!body) {
|
|
677
|
+
throw Error("Icon \"currency-usd\" is not available in size " + size);
|
|
678
|
+
}
|
|
679
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
680
|
+
};
|
|
602
681
|
var IconDeviceLaptop = function (props) {
|
|
603
682
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
604
683
|
var iconBodies = {
|
|
@@ -997,6 +1076,83 @@ var IconMenuExpandRight = function (props) {
|
|
|
997
1076
|
}
|
|
998
1077
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
999
1078
|
};
|
|
1079
|
+
var IconMenuHamburger = function (props) {
|
|
1080
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1081
|
+
var iconBodies = {
|
|
1082
|
+
"24": "<path d=\"M1 6h22M1 12h14M1 18h18\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1083
|
+
};
|
|
1084
|
+
var body = iconBodies[size];
|
|
1085
|
+
if (!body) {
|
|
1086
|
+
throw Error("Icon \"menu-hamburger\" is not available in size " + size);
|
|
1087
|
+
}
|
|
1088
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1089
|
+
};
|
|
1090
|
+
var IconNumber1 = function (props) {
|
|
1091
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1092
|
+
var iconBodies = {
|
|
1093
|
+
"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\"/>"
|
|
1094
|
+
};
|
|
1095
|
+
var body = iconBodies[size];
|
|
1096
|
+
if (!body) {
|
|
1097
|
+
throw Error("Icon \"number-1\" is not available in size " + size);
|
|
1098
|
+
}
|
|
1099
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1100
|
+
};
|
|
1101
|
+
var IconNumber2 = function (props) {
|
|
1102
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1103
|
+
var iconBodies = {
|
|
1104
|
+
"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\"/>"
|
|
1105
|
+
};
|
|
1106
|
+
var body = iconBodies[size];
|
|
1107
|
+
if (!body) {
|
|
1108
|
+
throw Error("Icon \"number-2\" is not available in size " + size);
|
|
1109
|
+
}
|
|
1110
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1111
|
+
};
|
|
1112
|
+
var IconNumber3 = function (props) {
|
|
1113
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1114
|
+
var iconBodies = {
|
|
1115
|
+
"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\"/>"
|
|
1116
|
+
};
|
|
1117
|
+
var body = iconBodies[size];
|
|
1118
|
+
if (!body) {
|
|
1119
|
+
throw Error("Icon \"number-3\" is not available in size " + size);
|
|
1120
|
+
}
|
|
1121
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1122
|
+
};
|
|
1123
|
+
var IconNumber4 = function (props) {
|
|
1124
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1125
|
+
var iconBodies = {
|
|
1126
|
+
"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\"/>"
|
|
1127
|
+
};
|
|
1128
|
+
var body = iconBodies[size];
|
|
1129
|
+
if (!body) {
|
|
1130
|
+
throw Error("Icon \"number-4\" is not available in size " + size);
|
|
1131
|
+
}
|
|
1132
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1133
|
+
};
|
|
1134
|
+
var IconNumber5 = function (props) {
|
|
1135
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1136
|
+
var iconBodies = {
|
|
1137
|
+
"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\"/>"
|
|
1138
|
+
};
|
|
1139
|
+
var body = iconBodies[size];
|
|
1140
|
+
if (!body) {
|
|
1141
|
+
throw Error("Icon \"number-5\" is not available in size " + size);
|
|
1142
|
+
}
|
|
1143
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1144
|
+
};
|
|
1145
|
+
var IconNumberOctothorpe = function (props) {
|
|
1146
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1147
|
+
var iconBodies = {
|
|
1148
|
+
"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\"/>"
|
|
1149
|
+
};
|
|
1150
|
+
var body = iconBodies[size];
|
|
1151
|
+
if (!body) {
|
|
1152
|
+
throw Error("Icon \"number-octothorpe\" is not available in size " + size);
|
|
1153
|
+
}
|
|
1154
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1155
|
+
};
|
|
1000
1156
|
var IconObjectBookCode = function (props) {
|
|
1001
1157
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1002
1158
|
var iconBodies = {
|
|
@@ -1113,6 +1269,28 @@ var IconObjectGear = function (props) {
|
|
|
1113
1269
|
}
|
|
1114
1270
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1115
1271
|
};
|
|
1272
|
+
var IconObjectGraduationCap = function (props) {
|
|
1273
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1274
|
+
var iconBodies = {
|
|
1275
|
+
"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\"/>"
|
|
1276
|
+
};
|
|
1277
|
+
var body = iconBodies[size];
|
|
1278
|
+
if (!body) {
|
|
1279
|
+
throw Error("Icon \"object-graduation-cap\" is not available in size " + size);
|
|
1280
|
+
}
|
|
1281
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1282
|
+
};
|
|
1283
|
+
var IconObjectLetter = function (props) {
|
|
1284
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1285
|
+
var iconBodies = {
|
|
1286
|
+
"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\"/>"
|
|
1287
|
+
};
|
|
1288
|
+
var body = iconBodies[size];
|
|
1289
|
+
if (!body) {
|
|
1290
|
+
throw Error("Icon \"object-letter\" is not available in size " + size);
|
|
1291
|
+
}
|
|
1292
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1293
|
+
};
|
|
1116
1294
|
var IconObjectMagicWandDarkMode = function (props) {
|
|
1117
1295
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1118
1296
|
var iconBodies = {
|
|
@@ -1179,6 +1357,28 @@ var IconObjectRuler = function (props) {
|
|
|
1179
1357
|
}
|
|
1180
1358
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1181
1359
|
};
|
|
1360
|
+
var IconObjectSlidersRound = function (props) {
|
|
1361
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1362
|
+
var iconBodies = {
|
|
1363
|
+
"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>"
|
|
1364
|
+
};
|
|
1365
|
+
var body = iconBodies[size];
|
|
1366
|
+
if (!body) {
|
|
1367
|
+
throw Error("Icon \"object-sliders-round\" is not available in size " + size);
|
|
1368
|
+
}
|
|
1369
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1370
|
+
};
|
|
1371
|
+
var IconObjectTag = function (props) {
|
|
1372
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1373
|
+
var iconBodies = {
|
|
1374
|
+
"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\"/>"
|
|
1375
|
+
};
|
|
1376
|
+
var body = iconBodies[size];
|
|
1377
|
+
if (!body) {
|
|
1378
|
+
throw Error("Icon \"object-tag\" is not available in size " + size);
|
|
1379
|
+
}
|
|
1380
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1381
|
+
};
|
|
1182
1382
|
var IconSecurityKey = function (props) {
|
|
1183
1383
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1184
1384
|
var iconBodies = {
|
|
@@ -1213,6 +1413,83 @@ var IconShapeLightningBolt = function (props) {
|
|
|
1213
1413
|
}
|
|
1214
1414
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1215
1415
|
};
|
|
1416
|
+
var IconSocialDiscordSolid = function (props) {
|
|
1417
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1418
|
+
var iconBodies = {
|
|
1419
|
+
"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\"/>"
|
|
1420
|
+
};
|
|
1421
|
+
var body = iconBodies[size];
|
|
1422
|
+
if (!body) {
|
|
1423
|
+
throw Error("Icon \"social-discord-solid\" is not available in size " + size);
|
|
1424
|
+
}
|
|
1425
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1426
|
+
};
|
|
1427
|
+
var IconSocialEmail = function (props) {
|
|
1428
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1429
|
+
var iconBodies = {
|
|
1430
|
+
"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\"/>"
|
|
1431
|
+
};
|
|
1432
|
+
var body = iconBodies[size];
|
|
1433
|
+
if (!body) {
|
|
1434
|
+
throw Error("Icon \"social-email\" is not available in size " + size);
|
|
1435
|
+
}
|
|
1436
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1437
|
+
};
|
|
1438
|
+
var IconSocialFacebookSolid = function (props) {
|
|
1439
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1440
|
+
var iconBodies = {
|
|
1441
|
+
"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\"/>"
|
|
1442
|
+
};
|
|
1443
|
+
var body = iconBodies[size];
|
|
1444
|
+
if (!body) {
|
|
1445
|
+
throw Error("Icon \"social-facebook-solid\" is not available in size " + size);
|
|
1446
|
+
}
|
|
1447
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1448
|
+
};
|
|
1449
|
+
var IconSocialGithubSolid = function (props) {
|
|
1450
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1451
|
+
var iconBodies = {
|
|
1452
|
+
"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\"/>"
|
|
1453
|
+
};
|
|
1454
|
+
var body = iconBodies[size];
|
|
1455
|
+
if (!body) {
|
|
1456
|
+
throw Error("Icon \"social-github-solid\" is not available in size " + size);
|
|
1457
|
+
}
|
|
1458
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1459
|
+
};
|
|
1460
|
+
var IconSocialLinkedinSolid = function (props) {
|
|
1461
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1462
|
+
var iconBodies = {
|
|
1463
|
+
"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\"/>"
|
|
1464
|
+
};
|
|
1465
|
+
var body = iconBodies[size];
|
|
1466
|
+
if (!body) {
|
|
1467
|
+
throw Error("Icon \"social-linkedin-solid\" is not available in size " + size);
|
|
1468
|
+
}
|
|
1469
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1470
|
+
};
|
|
1471
|
+
var IconSocialTwitterSolid = function (props) {
|
|
1472
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1473
|
+
var iconBodies = {
|
|
1474
|
+
"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\"/>"
|
|
1475
|
+
};
|
|
1476
|
+
var body = iconBodies[size];
|
|
1477
|
+
if (!body) {
|
|
1478
|
+
throw Error("Icon \"social-twitter-solid\" is not available in size " + size);
|
|
1479
|
+
}
|
|
1480
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1481
|
+
};
|
|
1482
|
+
var IconSocialYoutubeSolid = function (props) {
|
|
1483
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1484
|
+
var iconBodies = {
|
|
1485
|
+
"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\"/>"
|
|
1486
|
+
};
|
|
1487
|
+
var body = iconBodies[size];
|
|
1488
|
+
if (!body) {
|
|
1489
|
+
throw Error("Icon \"social-youtube-solid\" is not available in size " + size);
|
|
1490
|
+
}
|
|
1491
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1492
|
+
};
|
|
1216
1493
|
var IconStatusCancelledOutline = function (props) {
|
|
1217
1494
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1218
1495
|
var iconBodies = {
|
|
@@ -1763,6 +2040,17 @@ var IconTestingTypeE2E = function (props) {
|
|
|
1763
2040
|
}
|
|
1764
2041
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1765
2042
|
};
|
|
2043
|
+
var IconTimeCalendarDay = function (props) {
|
|
2044
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
2045
|
+
var iconBodies = {
|
|
2046
|
+
"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\"/>"
|
|
2047
|
+
};
|
|
2048
|
+
var body = iconBodies[size];
|
|
2049
|
+
if (!body) {
|
|
2050
|
+
throw Error("Icon \"time-calendar-day\" is not available in size " + size);
|
|
2051
|
+
}
|
|
2052
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
2053
|
+
};
|
|
1766
2054
|
var IconTimeStopwatch = function (props) {
|
|
1767
2055
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1768
2056
|
var iconBodies = {
|
|
@@ -1807,6 +2095,17 @@ var IconViewList = function (props) {
|
|
|
1807
2095
|
}
|
|
1808
2096
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1809
2097
|
};
|
|
2098
|
+
var IconViewPieChart = function (props) {
|
|
2099
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
2100
|
+
var iconBodies = {
|
|
2101
|
+
"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\"/>"
|
|
2102
|
+
};
|
|
2103
|
+
var body = iconBodies[size];
|
|
2104
|
+
if (!body) {
|
|
2105
|
+
throw Error("Icon \"view-pie-chart\" is not available in size " + size);
|
|
2106
|
+
}
|
|
2107
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
2108
|
+
};
|
|
1810
2109
|
var IconViewTreeAlt = function (props) {
|
|
1811
2110
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1812
2111
|
var iconBodies = {
|
|
@@ -1870,6 +2169,7 @@ exports.IconArrowExpand = IconArrowExpand;
|
|
|
1870
2169
|
exports.IconArrowLeft = IconArrowLeft;
|
|
1871
2170
|
exports.IconArrowOutlineDown = IconArrowOutlineDown;
|
|
1872
2171
|
exports.IconArrowRight = IconArrowRight;
|
|
2172
|
+
exports.IconArrowRightLarge = IconArrowRightLarge;
|
|
1873
2173
|
exports.IconArrowUp = IconArrowUp;
|
|
1874
2174
|
exports.IconCheckmark = IconCheckmark;
|
|
1875
2175
|
exports.IconCheckmarkOutline = IconCheckmarkOutline;
|
|
@@ -1877,6 +2177,7 @@ exports.IconCheckmarkSmall = IconCheckmarkSmall;
|
|
|
1877
2177
|
exports.IconCheckmarkSolid = IconCheckmarkSolid;
|
|
1878
2178
|
exports.IconChevronDownDouble = IconChevronDownDouble;
|
|
1879
2179
|
exports.IconChevronDownLarge = IconChevronDownLarge;
|
|
2180
|
+
exports.IconChevronDownMedium = IconChevronDownMedium;
|
|
1880
2181
|
exports.IconChevronDownSmall = IconChevronDownSmall;
|
|
1881
2182
|
exports.IconChevronLeftDouble = IconChevronLeftDouble;
|
|
1882
2183
|
exports.IconChevronLeftLarge = IconChevronLeftLarge;
|
|
@@ -1887,6 +2188,11 @@ exports.IconChevronRightSmall = IconChevronRightSmall;
|
|
|
1887
2188
|
exports.IconChevronUpDouble = IconChevronUpDouble;
|
|
1888
2189
|
exports.IconChevronUpLarge = IconChevronUpLarge;
|
|
1889
2190
|
exports.IconChevronUpSmall = IconChevronUpSmall;
|
|
2191
|
+
exports.IconCurrencyEur = IconCurrencyEur;
|
|
2192
|
+
exports.IconCurrencyGbp = IconCurrencyGbp;
|
|
2193
|
+
exports.IconCurrencyInr = IconCurrencyInr;
|
|
2194
|
+
exports.IconCurrencyRub = IconCurrencyRub;
|
|
2195
|
+
exports.IconCurrencyUsd = IconCurrencyUsd;
|
|
1890
2196
|
exports.IconDeviceLaptop = IconDeviceLaptop;
|
|
1891
2197
|
exports.IconDocumentAdded = IconDocumentAdded;
|
|
1892
2198
|
exports.IconDocumentBlank = IconDocumentBlank;
|
|
@@ -1922,6 +2228,13 @@ exports.IconLoading = IconLoading;
|
|
|
1922
2228
|
exports.IconMenuDotsVertical = IconMenuDotsVertical;
|
|
1923
2229
|
exports.IconMenuExpandLeft = IconMenuExpandLeft;
|
|
1924
2230
|
exports.IconMenuExpandRight = IconMenuExpandRight;
|
|
2231
|
+
exports.IconMenuHamburger = IconMenuHamburger;
|
|
2232
|
+
exports.IconNumber1 = IconNumber1;
|
|
2233
|
+
exports.IconNumber2 = IconNumber2;
|
|
2234
|
+
exports.IconNumber3 = IconNumber3;
|
|
2235
|
+
exports.IconNumber4 = IconNumber4;
|
|
2236
|
+
exports.IconNumber5 = IconNumber5;
|
|
2237
|
+
exports.IconNumberOctothorpe = IconNumberOctothorpe;
|
|
1925
2238
|
exports.IconObjectBook = IconObjectBook;
|
|
1926
2239
|
exports.IconObjectBookCode = IconObjectBookCode;
|
|
1927
2240
|
exports.IconObjectBookmark = IconObjectBookmark;
|
|
@@ -1932,15 +2245,26 @@ exports.IconObjectChainLink = IconObjectChainLink;
|
|
|
1932
2245
|
exports.IconObjectFolderDark = IconObjectFolderDark;
|
|
1933
2246
|
exports.IconObjectFolderLight = IconObjectFolderLight;
|
|
1934
2247
|
exports.IconObjectGear = IconObjectGear;
|
|
2248
|
+
exports.IconObjectGraduationCap = IconObjectGraduationCap;
|
|
2249
|
+
exports.IconObjectLetter = IconObjectLetter;
|
|
1935
2250
|
exports.IconObjectMagicWandDarkMode = IconObjectMagicWandDarkMode;
|
|
1936
2251
|
exports.IconObjectMagnifyingGlass = IconObjectMagnifyingGlass;
|
|
1937
2252
|
exports.IconObjectOdometer = IconObjectOdometer;
|
|
1938
2253
|
exports.IconObjectPaperAirplane = IconObjectPaperAirplane;
|
|
1939
2254
|
exports.IconObjectPinModern = IconObjectPinModern;
|
|
1940
2255
|
exports.IconObjectRuler = IconObjectRuler;
|
|
2256
|
+
exports.IconObjectSlidersRound = IconObjectSlidersRound;
|
|
2257
|
+
exports.IconObjectTag = IconObjectTag;
|
|
1941
2258
|
exports.IconSecurityKey = IconSecurityKey;
|
|
1942
2259
|
exports.IconSecurityLockLocked = IconSecurityLockLocked;
|
|
1943
2260
|
exports.IconShapeLightningBolt = IconShapeLightningBolt;
|
|
2261
|
+
exports.IconSocialDiscordSolid = IconSocialDiscordSolid;
|
|
2262
|
+
exports.IconSocialEmail = IconSocialEmail;
|
|
2263
|
+
exports.IconSocialFacebookSolid = IconSocialFacebookSolid;
|
|
2264
|
+
exports.IconSocialGithubSolid = IconSocialGithubSolid;
|
|
2265
|
+
exports.IconSocialLinkedinSolid = IconSocialLinkedinSolid;
|
|
2266
|
+
exports.IconSocialTwitterSolid = IconSocialTwitterSolid;
|
|
2267
|
+
exports.IconSocialYoutubeSolid = IconSocialYoutubeSolid;
|
|
1944
2268
|
exports.IconStatusCancelledOutline = IconStatusCancelledOutline;
|
|
1945
2269
|
exports.IconStatusCancelledSimple = IconStatusCancelledSimple;
|
|
1946
2270
|
exports.IconStatusCancelledSolid = IconStatusCancelledSolid;
|
|
@@ -1987,10 +2311,12 @@ exports.IconTestingTypeComponent = IconTestingTypeComponent;
|
|
|
1987
2311
|
exports.IconTestingTypeComponentSolid = IconTestingTypeComponentSolid;
|
|
1988
2312
|
exports.IconTestingTypeE2E = IconTestingTypeE2E;
|
|
1989
2313
|
exports.IconTestingTypeE2ESolid = IconTestingTypeE2ESolid;
|
|
2314
|
+
exports.IconTimeCalendarDay = IconTimeCalendarDay;
|
|
1990
2315
|
exports.IconTimeStopwatch = IconTimeStopwatch;
|
|
1991
2316
|
exports.IconUserGeneralOutline = IconUserGeneralOutline;
|
|
1992
2317
|
exports.IconUserGeneralSolid = IconUserGeneralSolid;
|
|
1993
2318
|
exports.IconViewList = IconViewList;
|
|
2319
|
+
exports.IconViewPieChart = IconViewPieChart;
|
|
1994
2320
|
exports.IconViewTreeAlt = IconViewTreeAlt;
|
|
1995
2321
|
exports.IconWarning = IconWarning;
|
|
1996
2322
|
exports.IconWarningCircle = IconWarningCircle;
|