import { forwardRef, InputHTMLAttributes } from "react"; import { cn } from "@/lib/utils"; export const Input = forwardRef>(function Input( { className, ...props }, ref ) { return ( ); });