mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 06:53:46 +08:00
18 lines
363 B
Handlebars
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>
|