import type { ComponentProps } from 'react'; import { cn } from '@/lib/utils'; function Input({ className, type, ref, ...props }: ComponentProps<'input'>) { return ( ); } export { Input };