import React from "react"; import { TextInput, TextInputProps } from "react-native"; export function Input(props: TextInputProps) { const { style, ...otherProps } = props; const inputRef = React.useRef(null); return ( ); }