antd
Version:
An enterprise-class UI design language and React-based implementation
26 lines (25 loc) • 666 B
TypeScript
/// <reference types="react" />
import React from 'react';
export interface StepsProps {
prefixCls?: string;
iconPrefix?: string;
current?: number;
status?: 'wait' | 'process' | 'finish' | 'error';
size?: 'default' | 'small';
direction?: 'horizontal' | 'vertical';
progressDot?: boolean | Function;
}
export default class Steps extends React.Component<StepsProps, any> {
static Step: any;
static defaultProps: {
prefixCls: string;
iconPrefix: string;
current: number;
};
static propTypes: {
prefixCls: any;
iconPrefix: any;
current: any;
};
render(): JSX.Element;
}