A component which supports you define your percent and draw the circle
Npm
$ npm install reactjs-percentage-circle --save-dev
Yarn
$ yarn add reactjs-percentage-circle
Code Example
import PercentageCircle from 'reactjs-percentage-circle';
//...
render() {
<div>
<PercentageCircle percent={80}></PercentageCircle>
<PercentageCircle percent={80}>
<p>Children</p>
</PercentageCircle>
</div>
}