import * as React from "react"; export interface InputProps extends React.InputHTMLAttributes { mode?: "primary" | "transparent" | "true-transparent"; inputSize?: "sm" | "md"; hasError?: boolean; className?: string; } const Input = React.forwardRef((props, ref) => { const { id, type, name, mode = "primary", inputSize = "sm", hasError = false, className = "", ...rest } = props; return ( ); }); Input.displayName = "form-input-field"; export { Input };