UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

23 lines (22 loc) 541 B
import * as React from 'react'; export interface StepsProps { prefixCls?: string; iconPrefix?: string; direction?: string; labelPlacement?: string; children: any; status?: string; size?: string; current?: number; } export default class Steps extends React.Component<StepsProps, any> { static Step: any; static defaultProps: { prefixCls: string; iconPrefix: string; labelPlacement: string; current: number; direction: string; }; render(): JSX.Element; }