discourse/app/assets/javascripts/select-box-kit/templates/components/dropdown-select-box/dropdown-select-box-header.hbs
2017-10-19 12:51:08 -07:00

18 lines
363 B
Handlebars

<button
class="btn {{if shouldDisplaySelectedName 'btn-icon-text' 'no-text btn-icon'}}"
aria-label="{{selectedName}}"
type="button"
tabindex="-1"
title="{{selectedName}}">
{{#if icon}}
{{{icon}}}
{{/if}}
{{#if shouldDisplaySelectedName}}
<span class="d-button-label selected-name">
{{selectedName}}
</span>
{{/if}}
</button>