labsense-ui-kit 1.3.9 → 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/index.js +8 -6
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +8 -6
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5385,13 +5385,15 @@ var Zapper = function Zapper(_ref) {
|
|
|
5385
5385
|
};
|
|
5386
5386
|
|
|
5387
5387
|
var Zoom = function Zoom(_ref) {
|
|
5388
|
-
var size = _ref.size,
|
|
5389
|
-
|
|
5390
|
-
|
|
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;
|
|
5391
5394
|
return React__default.createElement("svg", {
|
|
5392
5395
|
width: size,
|
|
5393
5396
|
height: size,
|
|
5394
|
-
strokeWidth: weight,
|
|
5395
5397
|
viewBox: '0 0 758 767',
|
|
5396
5398
|
fill: 'none',
|
|
5397
5399
|
xmlns: 'http://www.w3.org/2000/svg'
|
|
@@ -5402,11 +5404,11 @@ var Zoom = function Zoom(_ref) {
|
|
|
5402
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',
|
|
5403
5405
|
fill: '#EEEEEE',
|
|
5404
5406
|
stroke: color,
|
|
5405
|
-
|
|
5407
|
+
strokeWidth: weight
|
|
5406
5408
|
}), React__default.createElement("path", {
|
|
5407
5409
|
d: 'M180 261.782V181.782H260M300 181.782H380V261.782M380 301.782V381.782H300M260 381.782H180V301.782',
|
|
5408
5410
|
stroke: color,
|
|
5409
|
-
|
|
5411
|
+
strokeWidth: weight
|
|
5410
5412
|
}));
|
|
5411
5413
|
};
|
|
5412
5414
|
|