UNPKG

ngx-collapsible-sidebar

Version:

A simple sidenav that gives the functionality for the collapsed view of the sidebar.

13 lines (11 loc) 371 B
import {Component, Input} from '@angular/core'; @Component({ selector: 'ngx-collapsible-sidebar-sub-item', templateUrl: './ngx-collapsible-sidebar-sub-item.component.html', styleUrls: ['./ngx-collapsible-sidebar-sub-item.component.scss'] }) export class NgxCollapsibleSidebarSubItemComponent { @Input() title: string; @Input() path: string; color: string; }