| 12345678910111213141516171819202122 | class Button extends UIObject{    constructor(name, label = "Button")    {        super(name);        this.P5Element = createButton();        this.label = label;        this.P5Element.html(label);        this.P5Element.position(0, 0);        this.setStyle(DEFAULT_STYLE);        this.connectCallbacks();    }    setLabel(label)    {        this.label = label;        this.P5Element.html(label);    }}
 |