labsense-ui-kit 1.3.8 → 1.3.10
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/Zoom.d.ts +4 -0
- package/dist/Icons/SVGs/index.d.ts +1 -0
- package/dist/index.js +30 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +30 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5384,6 +5384,34 @@ var Zapper = function Zapper(_ref) {
|
|
|
5384
5384
|
}));
|
|
5385
5385
|
};
|
|
5386
5386
|
|
|
5387
|
+
var Zoom = function Zoom(_ref) {
|
|
5388
|
+
var _ref$size = _ref.size,
|
|
5389
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5390
|
+
_ref$color = _ref.color,
|
|
5391
|
+
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
|
|
5392
|
+
_ref$weight = _ref.weight,
|
|
5393
|
+
weight = _ref$weight === void 0 ? 48 : _ref$weight;
|
|
5394
|
+
return React__default.createElement("svg", {
|
|
5395
|
+
width: size,
|
|
5396
|
+
height: size,
|
|
5397
|
+
viewBox: '0 0 758 767',
|
|
5398
|
+
fill: 'none',
|
|
5399
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
5400
|
+
}, React__default.createElement("path", {
|
|
5401
|
+
d: 'M508 453.782C508 453.782 780 637.782 756 741.782C668 861.782 436 509.782 436 509.782',
|
|
5402
|
+
fill: color
|
|
5403
|
+
}), React__default.createElement("path", {
|
|
5404
|
+
d: 'M548 333.782C537.235 394.919 505.269 450.307 457.72 490.216C410.17 530.124 350.078 552 288 552C225.922 552 165.83 530.124 118.28 490.216C70.7307 450.307 38.7653 394.919 28 333.782C21.3156 295.821 23.0249 256.857 33.0076 219.627C42.9904 182.397 61.0045 147.805 85.7842 118.28C110.564 88.756 141.508 65.016 176.443 48.7282C211.377 32.4404 249.455 24 288 24C326.545 24 364.623 32.4404 399.557 48.7282C434.492 65.016 465.436 88.756 490.216 118.28C514.996 147.805 533.01 182.397 542.992 219.627C552.975 256.857 554.684 295.821 548 333.782Z',
|
|
5405
|
+
fill: '#EEEEEE',
|
|
5406
|
+
stroke: color,
|
|
5407
|
+
strokeWidth: weight
|
|
5408
|
+
}), React__default.createElement("path", {
|
|
5409
|
+
d: 'M180 261.782V181.782H260M300 181.782H380V261.782M380 301.782V381.782H300M260 381.782H180V301.782',
|
|
5410
|
+
stroke: color,
|
|
5411
|
+
strokeWidth: weight
|
|
5412
|
+
}));
|
|
5413
|
+
};
|
|
5414
|
+
|
|
5387
5415
|
var useClickOutside = function useClickOutside(elRef, elCallback) {
|
|
5388
5416
|
var callbackRef = React.useRef(elCallback);
|
|
5389
5417
|
callbackRef.current = elCallback;
|
|
@@ -5986,7 +6014,8 @@ var IconSVGs = {
|
|
|
5986
6014
|
Workflow: Workflow,
|
|
5987
6015
|
X: X,
|
|
5988
6016
|
Youtube: Youtube,
|
|
5989
|
-
Zapper: Zapper
|
|
6017
|
+
Zapper: Zapper,
|
|
6018
|
+
Zoom: Zoom
|
|
5990
6019
|
};
|
|
5991
6020
|
var Icon = function Icon(_ref2) {
|
|
5992
6021
|
var icon = _ref2.icon,
|