Customizable lightweight progress bar using TypesScript and React 16
For example of the progressbar, go to https://loopline-systems.github.io/react-flexible-progressbar.
OR
To run that demo on your own computer:
- Clone this repository
npm i
npm start
- Visit http://localhost:3001/
npm i react-flexible-progressbar
import ProgressBar from 'react-flexible-progressbar'
import 'react-flexible-progressbar/dist/progressBar.css'
{
width?: number | string;
height?: number | string;
margin?: number | string;
progress?: number;
progressTxt?: string; // progress text to show before percentage
showPercentage?: boolean; // whether to show percentage number
}