xxxxxxxxxx
// TextInput.tsx
import React from "react";
import { TextInput as PaperTextInput } from "react-native-paper";
type MyTextInputProps = React.ComponentProps<typeof PaperTextInput> & {
// ...
}
const MyTextInput: React.FC<MyTextInputProps> = (props) => {
return <PaperTextInput {props} />;
};
export default MyTextInput;