function button2(config = {}) {
const {
value = "Reset", title, description, disabled
} = typeof config === "string" ? {value: config} : config;
const form = input({
type: "button", title, description,
attributes: {disabled, value}
});
form.output.remove();
return form;
}