Skip to content

Commit

Permalink
Update progress_bar.md
Browse files Browse the repository at this point in the history
  • Loading branch information
javivelasco committed Jul 4, 2015
1 parent 73ed889 commit b197237
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions components/progress_bar/progress_bar.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Progress Bar

```
```javascript
var ProgressBar = require('react-toolbox/components/progress_bar');

// Circular indeterminate progress bar
Expand All @@ -14,13 +14,13 @@ var ProgressBar = require('react-toolbox/components/progress_bar');

| Name | Type | Default | Description|
| ------------- |:-------:|:--------------- |:---------- |
| **type** | String | "linear" | Type of the component, it can be *circular* or *linear*.|
| **mode** | String | "indeterminate" | Mode of the progress bar, it can be *determinate* or *indeterminate*.|
| **value** | Number | 0 | Value of the current progress.|
| **min** | Number | 0 | Minimum value permitted.|
| **max** | Number | 100 | Maximum value permitted.|
| **buffer** | Number | 0 | Value of a secondary progress bar useful for buffering.|
| **className** | String | '' | Additional class name to provide custom styling.|
| **type** | String | `linear` | Type of the component, it can be *circular* or *linear*.|
| **mode** | String | `indeterminate` | Mode of the progress bar, it can be *determinate* or *indeterminate*.|
| **value** | Number | `0` | Value of the current progress.|
| **min** | Number | `0` | Minimum value permitted.|
| **max** | Number | `100` | Maximum value permitted.|
| **buffer** | Number | `0` | Value of a secondary progress bar useful for buffering.|
| **className** | String | `''` | Additional class name to provide custom styling.|

## Methods

Expand Down

0 comments on commit b197237

Please sign in to comment.