1.0.6 • Published 5 years ago

react-progressbar-circle v1.0.6

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

react-progressbar-circle

An React component for styling proggressbar.

Install

npm install react-progressbar-circle

How to use

import ProgressBar from 'react-progressbar-circle';
import * as React from 'react';

class Progress extends React.Component<any,any>{

  constructor(props){
    super(props);
  }

  render(){
    return(
      <div>
        <ProgressBar 
          sqSize={100}
          strokeWidth={10}
          percentage={90}
          color={'#ffff'}
        >
        </ProgressBar>
      </div>
    );
  }
}

Options

Propdescriptiondefault value
sqSizeSize of the progressbar.100
strokeWidthWidth of the arc.10
percentageTo sgow the completedpercentage.80
colorColor of the progressbar arc.#fffff

And that's it.

License

MIT

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago