import { cn } from '@/lib/utils'; import { Platform, TextInput, type TextInputProps } from 'react-native'; function Input({ className, ...props }: TextInputProps & React.RefAttributes) { return ( ); } export { Input };