import React, { InputHTMLAttributes } from "react"; export interface InputProps extends InputHTMLAttributes { sizeClass?: string; fontClass?: string; rounded?: string; } // eslint-disable-next-line react/display-name const Input = React.forwardRef( ( { className = "", sizeClass = "h-11 px-4 py-3", fontClass = "text-sm font-normal", rounded = "rounded-2xl", children, type = "text", ...args }, ref ) => { return ( ); } ); export default Input;