import {NgModule,Component,Input} from '@angular/core';
import {CommonModule} from '@angular/common';
@Component({
selector: 'p-progressSpinner',
template: `
`
})
export class ProgressSpinner {
@Input() style: any;
@Input() styleClass: string;
@Input() strokeWidth: string = "2";
@Input() fill: string = "none";
@Input() animationDuration: string = "2s";
}
@NgModule({
imports: [CommonModule],
exports: [ProgressSpinner],
declarations: [ProgressSpinner]
})
export class ProgressSpinnerModule { }