import * as React from "react"; import { TextInput, type TextInputProps } from "react-native"; import { cn } from "../../lib/utils"; function Input({ className, placeholderClassName, ...props }: TextInputProps & { ref?: React.RefObject; }) { return ( ); } export { Input };