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.
30 lines
744 B
30 lines
744 B
import React from 'react';
|
|
import RcSteps from 'rc-steps';
|
|
|
|
export default class Steps extends React.Component {
|
|
render() {
|
|
let maxDescriptionWidth = this.props.maxDescriptionWidth;
|
|
if (this.props.direction === 'vertical') {
|
|
maxDescriptionWidth = 'auto';
|
|
}
|
|
return (
|
|
<RcSteps size={this.props.size}
|
|
current={this.props.current}
|
|
direction={this.props.direction}
|
|
iconPrefix={this.props.iconPrefix}
|
|
maxDescriptionWidth={maxDescriptionWidth}
|
|
prefixCls={this.props.prefixCls}>
|
|
{this.props.children}
|
|
</RcSteps>
|
|
);
|
|
}
|
|
}
|
|
|
|
Steps.defaultProps = {
|
|
prefixCls: 'ant-steps',
|
|
iconPrefix: 'ant',
|
|
maxDescriptionWidth: 100,
|
|
current: 0
|
|
};
|
|
|
|
Steps.Step = RcSteps.Step;
|
|
|