@questlabs/react-native-sdk
Version:
Quest react native sdk
26 lines (24 loc) • 667 B
text/typescript
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;
};
};