{{#if (not cellConfig.hideLabel)}}
  <label class={{labelWrapperClassName}}>
    {{renderLabel}}
    {{#if showRequiredLabel}}
      <div class='frost-bunsen-required'>Required</div>
    {{/if}}
  </label>
{{/if}}
<div class={{inputWrapperClassName}}>
  {{#each options key='@index' as |option index|}}
    {{#frost-button
      disabled=disabled
      hook=(concat hook '-' index '-btn')
      onClick=(action 'handleChange' index)
      options=cellConfig.renderer.options
      priority=(if (eq index activeIndex) 'primary' 'secondary')
      size=size
    }}
      {{option}}
    {{/frost-button}}
  {{/each}}
  {{frost-bunsen-description-bubble
    description=cellConfig.description
  }}
</div>
{{#if renderErrorMessage}}
  <div class='frost-bunsen-error'>
    {{renderErrorMessage}}
  </div>
{{/if}}
