Usage:
```
{{d-button icon="times" label="foo.bar" isLoading=true}}
```
Note that a button loading without an icon will shrink text size to prevent button to jump in size.
A button while loading is disabled.
18 lines
356 B
Handlebars
18 lines
356 B
Handlebars
{{#if icon}}
|
|
{{#if isLoading}}
|
|
{{d-icon "spinner" class="loading-icon"}}
|
|
{{else}}
|
|
{{d-icon icon}}
|
|
{{/if}}
|
|
{{else}}
|
|
{{#if isLoading}}
|
|
{{d-icon "spinner" class="loading-icon"}}
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#if translatedLabel}}
|
|
<span class='d-button-label'>{{html-safe translatedLabel}}{{#if ellipsis}}…{{/if}}</span>
|
|
{{/if}}
|
|
|
|
{{yield}}
|