import { forwardRef } from "react"; import { Text, TextInput, View } from "react-native"; import { cn } from "@/lib/utils"; import { TailwindResolver } from "../TailwindResolver"; export interface InputProps extends React.ComponentPropsWithoutRef { label?: string; labelClasses?: string; inputClasses?: string; } const Input = forwardRef, InputProps>( ({ className, label, labelClasses, inputClasses, ...props }, ref) => ( {label && {label}} ( )} /> ), ); Input.displayName = "Input"; export { Input };