@ornikar/kitt-universal 7.0.1 → 7.0.4

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.
@@ -230,8 +230,9 @@ function TypographyText(props) {
230
230
  }
231
231
 
232
232
  function TypographyParagraph(props) {
233
+ // role 'paragraph' does not exist in native, it's a web feature only.
233
234
  return /*#__PURE__*/jsxRuntime.jsx(Typography, {
234
- accessibilityRole: "paragraph",
235
+ accessibilityRole: 'paragraph',
235
236
  ...props
236
237
  });
237
238
  }
@@ -321,7 +322,7 @@ function AvatarContent({
321
322
 
322
323
  if (firstname && lastname) {
323
324
  return /*#__PURE__*/jsxRuntime.jsx(Typography.Text, {
324
- base: sizeVariant === 'large' ? 'body-large' : 'body',
325
+ base: sizeVariant === 'large' ? 'body-large' : 'body-small',
325
326
  variant: sizeVariant === 'large' ? 'bold' : 'regular',
326
327
  color: isLight ? 'black' : 'white',
327
328
  children: getInitials(firstname, lastname)