import { forwardRef } from "react"; import { cn } from "@/app/components/ui/lib/utils"; export interface InputProps extends React.InputHTMLAttributes {} const Input = forwardRef( ({ className, type, ...props }, ref) => { return ( ); }, ); Input.displayName = "Input"; export { Input };