/* eslint-disable react/display-name */ import { forwardRef, ReactNode } from "react" import Input from "../Input" interface FormFieldProps extends React.ComponentPropsWithoutRef<"input"> { label?: string bottomElement?: ReactNode } const FormField = forwardRef( ({ label, bottomElement, hidden, ...inputProps }, ref) => { return (
{bottomElement}
) }, ) export default FormField