// Input Component const Input = ({ label, required, error, className = '', ...props }) => (
{label && ( )} {error &&

{error}

}
); window.Input = Input;