From edd39066b31981e53a489d81c55c4a5735efa66a Mon Sep 17 00:00:00 2001 From: Zadielerick Date: Mon, 15 Jun 2015 09:16:18 -0500 Subject: [PATCH] Added size prop to progress component --- .../src/app/components/pages/components/progress.jsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/src/app/components/pages/components/progress.jsx b/docs/src/app/components/pages/components/progress.jsx index 60f24b30c49db4..24ec37c9658431 100644 --- a/docs/src/app/components/pages/components/progress.jsx +++ b/docs/src/app/components/pages/components/progress.jsx @@ -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.' } ] },