Skip to content

Commit

Permalink
Merge pull request #853 from Zadielerick/progress
Browse files Browse the repository at this point in the history
Added size prop to progress component
  • Loading branch information
Hai Nguyen committed Jun 15, 2015
2 parents 21678b7 + edd3906 commit 5071197
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions docs/src/app/components/pages/components/progress.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,25 @@ var ProgressPage = React.createClass({
name: 'value',
type: 'number',
header: 'default: 0',
desc: 'The value of progress, only works in determinate mode '
desc: 'The value of progress, only works in determinate mode. '
},
{
name: 'max',
type: 'number',
header: 'default: 100',
desc: 'The max value of progress, only works in determinate mode '
desc: 'The max value of progress, only works in determinate mode. '
},
{
name: 'min',
type: 'number',
header: 'default: 0',
desc: 'The min value of progress, only works in determinate mode '
desc: 'The min value of progress, only works in determinate mode. '
},
{
name: 'size',
type: 'number',
header: 'default: 1',
desc: 'The size of the progress.'
}
]
},
Expand Down

0 comments on commit 5071197

Please sign in to comment.