import type { TextInputProps } from 'react-native'; import { Text, TextInput, View } from 'react-native'; export const Textarea = ({ label, ...props }: TextInputProps & { label: string }) => ( {label} );