import { forwardRef } from "react"; const Input = forwardRef(({ label, error, ...props }, ref) => { return (
{label && ( )} {error &&

{error}

}
); }); Input.displayName = "Input"; export default Input;