UNPKG

@questlabs/react-native-sdk

Version:
26 lines (24 loc) 667 B
import { TextStyle, ViewStyle } from "react-native"; export type Props = { imageURL?: string; // videoURL?: string; title?: string; description?: string; number?: number; primaryButtonText?: string; secondaryButtonText?: string; handleSecoundaryButton?: () => void; handlePrimaryButton?: () => void; styleProps: { mainContainer?: ViewStyle; headerText?: TextStyle; descriptionText?: TextStyle; callTextStyle?: TextStyle; numberText?: TextStyle; callView?: ViewStyle; cancelButtonView?: ViewStyle; cancelText?: TextStyle; availButtonView?: ViewStyle; availText?: TextStyle; }; };