import { ComponentProps, forwardRef } from "react" import { cn } from "@/lib/utils" export const Input = forwardRef>( ({ className, type = "text", ...props }, ref) => ( ) ) Input.displayName = "Input"