You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
654 B
27 lines
654 B
import { Component } from 'react';
|
|
export interface IStepsProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
iconPrefix?: string;
|
|
direction?: string;
|
|
labelPlacement?: string;
|
|
status?: string;
|
|
size?: string;
|
|
progressDot?: boolean | Function;
|
|
style?: any;
|
|
current?: number;
|
|
}
|
|
export default class Steps extends Component<IStepsProps, any> {
|
|
static defaultProps: {
|
|
prefixCls: string;
|
|
iconPrefix: string;
|
|
direction: string;
|
|
labelPlacement: string;
|
|
current: number;
|
|
status: string;
|
|
size: string;
|
|
progressDot: boolean;
|
|
};
|
|
render(): JSX.Element;
|
|
}
|