UNPKG

antd-mobile-rn

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

19 lines (18 loc) 423 B
import React from 'react'; export interface StepsItemProps { width?: number; size?: string; current?: number; index?: number; last?: boolean; direction?: string; title?: string; description?: string; status?: string; icon?: string; errorTail?: number; styles?: any; } export default class StepsItem extends React.Component<StepsItemProps, any> { render(): JSX.Element; }