import * as React from 'react'; import { TextInput, type TextInputProps } from 'react-native'; import { cn } from '@/lib/utils'; const Textarea = React.forwardRef, TextInputProps>( ({ className, multiline = true, numberOfLines = 4, placeholderClassName, ...props }, ref) => { return ( ); } ); Textarea.displayName = 'Textarea'; export { Textarea };