@luminati-io/uikit 3.1.1 → 3.1.2
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/cjs/index.js +6 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/umd/uikit.development.js +46548 -83432
- package/dist/umd/uikit.development.js.map +1 -1
- package/dist/umd/uikit.production.min.js +40 -3
- package/dist/umd/uikit.production.min.js.map +1 -1
- package/package.json +4 -2
- package/dist/umd/uikit.production.min.js.LICENSE.txt +0 -23
package/dist/cjs/index.js
CHANGED
@@ -19847,10 +19847,10 @@ var Icon = /*#__PURE__*/React__namespace.default.forwardRef(function (props, ref
|
|
19847
19847
|
return /*#__PURE__*/React__namespace.default.createElement(StyledSvg$1, _extends$5({
|
19848
19848
|
ref: ref
|
19849
19849
|
}, getCommonProps(props), {
|
19850
|
-
size: size,
|
19850
|
+
$size: size,
|
19851
19851
|
viewBox: ic.viewBox,
|
19852
|
-
color: theme.color[color],
|
19853
|
-
verticalAlign: verticalAlign,
|
19852
|
+
$color: theme.color[color],
|
19853
|
+
$verticalAlign: verticalAlign,
|
19854
19854
|
"data-icon": name
|
19855
19855
|
}), /*#__PURE__*/React__namespace.default.createElement("use", {
|
19856
19856
|
href: "#".concat(ic.id)
|
@@ -19870,11 +19870,11 @@ var StyledSvg$1 = styled__default.default.svg.withConfig({
|
|
19870
19870
|
displayName: "StyledSvg",
|
19871
19871
|
componentId: "sc-uhf282-0"
|
19872
19872
|
})(["color:", ";", " vertical-align:", ";"], function (props) {
|
19873
|
-
return props
|
19873
|
+
return props.$color;
|
19874
19874
|
}, function (props) {
|
19875
|
-
return toIconSize(props
|
19875
|
+
return toIconSize(props.$size);
|
19876
19876
|
}, function (props) {
|
19877
|
-
return props
|
19877
|
+
return props.$verticalAlign;
|
19878
19878
|
});
|
19879
19879
|
|
19880
19880
|
// LICENSE_CODE ZON
|