2022-12-23 17:47:01 +01:00
|
|
|
diff --git a/HTMLView.js b/HTMLView.js
|
|
|
|
index 43f8b7eb552d9a44b5feef74ec2ae7d7ddbc2fca..334d144f1fb96067726bca199ff37267c2fa0fb2 100644
|
|
|
|
--- a/HTMLView.js
|
|
|
|
+++ b/HTMLView.js
|
2022-08-07 00:20:34 +02:00
|
|
|
@@ -1,7 +1,7 @@
|
|
|
|
import React, {PureComponent} from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import htmlToElement from './htmlToElement';
|
|
|
|
-import {Linking, Platform, StyleSheet, View, ViewPropTypes} from 'react-native';
|
|
|
|
+import {Linking, Platform, StyleSheet, View} from 'react-native';
|
|
|
|
|
|
|
|
const boldStyle = {fontWeight: 'bold'};
|
|
|
|
const italicStyle = {fontStyle: 'italic'};
|
|
|
|
@@ -146,7 +146,7 @@ HtmlView.propTypes = {
|
|
|
|
renderNode: PropTypes.func,
|
|
|
|
RootComponent: PropTypes.func,
|
|
|
|
rootComponentProps: PropTypes.object,
|
|
|
|
- style: ViewPropTypes.style,
|
2022-12-23 17:47:01 +01:00
|
|
|
+ style: PropTypes.object,
|
2022-08-07 00:20:34 +02:00
|
|
|
stylesheet: PropTypes.object,
|
|
|
|
TextComponent: PropTypes.func,
|
|
|
|
textComponentProps: PropTypes.object,
|