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
text/typescript
import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core';
export class ProgressComponent {
progressClass: string;
progressStyle: Object = {};
showSpineer: boolean = false;
showProgress: boolean = false;
progressPercentage: number = 20;
progressBackground: string = 'green 1px solid';
progressFontColor: string = 'white';
}