react component to display progress bar
npm install react-progressbar-themesReact component for displaying progress bar. Has themes to choose from.

npm install react-progressbar-themes
`
Usage
`
import React from 'react';
const Pbar = require('react-progressbar-themes');export default class yourComponent extends React.Component {
constructor(props){
super(props);
this.state = {
}
}
render() {
return (
);
}
}
`
Props
| Prop | Values | Example | Description | Type |
| ------------- | ------------- | ------------- | ------------- | ------------- |
|
`percent` | 0 to 100 | 56 | percentage completed | Number |
| `theme` | Content Cell | 'theme4' | theme name | String |
| `length` | percent or px value | '40%' or '300px' | desired length of the progressbar | String |
| `barColor` | NA | NA | to be added | NA |
| `trenchColor` | NA | NA | to be added | NA |
| `text`` | NA | NA | to be added | NA |Submit your issue here