UNPKG

react-native-rue-wizard-stepper

Version:
19 lines (18 loc) 788 B
import React from "react"; import { TextStyle } from "react-native"; export interface StepIconProps { label?: string; labelStyle?: TextStyle; stepNumber?: number; isActiveStep?: boolean; isCompletedStep?: boolean; completedStepIconColor?: string; completeStepNumColor?: string; activeStepIconColor?: string; inactiveStepIconColor?: string; activeStepNumColor?: string; disabledStepNumColor?: string; showLabelAboveSteps?: boolean; } declare const StepIcon: ({ label, labelStyle, stepNumber, isActiveStep, isCompletedStep, completedStepIconColor, inactiveStepIconColor, activeStepIconColor, activeStepNumColor, completeStepNumColor, disabledStepNumColor, showLabelAboveSteps, }: StepIconProps) => React.JSX.Element; export default StepIcon;