UNPKG

antd-mobile

Version:

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

27 lines (26 loc) 650 B
/// <reference types="react" /> import 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; direction: string; current: number; }; stepRefs: any; componentDidMount(): void; componentDidUpdate(): void; render(): JSX.Element; }