@ornikar/kitt-universal 7.0.0 → 7.0.3

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.
@@ -321,7 +321,7 @@ function AvatarContent({
321
321
 
322
322
  if (firstname && lastname) {
323
323
  return /*#__PURE__*/jsxRuntime.jsx(Typography.Text, {
324
- base: sizeVariant === 'large' ? 'body-large' : 'body',
324
+ base: sizeVariant === 'large' ? 'body-large' : 'body-small',
325
325
  variant: sizeVariant === 'large' ? 'bold' : 'regular',
326
326
  color: isLight ? 'black' : 'white',
327
327
  children: getInitials(firstname, lastname)
@@ -2753,13 +2753,11 @@ const OverlayPressable = /*#__PURE__*/styled__default(BabelPluginStyledComponent
2753
2753
  backgroundColor: theme.kitt.colors.overlay.dark
2754
2754
  }));
2755
2755
  function Overlay({
2756
- onPress,
2757
- children
2756
+ onPress
2758
2757
  }) {
2759
2758
  return /*#__PURE__*/jsxRuntime.jsx(OverlayPressable, {
2760
2759
  accessibilityRole: "none",
2761
- onPress: onPress,
2762
- children: children
2760
+ onPress: onPress
2763
2761
  });
2764
2762
  }
2765
2763