UNPKG

@uiw/react-native

Version:
14 lines (13 loc) 366 B
declare type statusType = 'success' | 'error' | string; export interface StepsItemsProps { title?: string; desc?: string; status?: statusType; } export interface StepsProps { items: StepsItemsProps[]; current?: number; onChange?: (value: number) => void; } declare const _default: (props: StepsProps) => JSX.Element; export default _default;