novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
26 lines (24 loc) • 645 B
HTML
<header>
<novo-nav theme="white" [outlet]="whitenav">
<novo-tab>
<span>
<i class="bhi-person"></i>Tab 1</span>
</novo-tab>
<novo-tab>
<span>
<i class="bhi-person"></i>Tab 2</span>
</novo-tab>
<novo-tab [disabled]="true">
<span>
<i class="bhi-person"></i>Tab 3</span>
</novo-tab>
</novo-nav>
</header>
<novo-nav-outlet #whitenav>
<novo-nav-content>
<h1>Tab 1 Content</h1>
</novo-nav-content>
<novo-nav-content>
<h1>Tab 2 Content</h1>
</novo-nav-content>
</novo-nav-outlet>