ngx-progress-spinner
v0.0.6
Published
It will show the static progress spinner with support of different size of width and height
Readme
NGX Progress Spinner
It will show the static progress spinner with support of different size of width and height
Install
First, install ngx-progress-spinner
npm i ngx-progress-spinnerAdd the following in code in component.html
<app-progress-spinner [percentage]="30" [color]="'#ff6347'" [width]="10" [height]="10"></app-progress-spinner>In the component.ts file include in imports
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { ProgressSpinnerComponent } from 'ngx-progress-spinner';
@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet, ProgressSpinnerComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
})
export class AppComponent {
}
