{{#with (tabs-for-auth-section this.model this.tabType this.paths) as |tabs|}}
{{#if tabs.length}}
<div class="tabs-container box is-sideless is-fullwidth is-paddingless is-marginless">
<nav class="tabs">
<ul>
{{#each tabs as |tab|}}
{{! template-lint-configure no-curly-component-invocation "warn" }}
{{#link-to params=tab.routeParams tagName="li" data-test-auth-section-tab=true}}
{{#link-to params=tab.routeParams}}
{{tab.label}}
{{/link-to}}
{{! template-lint-configure no-curly-component-invocation "on" }}
{{/each}}
</ul>
</nav>
</div>
{{/if}}
{{/with}}