igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
18 lines (16 loc) • 634 B
text/typescript
import { Component, HostBinding } from '@angular/core';
import { IgxTabContentDirective } from '../tab-content.directive';
import { IgxTabContentBase } from '../tabs.base';
import { NgIf } from '@angular/common';
@Component({
selector: 'igx-bottom-nav-content',
templateUrl: 'bottom-nav-content.component.html',
providers: [{ provide: IgxTabContentBase, useExisting: IgxBottomNavContentComponent }],
standalone: true,
imports: [NgIf]
})
export class IgxBottomNavContentComponent extends IgxTabContentDirective {
/** @hidden */
@HostBinding('class.igx-bottom-nav__panel')
public defaultClass = true;
}