You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/steps/index.jsx

35 lines
835 B
React

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';
}
10 years ago
return (
<Steps size={this.props.size}
current={this.props.current}
10 years ago
direction={this.props.direction}
iconPrefix={this.props.iconPrefix}
maxDescriptionWidth={maxDescriptionWidth}
10 years ago
prefixCls={this.props.prefixCls}>
{this.props.children}
</Steps>
);
}
});
10 years ago
AntSteps.Step = Steps.Step;
export default AntSteps;