angular2-simple-ui
Version:
Angular 2 Simple Material Design UI Components customisable with Simple 30 KB CSS with LESS support and full features support , just plugin up and run for clarity look at sample examples
13 lines (10 loc) • 321 B
text/typescript
import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core';
@Component({
selector: 'sui-badge',
templateUrl: './sui.badge.component.html',
})
export class BadgeComponent {
@Input() class: string = 'sui-green';
@Input() style: Object = {};
@Input() message: string;
}