A React component for circular progress bar made with divs only
npm install @monade/react-circular-progress-barA fully typescript friendly react component for circular progress bar made with only divs, no svgs or canvas.
Read the full article about this component.
First we need to install the package with npm:
```
npm install @monade/react-circular-progress-bar`
or with yarn:`
yarn add @monade/react-circular-progress-bar
Then we just need to import and use it like this:
`js`
import { CircularProgressBar } from '@monade/react-circular-progress-bar'`html``
color={...}
percentage={...}
borderWidth={...}
contentBackgroundColor={...}
className={...}
contentClassName={...}
>
{...}
I wrote this in a night as part of an experiment for an article I was writing, so feel free to use it as you like.