ant-design/components/steps/index.jsx

31 lines
759 B
React
Raw Normal View History

import React from 'react';
import RcSteps from 'rc-steps';
export default class Steps extends React.Component {
static Step = RcSteps.Step;
static defaultProps = {
prefixCls: 'ant-steps',
iconPrefix: 'ant',
maxDescriptionWidth: 100,
current: 0
}
render() {
let maxDescriptionWidth = this.props.maxDescriptionWidth;
if (this.props.direction === 'vertical') {
maxDescriptionWidth = 'auto';
}
2015-09-01 17:43:08 +08:00
return (
<RcSteps size={this.props.size}
current={this.props.current}
direction={this.props.direction}
iconPrefix={this.props.iconPrefix}
maxDescriptionWidth={maxDescriptionWidth}
prefixCls={this.props.prefixCls}>
2015-09-01 17:43:08 +08:00
{this.props.children}
</RcSteps>
2015-09-01 17:43:08 +08:00
);
}
}