import {NgModule,Component,Input} from '@angular/core'; import {CommonModule} from '@angular/common'; @Component({ selector: 'p-progressBar', template: `
{{value}}{{unit}}
` }) export class ProgressBar { @Input() value: any; @Input() showValue: boolean = true; @Input() style: any; @Input() styleClass: string; @Input() unit: string = '%'; @Input() mode: string = 'determinate'; } @NgModule({ imports: [CommonModule], exports: [ProgressBar], declarations: [ProgressBar] }) export class ProgressBarModule { }