<div class="toolbar-search relative mx-1" ...attributes>
  <Input
    id={{this.inputId}}
    @type="text"
    @value={{@value}}
    placeholder="Search"
    class="box-border m-0 rounded pt-0 pr-4 pb-0 pl-1 text-base leading-none outline-none bg-base00"
  />

  {{#if @value}}
    <button
      class="toolbar-icon-button toolbar-search-clear-button absolute right-0 w-auto h-auto"
      title="clear"
      data-test-search-field-clear-button
      {{on "click" this.clear}}
      type="button"
    >
      {{svg-jar "clear" width="14px" height="14px"}}
    </button>
  {{/if}}
</div>
