You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 18, 2024. It is now read-only.
React library to help developers to draw animated, cross-browser, highly customizable progress circles using SVG.
Installation
npm install react-js-progressbar
Usage
//...importProgressbarfrom'react-js-progressbar';exportdefaultfunctionApp(){const[percentage,setPercentage]=useState(0);constchange_progressbar_input=()=>{setPercentage(50);};return(<><divid='progressbarContainer'><Progressbarinput={percentage}pathWidth={10}pathColor={['#56ab2f','#a8e063']}// use an array for gradient color.trailWidth={20}trailColor='#363636'// use a string for solid color.textStyle={{fill: 'red'}}// middle text style>
// children goes here, an image for example. (optional)
</Progressbar></div></>);}