progress-indicator-react is a React component which helps implement a progress bar component.
npm install progress-indicator-reactProgress Indicator for React Apps
```
npm i progress-indicator-react
-Import ProgressIndicator
``
import ProgressIndicator from 'progress-indicator-react';
-Usage of component
``
/>
`
percentage: number;
barStyle?: object;
barContainerStyle?: object;
percentageTextStyle?: object;
percentText?: string;
Example :-
barStyle={{
backgroud: "red"
}}
barContainerStyle={{
borderColor: "red"
}}
percentageTextStyle={{
color: "red"
}}
percentText={""}
/>
``