@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.
@@ -2193,9 +2193,15 @@ function TypographyIconSpecifiedColor(_ref) {
2193
2193
  props = _objectWithoutProperties(_ref, _excluded$L);
2194
2194
  var ancestorType = useTypographyAncestorType();
2195
2195
  var iconSize = size || (ancestorType ? createNativeBaseIconSize(ancestorType) : undefined);
2196
+ var colorValue = getTypographyColorValue(color);
2197
+ var sx = useSx();
2198
+ var _sx = sx({
2199
+ color: colorValue
2200
+ }),
2201
+ colorStyleValue = _sx.color;
2196
2202
  return /*#__PURE__*/jsx(Icon, _objectSpread(_objectSpread({}, props), {}, {
2197
2203
  size: iconSize,
2198
- color: getTypographyColorValue(color)
2204
+ color: colorStyleValue
2199
2205
  }));
2200
2206
  }
2201
2207
  function TypographyIconInheritColor(props) {