react-native-adapty
Version:
Adapty React Native SDK
65 lines • 1.63 kB
TypeScript
/**
* Shared styles for mock UI components (AdaptyPaywallView, AdaptyOnboardingView).
* These styles are used to display informative placeholders when native modules
* are not available (Expo Go, Web).
*/
export declare const mockStyles: {
container: {
flex: number;
backgroundColor: string;
justifyContent: "center";
alignItems: "center";
borderRadius: number;
borderWidth: number;
borderColor: string;
borderStyle: "dashed";
};
content: {
alignItems: "center";
paddingHorizontal: number;
paddingVertical: number;
maxWidth: number;
};
iconContainer: {
marginBottom: number;
};
icon: {
fontSize: number;
};
title: {
fontSize: number;
fontWeight: "bold";
color: string;
marginBottom: number;
};
subtitle: {
fontSize: number;
fontWeight: "600";
color: string;
marginBottom: number;
};
infoBox: {
backgroundColor: string;
borderRadius: number;
padding: number;
marginBottom: number;
};
infoText: {
fontSize: number;
color: string;
textAlign: "center";
lineHeight: number;
};
noteBox: {
backgroundColor: string;
borderRadius: number;
padding: number;
};
noteText: {
fontSize: number;
color: string;
textAlign: "center";
lineHeight: number;
};
};
//# sourceMappingURL=mock-styles.d.ts.map