{{#if select.selected}}
  {{#if selectedItemComponent}}
    {{component selectedItemComponent extra=(readonly extra) option=(readonly select.selected) select=(readonly select)}}
  {{else}}
    <span class="ember-power-select-selected-item">{{yield select.selected select}}</span>
  {{/if}}
  {{#if (and allowClear (not select.disabled))}}
    <span class="ember-power-select-clear-btn" onmousedown={{action "clear"}} ontouchstart={{action "clear"}}>&times;</span>
  {{/if}}
{{else}}
  {{component placeholderComponent placeholder=placeholder}}
{{/if}}
<span class="ember-power-select-status-icon"></span>
