@questlabs/react-native-sdk
Version:
Quest react native sdk
15 lines (12 loc) • 354 B
text/typescript
import { TextStyle, ViewStyle } from "react-native";
export type Props = {
title?: string;
description?: string;
onThumbsUp?: () => void;
onThumbsDown?: () => void;
mainViewStyle?: ViewStyle;
titleTextStyle?: TextStyle;
descriptionTextStyle?: TextStyle;
buttonViewStyle?: ViewStyle;
};
export type Tthumb = "up" | "down";