'use client' import { cn } from "@/lib/utils" import { forwardRef } from "react" interface InputProps extends React.InputHTMLAttributes { className?: string } const Input = forwardRef( ({ className, type, ...props }, ref) => { return ( ) } ) Input.displayName = "Input" export default Input