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