@ornikar/kitt-universal 7.0.3 → 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.
@@ -237,8 +237,9 @@ function TypographyText(props) {
237
237
  }
238
238
 
239
239
  function TypographyParagraph(props) {
240
+ // role 'paragraph' does not exist in native, it's a web feature only.
240
241
  return /*#__PURE__*/jsxRuntime.jsx(Typography, {
241
- accessibilityRole: "paragraph",
242
+ accessibilityRole: reactNative.Platform.OS === 'web' ? 'paragraph' : null,
242
243
  ...props
243
244
  });
244
245
  }