<a
  ...attributes
  class="dropdown-item
    {{if
      this.hasSubmenu
      'dropdown-toggle d-flex justify-content-between align-items-center'
    }}
    {{@item.class}}
    {{if @item.disabled 'disabled'}}"
  href="#"
  {{on "click" this.onClick}}
>
  {{#if (has-block)}}
    {{yield}}
  {{else}}
    <span>
      {{@item.title}}
    </span>
  {{/if}}
</a>