<div class="toolbar">
  <Ui::ToolbarClearButton @action={{@clear}} data-test-deprecations-clear />

  <Ui::ToolbarDivider />

  <div class="toolbar-checkbox">
    <label title="Deprecation workflow">
      <Input
        @type="checkbox"
        @checked={{@toggleDeprecationWorkflow}}
        {{on "change" @changeDeprecationWorkflow}}
      />
      Toggle for Deprecation Workflow
    </label>
  </div>

  <Ui::ToolbarDivider />

  <Ui::ToolbarSearchField
    @clear={{fn (mut @searchValue)}}
    @value={{@searchValue}}
    data-test-deprecations-search
  />
</div>