thegamenicorus / react-native-phone-input

Phone input box for React Native
https://www.npmjs.com/package/react-native-phone-input
MIT License
394 stars 447 forks source link

textComponent propType should allow components that are classes #98

Open snmishra opened 5 years ago

snmishra commented 5 years ago

Right now the prop type is defined as textComponent: PropTypes.func, A better prop type would be textComponent: PropTypes.oneOfType([PropTypes.func, PropTypes.Object]) to allow components that are classes.