@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.
@@ -2122,10 +2122,17 @@ function TypographyIconSpecifiedColor({
2122
2122
  }) {
2123
2123
  const ancestorType = useTypographyAncestorType();
2124
2124
  const iconSize = size || (ancestorType ? createNativeBaseIconSize(ancestorType) : undefined);
2125
+ const colorValue = getTypographyColorValue(color);
2126
+ const sx = useSx();
2127
+ const {
2128
+ color: colorStyleValue
2129
+ } = sx({
2130
+ color: colorValue
2131
+ });
2125
2132
  return /*#__PURE__*/jsx(Icon, {
2126
2133
  ...props,
2127
2134
  size: iconSize,
2128
- color: getTypographyColorValue(color)
2135
+ color: colorStyleValue
2129
2136
  });
2130
2137
  }
2131
2138
  function TypographyIconInheritColor(props) {