import * as React from "react"; import { cn } from "@/lib/utils"; export interface InputProps extends React.InputHTMLAttributes {} const Input = ( { ref, className, type, ...props }: InputProps & { ref: React.RefObject; } ) => { return ( ); }; Input.displayName = "Input"; export { Input };