A lightweight plugin to render a simple, animated progress bar.
npm install ngx-i24-progress-bar >A lightweight plugin to render a simple, animated progress bar.
* highly customizable
* very easy to implement

* Link
$ npm i ngx-i24-progress-bar@latest
`
#### Example
##### TS
###### Module
`typescript
import { NgxI24ProgressBarModule } from 'ngx-i24-progress-bar';
@NgModule({
declarations: [ AppComponent ],
imports: [BrowserModule, NgxI24ProgressBarModule ],
bootstrap: [AppComponent]
})
export class AppModule { }
`
###### Component
`typescript
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
percentage = 89;
text = 'HTML';
}
`
##### HTML
`html
` Options
| Property (Type) | Default | Description|
| - | - | - |
| percentage | 0 | The percent value
0 - 100` |