labsense-ui-kit 1.2.13 → 1.2.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/Timer.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 +19 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +19 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -3431,6 +3431,24 @@ var Tick = function Tick(_ref) {
|
|
|
3431
3431
|
}));
|
|
3432
3432
|
};
|
|
3433
3433
|
|
|
3434
|
+
var Timer = function Timer(_ref) {
|
|
3435
|
+
var size = _ref.size,
|
|
3436
|
+
color = _ref.color,
|
|
3437
|
+
weight = _ref.weight;
|
|
3438
|
+
return React.createElement("svg", {
|
|
3439
|
+
width: size,
|
|
3440
|
+
height: size,
|
|
3441
|
+
stroke: color,
|
|
3442
|
+
strokeWidth: weight,
|
|
3443
|
+
viewBox: '0 0 22 22',
|
|
3444
|
+
fill: 'none',
|
|
3445
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
3446
|
+
}, React.createElement("path", {
|
|
3447
|
+
d: "M11 21.5C5.21 21.5 0.5 16.79 0.5 11C0.5 5.21 5.21 0.5 11 0.5C16.79 0.5 21.5 5.21 21.5 11C21.5 16.79 16.79 21.5 11 21.5ZM11 2C6.035 2 2 6.035 2 11C2 15.965 6.035 20 11 20C15.965 20 20 15.965 20 11C20 6.035 15.965 2 11 2Z",
|
|
3448
|
+
fill: color
|
|
3449
|
+
}));
|
|
3450
|
+
};
|
|
3451
|
+
|
|
3434
3452
|
var Tools = function Tools(_ref) {
|
|
3435
3453
|
var size = _ref.size,
|
|
3436
3454
|
color = _ref.color,
|
|
@@ -4299,6 +4317,7 @@ var IconSVGs = {
|
|
|
4299
4317
|
ThreeDots: ThreeDots,
|
|
4300
4318
|
ThumbsUp: ThumbsUp,
|
|
4301
4319
|
Tick: Tick,
|
|
4320
|
+
Timer: Timer,
|
|
4302
4321
|
Tools: Tools,
|
|
4303
4322
|
TriangularFilledWarning: TriangularFilledWarning,
|
|
4304
4323
|
UnPinned: UnPinned,
|