@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/esm/index.js
CHANGED
@@ -19819,10 +19819,10 @@ var Icon = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
|
|
19819
19819
|
return /*#__PURE__*/React__default.createElement(StyledSvg$1, _extends$5({
|
19820
19820
|
ref: ref
|
19821
19821
|
}, getCommonProps(props), {
|
19822
|
-
size: size,
|
19822
|
+
$size: size,
|
19823
19823
|
viewBox: ic.viewBox,
|
19824
|
-
color: theme.color[color],
|
19825
|
-
verticalAlign: verticalAlign,
|
19824
|
+
$color: theme.color[color],
|
19825
|
+
$verticalAlign: verticalAlign,
|
19826
19826
|
"data-icon": name
|
19827
19827
|
}), /*#__PURE__*/React__default.createElement("use", {
|
19828
19828
|
href: "#".concat(ic.id)
|
@@ -19842,11 +19842,11 @@ var StyledSvg$1 = styled.svg.withConfig({
|
|
19842
19842
|
displayName: "StyledSvg",
|
19843
19843
|
componentId: "sc-uhf282-0"
|
19844
19844
|
})(["color:", ";", " vertical-align:", ";"], function (props) {
|
19845
|
-
return props
|
19845
|
+
return props.$color;
|
19846
19846
|
}, function (props) {
|
19847
|
-
return toIconSize(props
|
19847
|
+
return toIconSize(props.$size);
|
19848
19848
|
}, function (props) {
|
19849
|
-
return props
|
19849
|
+
return props.$verticalAlign;
|
19850
19850
|
});
|
19851
19851
|
|
19852
19852
|
// LICENSE_CODE ZON
|