react-native-rue-wizard-stepper
Version:
11 lines (10 loc) • 310 B
TypeScript
import React, { ReactNode } from 'react';
import { TextStyle } from 'react-native';
export interface StepProps {
children?: ReactNode;
hide?: boolean;
label?: string;
labelStyle?: TextStyle | undefined;
}
declare const Step: ({ children }: StepProps) => React.JSX.Element;
export default Step;