<div
  local-class="ui-combobox-option {{if this.isSelected "is-selected"}}"
  {{on "click" this.onClick}}
  ...attributes
>
  {{#if this.optionComponent}}
    {{component this.optionComponent value=this.option isSelected=this.isSelected}}
  {{else}}
    <div local-class="selected">
      {{#if this.isSelected}}
        {{svg-jar "checkmark-1" local-class="tick"}}
      {{else}}
        <div local-class="spot"></div>
      {{/if}}
    </div>
    {{#if (has-block)}}
      {{yield}}
    {{else}}
      {{#if this.labelPath}}
        {{get this.value this.labelPath}}
      {{else}}
        {{this.value}}
      {{/if}}
    {{/if}}
  {{/if}}
</div>