ng-metamagic-extensions
Version:
[](https://badge.fury.io/js/ng-metamagic-extensions) []() [ • 497 B
text/typescript
/**
* Created by dattaram on 1/6/17.
*/
import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
({
selector: 'item',
template:``
})
export class ItemComponent implements OnInit {
() label : string;
() disabled : boolean;
() icon : string;
() onClickRoute : string;
iconStyleClass : string;
() onItemClick : EventEmitter<any> = new EventEmitter<any>();
constructor() {
}
ngOnInit() {
}
}