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.tsx

24 lines
538 B
TypeScript

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} />
);
}
}