import { cn } from "@/lib/utils"; export interface InputProps extends React.InputHTMLAttributes {} export function Input({ className, type, ...props }: InputProps) { return ( ); }