ng2-ui-kit
Version:
Angular2 UI Kit
18 lines (14 loc) • 405 B
text/typescript
import { Component, Input, OnInit } from '@angular/core';
({
selector: 'ui-kit-alert',
templateUrl: 'alert.component.html',
styleUrls: ['../../../styles/css/alert.css']
})
export class AlertComponent implements OnInit {
() size: string = '';
() type: string = '';
private class: string;
ngOnInit() {
this.class = `ui-kit-alert ${this.size} ${this.type}`;
}
}