# Progress Bar

## Props

- ***minimum***: number: Sets the bar's minimum percent
- ***easing***: string: Sets bar's css animation type.
- ***positionUsing***: string: first choice for browser fallback animation (translate3d, translante, marginLeft)
- ***speed***: number: sets the animation speed in ms
- ***trickle***: bool: switches trickle on or off
- ***trickleRate***: number: little percentage jumps per trickle incriment
- ***trickleSpeed*** number: ms animation timing between trickle percent increases

## Methods

- ***method1()***: does stuff.




## JSX Usage

*** Progress Bar, full width ***
```
_renderProgressBar() {
    return(
        <div>
            <ProgressBar ref="progressBar" />
        </div>
    );
},
```

