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