import { Platform, TextInput } from 'react-native'; import { cn } from '../lib/cn'; function Textarea({ className, multiline = true, numberOfLines = Platform.select({ web: 2, native: 8 }), placeholderClassName, ...props }: React.ComponentProps) { return ( ); } export { Textarea };