import { forwardRef, type InputHTMLAttributes } from 'react' import { cn } from '@/lib/cn' type Props = InputHTMLAttributes export const Input = forwardRef(({ className, ...props }, ref) => ( )) Input.displayName = 'Input'