mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
24 lines
538 B
JavaScript
24 lines
538 B
JavaScript
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';
|
|
}
|
|
return (
|
|
<RcSteps {...this.props} maxDescriptionWidth={maxDescriptionWidth} />
|
|
);
|
|
}
|
|
}
|