import React, { forwardRef } from 'react' import { TextInput as RNTextInput, TextInputProps as RNTextInputProps } from 'react-native' interface InputProps extends RNTextInputProps { className?: string style?: any } const Input = forwardRef((props, ref) => { const { className = '', style, ...reset } = props const inputProps = { className, style, ref, ...reset, } return }) Input.displayName = 'Input' export default Input