You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
835 B

import React from 'react';
import Steps from 'rc-steps';
const AntSteps = React.createClass({
getDefaultProps() {
return {
prefixCls: 'ant-steps',
iconPrefix: 'ant',
size: 'default',
maxDescriptionWidth: 100,
current: 0
};
},
render() {
let maxDescriptionWidth = this.props.maxDescriptionWidth;
if (this.props.direction === 'vertical') {
maxDescriptionWidth = 'auto';
}
9 years ago
return (
<Steps size={this.props.size}
current={this.props.current}
9 years ago
direction={this.props.direction}
iconPrefix={this.props.iconPrefix}
maxDescriptionWidth={maxDescriptionWidth}
9 years ago
prefixCls={this.props.prefixCls}>
{this.props.children}
</Steps>
);
}
});
9 years ago
AntSteps.Step = Steps.Step;
export default AntSteps;