import { View, Text, TextInput, TextInputProps } from 'react-native'; interface InputProps extends TextInputProps { label?: string; error?: string; } export function Input({ label, error, ...props }: InputProps) { return ( {label && {label}} {error && {error}} ); }