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