labsense-ui-kit 1.3.50 → 1.3.51
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.
|
@@ -33,6 +33,7 @@ export { default as CCTV_2 } from './CCTV_2';
|
|
|
33
33
|
export { default as Circle } from './Circle';
|
|
34
34
|
export { default as Check } from './Check';
|
|
35
35
|
export { default as CircularEdit } from './CircularEdit';
|
|
36
|
+
export { default as CircularFilledWarning } from './CircularFilledWarning';
|
|
36
37
|
export { default as CircularPause } from './CircularPause';
|
|
37
38
|
export { default as CircularPlay } from './CircularPlay';
|
|
38
39
|
export { default as CircularWarning } from './CircularWarning';
|
package/dist/index.js
CHANGED
|
@@ -894,6 +894,23 @@ var CircularEdit = function CircularEdit(_ref) {
|
|
|
894
894
|
}));
|
|
895
895
|
};
|
|
896
896
|
|
|
897
|
+
var CircularFilledWarning = function CircularFilledWarning(_ref) {
|
|
898
|
+
var size = _ref.size,
|
|
899
|
+
color = _ref.color,
|
|
900
|
+
weight = _ref.weight;
|
|
901
|
+
return React__default.createElement("svg", {
|
|
902
|
+
width: size,
|
|
903
|
+
height: size,
|
|
904
|
+
strokeWidth: weight,
|
|
905
|
+
viewBox: "0 0 28 28",
|
|
906
|
+
fill: "none",
|
|
907
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
908
|
+
}, React__default.createElement("path", {
|
|
909
|
+
d: "M14 20.666C14.3778 20.666 14.6947 20.538 14.9507 20.282C15.2067 20.026 15.3342 19.7096 15.3333 19.3327V13.9993C15.3333 13.6216 15.2053 13.3051 14.9493 13.05C14.6933 12.7949 14.3769 12.6669 14 12.666C13.6231 12.6651 13.3067 12.7931 13.0507 13.05C12.7947 13.3069 12.6667 13.6233 12.6667 13.9993V19.3327C12.6667 19.7105 12.7947 20.0273 13.0507 20.2833C13.3067 20.5393 13.6231 20.6669 14 20.666ZM14 9.99935C14.3778 9.99935 14.6947 9.87135 14.9507 9.61535C15.2067 9.35935 15.3342 9.0429 15.3333 8.66602C15.3325 8.28913 15.2045 7.97268 14.9493 7.71668C14.6942 7.46068 14.3778 7.33268 14 7.33268C13.6222 7.33268 13.3058 7.46068 13.0507 7.71668C12.7956 7.97268 12.6676 8.28913 12.6667 8.66602C12.6658 9.0429 12.7938 9.35979 13.0507 9.61668C13.3076 9.87357 13.624 10.0011 14 9.99935ZM14 27.3327C12.1556 27.3327 10.4222 26.9825 8.80001 26.282C7.17779 25.5816 5.76667 24.6318 4.56667 23.4327C3.36667 22.2336 2.4169 20.8225 1.71734 19.1993C1.01778 17.5762 0.667562 15.8429 0.666673 13.9993C0.665785 12.1558 1.01601 10.4225 1.71734 8.79935C2.41867 7.17624 3.36845 5.76513 4.56667 4.56602C5.7649 3.3669 7.17601 2.41713 8.80001 1.71668C10.424 1.01624 12.1573 0.666016 14 0.666016C15.8427 0.666016 17.576 1.01624 19.2 1.71668C20.824 2.41713 22.2351 3.3669 23.4333 4.56602C24.6316 5.76513 25.5818 7.17624 26.284 8.79935C26.9862 10.4225 27.336 12.1558 27.3333 13.9993C27.3307 15.8429 26.9805 17.5762 26.2827 19.1993C25.5849 20.8225 24.6351 22.2336 23.4333 23.4327C22.2316 24.6318 20.8205 25.582 19.2 26.2833C17.5796 26.9847 15.8462 27.3345 14 27.3327Z",
|
|
910
|
+
fill: color
|
|
911
|
+
}));
|
|
912
|
+
};
|
|
913
|
+
|
|
897
914
|
var CircularPause = function CircularPause(_ref) {
|
|
898
915
|
var size = _ref.size,
|
|
899
916
|
color = _ref.color,
|
|
@@ -5849,6 +5866,7 @@ var IconSVGs = {
|
|
|
5849
5866
|
Circle: Circle,
|
|
5850
5867
|
Check: Check,
|
|
5851
5868
|
CircularEdit: CircularEdit,
|
|
5869
|
+
CircularFilledWarning: CircularFilledWarning,
|
|
5852
5870
|
CircularPause: CircularPause,
|
|
5853
5871
|
CircularPlay: CircularPlay,
|
|
5854
5872
|
CircularWarning: CircularWarning,
|