blob: 0849e2c80266e47762f9c8766e86e740784b7fc0 [file] [log] [blame]
class PlusButton extends ButtonBase {
constructor()
{
super('plus-button');
}
static buttonContent()
{
return `<g stroke="black" stroke-width="10" id="icon">
<circle cx="50" cy="50" r="40" fill="transparent"/>
<polygon points="50,25 50,75" />
<polygon points="25,50 75,50" />
</g>`;
}
}
ComponentBase.defineElement('plus-button', PlusButton);