import { forwardRef } from "react"; import { twMerge } from "tailwind-merge" export interface InputProps extends React.InputHTMLAttributes {} const Input = forwardRef(({ className, type, disabled, ...props }, ref) => { return ( ) }); Input.displayName = "Input"; export default Input