labsense-ui-kit 1.0.38 → 1.0.39
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/Pin_2.d.ts +4 -0
- package/dist/Icons/SVGs/UnPinned.d.ts +4 -0
- package/dist/Icons/SVGs/index.d.ts +2 -0
- package/dist/Icons/index.d.ts +1 -1
- package/dist/index.js +39 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +39 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -1731,6 +1731,23 @@ var Phone = function Phone(_ref) {
|
|
|
1731
1731
|
}));
|
|
1732
1732
|
};
|
|
1733
1733
|
|
|
1734
|
+
var Pin_2 = function Pin_2(_ref) {
|
|
1735
|
+
var size = _ref.size,
|
|
1736
|
+
color = _ref.color,
|
|
1737
|
+
weight = _ref.weight;
|
|
1738
|
+
return React.createElement("svg", {
|
|
1739
|
+
width: size,
|
|
1740
|
+
height: size,
|
|
1741
|
+
strokeWidth: weight,
|
|
1742
|
+
viewBox: "0 0 8 13",
|
|
1743
|
+
fill: "none",
|
|
1744
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1745
|
+
}, React.createElement("path", {
|
|
1746
|
+
d: "M2.25 4.25008L7.5 8.33341H4.58333V10.6667L4 12.4167L3.41667 10.6667V8.33341H0.5V6.58341L2.25 4.83341V4.25008ZM6.91667 0.166748V1.33341L5.75 1.91675V4.83341L7.5 6.58341V8.33341L3.68314 5.36474L2.25 4.25008V1.91675L1.08333 1.33341V0.166748H6.91667Z",
|
|
1747
|
+
fill: color
|
|
1748
|
+
}));
|
|
1749
|
+
};
|
|
1750
|
+
|
|
1734
1751
|
var Pin = function Pin(_ref) {
|
|
1735
1752
|
var size = _ref.size,
|
|
1736
1753
|
color = _ref.color,
|
|
@@ -2357,6 +2374,26 @@ var Tick = function Tick(_ref) {
|
|
|
2357
2374
|
}));
|
|
2358
2375
|
};
|
|
2359
2376
|
|
|
2377
|
+
var UnPinned = function UnPinned(_ref) {
|
|
2378
|
+
var size = _ref.size,
|
|
2379
|
+
color = _ref.color,
|
|
2380
|
+
weight = _ref.weight;
|
|
2381
|
+
return React.createElement("svg", {
|
|
2382
|
+
width: size,
|
|
2383
|
+
height: size,
|
|
2384
|
+
strokeWidth: weight,
|
|
2385
|
+
viewBox: "0 0 13 13",
|
|
2386
|
+
fill: "none",
|
|
2387
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
2388
|
+
}, React.createElement("path", {
|
|
2389
|
+
d: "M5.25 4.25008L6.3665 5.36658L4.66667 7.06641V7.16675H8.16667L9.33333 8.33341H7.58333V10.6667L7 12.4167L6.41667 10.6667V8.33341H3.5V6.58341L5.25 4.83341V4.25008ZM9.91667 0.166748V1.33341L8.75 1.91675V4.83341L10.5 6.58341V8.019L7.58333 5.10175V1.33341H6.41667V3.93508L5.25 2.76841V1.91675L4.08333 1.33341V0.166748H9.91667Z",
|
|
2390
|
+
fill: color
|
|
2391
|
+
}), React.createElement("path", {
|
|
2392
|
+
d: "M1.32384 0.324219L0.583008 1.06505L11.9347 12.4167L12.6755 11.6759L6.41634 5.41672L1.32384 0.324219Z",
|
|
2393
|
+
fill: color
|
|
2394
|
+
}));
|
|
2395
|
+
};
|
|
2396
|
+
|
|
2360
2397
|
var UpArrow = function UpArrow(_ref) {
|
|
2361
2398
|
var size = _ref.size,
|
|
2362
2399
|
color = _ref.color,
|
|
@@ -2532,6 +2569,7 @@ var IconSVGs = {
|
|
|
2532
2569
|
OpenEye: OpenEye,
|
|
2533
2570
|
PasswordLock: PasswordLock,
|
|
2534
2571
|
Phone: Phone,
|
|
2572
|
+
Pin_2: Pin_2,
|
|
2535
2573
|
Pin: Pin,
|
|
2536
2574
|
Play: Play,
|
|
2537
2575
|
Playback: Playback,
|
|
@@ -2560,6 +2598,7 @@ var IconSVGs = {
|
|
|
2560
2598
|
ThreeDots: ThreeDots,
|
|
2561
2599
|
ThumbsUp: ThumbsUp,
|
|
2562
2600
|
Tick: Tick,
|
|
2601
|
+
UnPinned: UnPinned,
|
|
2563
2602
|
UpArrow: UpArrow,
|
|
2564
2603
|
Video: Video,
|
|
2565
2604
|
Wallet: Wallet,
|