22 lines
913 B
HTML
22 lines
913 B
HTML
<template name="roundedButtonGroup">
|
|
<div class="{{class}} roundedButtonGroup clearfix center-table">
|
|
{{#each item in this.options}}
|
|
<a class="roundedButtonWrapper noselect {{inlineIf getValue item.value 'active'}}" data-value="{{item.value}}">
|
|
<div class="roundedButton">
|
|
{{#if item.svgLink}}
|
|
<svg style="width: {{item.svgWidth}}px; height: {{item.svgHeight}}px">
|
|
<use xlink:href="{{item.svgLink}}"></use>
|
|
</svg>
|
|
{{/if}}
|
|
{{#if item.text}}
|
|
<span>{{item.text}}</span>
|
|
{{/if}}
|
|
</div>
|
|
{{#if item.bottomLabel}}
|
|
<div class="bottomLabel">{{item.bottomLabel}}</div>
|
|
{{/if}}
|
|
</a>
|
|
{{/each}}
|
|
</div>
|
|
</template>
|