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.

21 lines
524 B

import React from 'react';
export interface IStepProps {
className?: string;
prefixCls?: string;
style?: any;
wrapperStyle?: any;
itemWidth?: number | string;
status?: string;
iconPrefix?: string;
icon?: React.ReactNode;
adjustMarginRight?: number | string;
stepNumber?: number;
description?: any;
title?: any;
progressDot?: boolean | Function;
}
export default class Step extends React.Component<IStepProps, any> {
renderIconNode(): any;
render(): JSX.Element;
}