UNPKG

y-taro-ui

Version:

基于taro的表单解决方案 & 基础组件

18 lines (17 loc) 481 B
import React from 'react'; export interface StepsItem { title?: React.ReactNode; description?: React.ReactNode; status?: 'wait' | 'process' | 'finish'; } export interface StepsProps { direction?: 'horizontal' | 'vertical'; items: StepsItem[]; current: number; status?: StepsItem['status']; className?: string; hasWhiteBg?: boolean; initial?: number; } export declare const Steps: React.FC<StepsProps>; export default Steps;