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