<div
  class={{concat
    "tp-modal-header"
    (if (not @title) " no-title")
  }}
  data-test-modal-header
  ...attributes
>
  {{#if @title}}
    <h3 class="tp-modal-title" data-test-modal-header-title>{{@title}}</h3>
  {{/if}}
  {{#if (not @noCloseButton)}}
    <TpModalDialog::CloseButton {{on "click" @onClose}}/>
  {{/if}}
</div>
