@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.
@@ -219,8 +219,9 @@ function TypographyText(props) {
219
219
  }
220
220
 
221
221
  function TypographyParagraph(props) {
222
+ // role 'paragraph' does not exist in native, it's a web feature only.
222
223
  return /*#__PURE__*/jsx(Typography, _objectSpread({
223
- accessibilityRole: "paragraph"
224
+ accessibilityRole: 'paragraph'
224
225
  }, props));
225
226
  }
226
227
 
@@ -315,7 +316,7 @@ function AvatarContent(_ref5) {
315
316
 
316
317
  if (firstname && lastname) {
317
318
  return /*#__PURE__*/jsx(Typography.Text, {
318
- base: sizeVariant === 'large' ? 'body-large' : 'body',
319
+ base: sizeVariant === 'large' ? 'body-large' : 'body-small',
319
320
  variant: sizeVariant === 'large' ? 'bold' : 'regular',
320
321
  color: isLight ? 'black' : 'white',
321
322
  children: getInitials(firstname, lastname)