import React from "react"; type CustomInputProps = React.InputHTMLAttributes; const CustomInput = React.forwardRef( ({ className, type, ...props }, ref) => { return ( ); } ); CustomInput.displayName = "CustomInput"; export { CustomInput };