diff --git a/packages/react-native-web/src/exports/TextInput/TextInputStylePropTypes.js b/packages/react-native-web/src/exports/TextInput/TextInputStylePropTypes.js index 1d16e2f8..28e58f8b 100644 --- a/packages/react-native-web/src/exports/TextInput/TextInputStylePropTypes.js +++ b/packages/react-native-web/src/exports/TextInput/TextInputStylePropTypes.js @@ -7,12 +7,14 @@ * @flow */ +import ColorPropType from '../ColorPropType'; import TextStylePropTypes from '../Text/TextStylePropTypes'; import { oneOf } from 'prop-types'; const TextInputStylePropTypes = { ...TextStylePropTypes, /* @platform web */ + caretColor: ColorPropType, resize: oneOf(['none', 'vertical', 'horizontal', 'both']) };