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