import type { InputHTMLAttributes } from "react"; import { cn } from "@/lib/utils"; export function Input({ className, type = "text", ...props }: InputHTMLAttributes) { return ( ); }