@questlabs/react-native-sdk
Version:
Quest react native sdk
26 lines (23 loc) • 607 B
text/typescript
import { ViewStyle, TextStyle } from "react-native";
export interface Props {
title?: string;
description?: string;
referralLink:string;
buttonText?: string;
style?: Istyle;
header?:string;
headerDescrption?:string;
loading?:boolean
}
export interface Istyle {
mainViewStyle?: ViewStyle;
headerTextStyle?: TextStyle;
descriptionTextStyle?: TextStyle;
codeViewStyle?: ViewStyle;
codeTextStyle?: TextStyle;
inviteButtonViewStyle?: ViewStyle;
buttonTextStyle?: TextStyle;
headingText?: TextStyle;
detailText?: TextStyle;
middalView?: ViewStyle;
}