@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.
@@ -2167,10 +2167,17 @@ function TypographyIconSpecifiedColor({
2167
2167
  }) {
2168
2168
  const ancestorType = useTypographyAncestorType();
2169
2169
  const iconSize = size || (ancestorType ? createNativeBaseIconSize(ancestorType) : undefined);
2170
+ const colorValue = getTypographyColorValue(color);
2171
+ const sx = useSx();
2172
+ const {
2173
+ color: colorStyleValue
2174
+ } = sx({
2175
+ color: colorValue
2176
+ });
2170
2177
  return /*#__PURE__*/jsx(Icon, {
2171
2178
  ...props,
2172
2179
  size: iconSize,
2173
- color: getTypographyColorValue(color)
2180
+ color: colorStyleValue
2174
2181
  });
2175
2182
  }
2176
2183
  function TypographyIconInheritColor(props) {