import { forwardRef } from "react"; import { cn } from "@/utils/cn"; const Input = forwardRef< HTMLInputElement, React.ComponentPropsWithoutRef<"input"> >(({ className, ...props }, ref) => { return ( ); }); Input.displayName = "Input"; export default Input;