igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
12 lines (10 loc) • 392 B
text/typescript
import { Component } from '@angular/core';
import { IgxTabItemDirective } from '../tab-item.directive';
@Component({
selector: 'igx-bottom-nav-item',
templateUrl: 'bottom-nav-item.component.html',
providers: [{ provide: IgxTabItemDirective, useExisting: IgxBottomNavItemComponent }],
standalone: true
})
export class IgxBottomNavItemComponent extends IgxTabItemDirective {
}