@questlabs/react-native-sdk
Version:
Quest react native sdk
24 lines (22 loc) • 627 B
text/typescript
import { TextStyle, ViewStyle } from "react-native";
export type Props = {
onClose?: () => void;
onShow?: () => void;
title?: string;
userTitle?: String;
description?: string;
style?: {
mainViewStyle?: ViewStyle;
headerViewStyle?: ViewStyle;
headerTextStyle?: TextStyle;
crossViewStyle?: ViewStyle;
welcomeTextStyle?: TextStyle;
middelViewStyle?: ViewStyle;
descriptionTextStyle?: TextStyle;
buttonViewStyle?: ViewStyle;
buttonTextStyle?: TextStyle;
iconViewStyle?: ViewStyle;
footerViewStyle?: TextStyle;
footerTextStyle?: ViewStyle;
};
};