import { TextInput } from "react-native"; import { cn } from "@turbostarter/ui"; import type { TextInputProps } from "react-native"; function Input({ className, placeholderTextColorClassName, selectionColorClassName, ...props }: TextInputProps & React.RefAttributes) { return ( ); } export { Input };