Progress Indicator for React Apps
npm i progress-indicator-react
-Import ProgressIndicator
import ProgressIndicator from 'progress-indicator-react';
-Usage of component
<ProgressIndicator
percentage={50}
/>
percentage: number;
barStyle?: object;
barContainerStyle?: object;
percentageTextStyle?: object;
percentText?: string;
Example :-
<ProgressIndicator
percentage={50}
barStyle={{
backgroud: "red"
}}
barContainerStyle={{
borderColor: "red"
}}
percentageTextStyle={{
color: "red"
}}
percentText={""}
/>