12 lines
351 B
HTML
12 lines
351 B
HTML
|
|
<template name="toolbarSectionButton">
|
||
|
|
<div id="{{id}}" class="toolbarSectionButton {{classes}}" title="{{title}}">
|
||
|
|
<div class="svgContainer">
|
||
|
|
<svg>
|
||
|
|
<use xlink:href={{svgLink}}></use>
|
||
|
|
</svg>
|
||
|
|
</div>
|
||
|
|
<div class="buttonLabel">
|
||
|
|
{{title}}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|