import React from 'react'; import { TextInput } from 'react-native'; import type { InputProps } from 'src/theme/themeTypes'; import createTextStyle from 'src/themeUtils/createTextStyle'; import type themeType from '../theme/theme'; function createInputText(useTheme: () => T) { const InputText = ({ textInput = {}, underlineColorAndroid, placeholderTextColor, ...otherProps }: InputProps) => { const theme = useTheme(); return ( ); }; return InputText; } export default createInputText;