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