ant-design/components/steps/index.tsx

19 lines
321 B
TypeScript
Raw Normal View History

2016-07-07 20:25:03 +08:00
import * as 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',
2016-04-06 17:07:22 +08:00
current: 0,
2016-07-13 11:14:24 +08:00
};
render() {
2015-09-01 17:43:08 +08:00
return (
2016-07-07 15:42:00 +08:00
<RcSteps {...this.props} />
2015-09-01 17:43:08 +08:00
);
}
}