decide.nolog.cz/app/components/next-button.hbs
2023-11-04 14:54:30 +01:00

16 lines
No EOL
363 B
Handlebars

<BsButton
@type="primary"
class="cr-steps-bottom-nav__button cr-steps-bottom-nav__next-button next"
type="submit"
...attributes
>
<span class="cr-steps-bottom-nav__label">
{{t "action.next"}}
</span>
{{#if @isPending}}
<LoadingSpinner />
{{else}}
<span class="cr-steps-bottom-nav__icon oi oi-caret-right"></span>
{{/if}}
</BsButton>