<button
  type="button"
  class="{{this.classes}}"
  disabled={{if @disabled "disabled"}}
  {{on "click" this.onPress}}
  {{on "touch" this.onPress}}
  ...attributes
>
  {{#if hasBlock}}
    {{yield (hash Icon=(component "emt-icon"))}}
  {{else}}
    <EmtIcon @icon={{@icon}} />
  {{/if}}
</button>