We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71d602f commit cbe6747Copy full SHA for cbe6747
src/progress/view/progress.jsx
@@ -37,9 +37,12 @@ export default class Progress extends Component {
37
/**
38
* 文本渲染函数
39
* @param {Number} percent 当前的进度信息
40
+ * @param {Object} option 额外的参数
41
+ * @property {Boolean} option.rtl 是否在rtl 模式下渲染
42
* @return {ReactNode} 返回文本节点
43
*/
44
textRender: PropTypes.func,
45
+ rtl: PropTypes.bool,
46
};
47
48
static defaultProps = {
0 commit comments