progress bar component react typescript
npm install react-progressbar-circleAn React component for styling proggressbar.
```
npm install react-progressbar-circle
`ts
import ProgressBar from 'react-progressbar-circle';
import * as React from 'react';
class Progress extends React.Component
constructor(props){
super(props);
}
render(){
return(
| Prop | description | default value |
| ------------|:--------------------------------:| --------------:|
| sqSize | Size of the progressbar. | 100 |
| strokeWidth | Width of the arc. | 10 |
| percentage | To sgow the completedpercentage. | 80 |
| color | Color of the progressbar arc. | #fffff |
And that's it.