ohif-viewer/Packages/lesiontracker/client/components/toolbarSectionButton/toolbarSectionButton.html

13 lines
400 B
HTML
Raw Normal View History

2016-06-07 19:09:47 +02:00
<template name="toolbarSectionButton">
<div id="{{this.id}}" class="toolbarSectionButton rp-x-1 {{this.classes}} {{activeClass}}" title="{{this.title}}">
2016-06-07 19:09:47 +02:00
<div class="svgContainer">
<svg>
<use xlink:href={{this.svgLink}}></use>
2016-06-07 19:09:47 +02:00
</svg>
</div>
<div class="buttonLabel">
{{this.title}}
2016-06-07 19:09:47 +02:00
</div>
</div>
2016-06-13 20:51:05 +02:00
</template>