UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

10 lines (9 loc) 330 B
import type { FC, ReactNode } from 'react'; import { NativeProps } from '../../utils/native-props'; export declare type StepProps = { title?: ReactNode; description?: ReactNode; icon?: ReactNode; status?: 'wait' | 'process' | 'finish' | 'error'; } & NativeProps; export declare const Step: FC<StepProps>;