<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">

<t t-name="website.NavTabsHeaderMiddleButtons">
    <button class="btn btn-success ms-0 py-0 px-1 me-1"
            title="Add Tab"
            aria-label="Add Tab"
            t-on-click="addItem">
        <span class="oi oi-fw oi-plus mt-1" aria-hidden="true"/>
    </button>
    <button class="btn py-0 px-1"
            t-att-class="state.tabEls.length gt 2 ? 'btn-danger' : 'disabled text-muted'"
            title="Remove Tab"
            aria-label="Remove Tab"
            t-on-click="removeItem">
        <span class="oi oi-fw oi-minus mt-1" aria-hidden="true"/>
    </button>
</t>

</templates>
