Need a simple <svg>
pie chart and don't want to bring in any heavy
dependencies? You've come to the right place.
npm install react-simple-pie-chart --save
import PieChart from 'react-simple-pie-chart';
<PieChart
slices={[
{
color: '#f00',
value: 10,
},
{
color: '#0f0',
value: 20,
},
]}
/>
This project adheres to the Open Code of Conduct. By participating, you are expected to honor this code.