import { TextInput, type TextInputProps, type ViewStyle } from "react-native"; import { useTheme } from "../theme"; interface InputProps extends TextInputProps { error?: string; } export function Input({ error, style, ...props }: InputProps) { const theme = useTheme(); return ( ); }