ant-design/components/steps/index.tsx

37 lines
794 B
TypeScript
Raw Normal View History

import * as React from 'react';
2018-08-07 21:07:52 +08:00
import * as PropTypes from 'prop-types';
import RcSteps from 'rc-steps';
2016-08-10 09:46:56 +08:00
export interface StepsProps {
prefixCls?: string;
iconPrefix?: string;
current?: number;
status?: 'wait' | 'process' | 'finish' | 'error';
size?: 'default' | 'small';
direction?: 'horizontal' | 'vertical';
progressDot?: boolean | Function;
style?: React.CSSProperties;
2016-08-10 09:46:56 +08:00
}
export default class Steps extends React.Component<StepsProps, any> {
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
};
2016-08-10 09:46:56 +08:00
static propTypes = {
prefixCls: PropTypes.string,
iconPrefix: PropTypes.string,
current: PropTypes.number,
};
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
);
}
}