@ornikar/kitt-universal 21.0.1 → 21.0.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/CHANGELOG.md +9 -0
- package/dist/definitions/typography/TypographyIcon.d.ts.map +1 -1
- package/dist/index-node-18.18.cjs.js +8 -1
- package/dist/index-node-18.18.cjs.js.map +1 -1
- package/dist/index-node-18.18.cjs.web.js +8 -1
- package/dist/index-node-18.18.cjs.web.js.map +1 -1
- package/dist/index-node-18.18.es.mjs +8 -1
- package/dist/index-node-18.18.es.mjs.map +1 -1
- package/dist/index-node-18.18.es.web.mjs +8 -1
- package/dist/index-node-18.18.es.web.mjs.map +1 -1
- package/dist/index.es.android.js +7 -1
- package/dist/index.es.android.js.map +1 -1
- package/dist/index.es.ios.js +7 -1
- package/dist/index.es.ios.js.map +1 -1
- package/dist/index.es.js +7 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +7 -1
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.es.android.js
CHANGED
|
@@ -2151,9 +2151,15 @@ function TypographyIconSpecifiedColor(_ref) {
|
|
|
2151
2151
|
props = _objectWithoutProperties(_ref, _excluded$K);
|
|
2152
2152
|
var ancestorType = useTypographyAncestorType();
|
|
2153
2153
|
var iconSize = size || (ancestorType ? createNativeBaseIconSize(ancestorType) : undefined);
|
|
2154
|
+
var colorValue = getTypographyColorValue(color);
|
|
2155
|
+
var sx = useSx();
|
|
2156
|
+
var _sx = sx({
|
|
2157
|
+
color: colorValue
|
|
2158
|
+
}),
|
|
2159
|
+
colorStyleValue = _sx.color;
|
|
2154
2160
|
return /*#__PURE__*/jsx(Icon, _objectSpread(_objectSpread({}, props), {}, {
|
|
2155
2161
|
size: iconSize,
|
|
2156
|
-
color:
|
|
2162
|
+
color: colorStyleValue
|
|
2157
2163
|
}));
|
|
2158
2164
|
}
|
|
2159
2165
|
function TypographyIconInheritColor(props) {
|