UNPKG

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

19 lines (14 loc) 558 B
import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core'; @Component({ selector: 'sui-progress', templateUrl: './sui.progress.component.html', }) export class ProgressComponent { @Input() progressClass: string; @Input() progressStyle: Object = {}; @Input() showSpineer: boolean = false; @Input() showProgress: boolean = false; @Input() progressPercentage: number = 20; @Input() progressBackground: string = 'green 1px solid'; @Input() progressFontColor: string = 'white'; }