mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-14 12:25:14 +00:00
26 lines
482 B
TypeScript
26 lines
482 B
TypeScript
import { Component, HostBinding, Input } from '@angular/core';
|
|
|
|
import { FuseNavigationItem } from '@fuse/types';
|
|
|
|
@Component({
|
|
selector : 'fuse-nav-vertical-group',
|
|
templateUrl: './group.component.html',
|
|
styleUrls : ['./group.component.scss']
|
|
})
|
|
export class FuseNavVerticalGroupComponent
|
|
{
|
|
@HostBinding('class')
|
|
classes = 'nav-group nav-item';
|
|
|
|
@Input()
|
|
item: FuseNavigationItem;
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
}
|