@uiw/react-native
Version:
UIW for React Native
16 lines (15 loc) • 458 B
TypeScript
/// <reference types="react" />
import { ViewProps } from 'react-native';
declare type statusType = 'success' | 'error' | string;
export interface StepsItemsProps {
title?: string;
desc?: string;
status?: statusType;
}
export interface StepsProps extends ViewProps {
items: StepsItemsProps[];
current?: number;
onChange?: (value: number) => void;
}
declare const _default: (props: StepsProps) => JSX.Element;
export default _default;