mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-26 18:13:11 +00:00
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
import { Component, HostBinding, Input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'fuse-nav-horizontal-item',
|
|
templateUrl: './nav-horizontal-item.component.html',
|
|
styleUrls : ['./nav-horizontal-item.component.scss']
|
|
})
|
|
export class FuseNavHorizontalItemComponent
|
|
{
|
|
@HostBinding('class') classes = 'nav-item';
|
|
@Input() item: any;
|
|
}
|