Progress bar component in the shape of a semicircle - Try it out!
npm install --save react-progressbar-semicircle
import React, { Component } from "react";
import SemiCircleProgressBar from "react-progressbar-semicircle";
class Example extends Component {
render() {
return <SemiCircleProgressBar percentage={33} showPercentValue />;
}
}
This repo comes with an example create-react-app under example/
that can be run locally to experiment with the component. This demo is also hosted here.
cd example
npm install
npm start
This will start the create-react-app dev server locally on port 3000 and open the demo app in your default browser.
This library is bootstrapped with the use of Create-React-Library CLI
MIT © ThomasBem