labsense-ui-kit 1.1.14 → 1.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Icons/SVGs/Cube3D.d.ts +4 -0
- package/dist/Icons/SVGs/index.d.ts +1 -0
- package/dist/Icons/index.d.ts +1 -1
- package/dist/index.js +27 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +27 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +5 -5
package/dist/index.modern.js
CHANGED
|
@@ -655,6 +655,32 @@ var CPU = function CPU(_ref) {
|
|
|
655
655
|
}));
|
|
656
656
|
};
|
|
657
657
|
|
|
658
|
+
var Cube3D = function Cube3D(_ref) {
|
|
659
|
+
var size = _ref.size,
|
|
660
|
+
color = _ref.color,
|
|
661
|
+
weight = _ref.weight;
|
|
662
|
+
return React.createElement("svg", {
|
|
663
|
+
width: size,
|
|
664
|
+
height: size,
|
|
665
|
+
strokeWidth: weight,
|
|
666
|
+
viewBox: "0 0 20 22",
|
|
667
|
+
fill: "none",
|
|
668
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
669
|
+
}, React.createElement("path", {
|
|
670
|
+
d: "M19 6.35223V15.6462C19.0001 15.7534 18.9714 15.8585 18.9171 15.9509C18.8627 16.0432 18.7847 16.1193 18.691 16.1712L10.291 20.8372C10.202 20.8866 10.1018 20.9125 10 20.9125C9.89818 20.9125 9.79804 20.8866 9.709 20.8372L1.309 16.1712C1.21532 16.1193 1.13725 16.0432 1.08292 15.9509C1.02858 15.8585 0.999948 15.7534 1 15.6462V6.35223C1.00013 6.24527 1.02884 6.1403 1.08317 6.04817C1.1375 5.95604 1.21547 5.8801 1.309 5.82823L9.709 1.16123C9.79804 1.11185 9.89818 1.08594 10 1.08594C10.1018 1.08594 10.202 1.11185 10.291 1.16123L18.691 5.82823C18.7845 5.8801 18.8625 5.95604 18.9168 6.04817C18.9712 6.1403 18.9999 6.24527 19 6.35223Z",
|
|
671
|
+
stroke: color,
|
|
672
|
+
strokeWidth: "1.5",
|
|
673
|
+
strokeLinecap: "round",
|
|
674
|
+
strokeLinejoin: "round"
|
|
675
|
+
}), React.createElement("path", {
|
|
676
|
+
d: "M1.52795 6.29334L9.70795 10.8373C9.79712 10.8869 9.89744 10.9129 9.99945 10.9129C10.1015 10.9129 10.2018 10.8869 10.291 10.8373L18.5 6.27734M9.99995 19.9993V10.9993",
|
|
677
|
+
stroke: color,
|
|
678
|
+
strokeWidth: "1.5",
|
|
679
|
+
strokeLinecap: "round",
|
|
680
|
+
strokeLinejoin: "round"
|
|
681
|
+
}));
|
|
682
|
+
};
|
|
683
|
+
|
|
658
684
|
var Cyber = function Cyber(_ref) {
|
|
659
685
|
var size = _ref.size,
|
|
660
686
|
color = _ref.color,
|
|
@@ -2782,6 +2808,7 @@ var IconSVGs = {
|
|
|
2782
2808
|
CloseEye: CloseEye,
|
|
2783
2809
|
Copy: Copy,
|
|
2784
2810
|
CPU: CPU,
|
|
2811
|
+
Cube3D: Cube3D,
|
|
2785
2812
|
Cyber: Cyber,
|
|
2786
2813
|
DocumentBadge: DocumentBadge,
|
|
2787
2814
|
DownArrow: DownArrow,
|