react-native-paysofter
Version:
This is a React Native package for integrating Paysofter payment gateway into your React Native application.
31 lines (28 loc) • 611 B
JavaScript
// PaysofterStyles.js
import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
testMode: {
position: "absolute",
top: 8,
right: 8,
backgroundColor: "red",
color: "white",
borderRadius: 50,
paddingVertical: 4,
paddingHorizontal: 8,
fontSize: 12,
fontWeight: "bold",
},
liveMode: {
position: "absolute",
top: 8,
right: 8,
backgroundColor: "green",
color: "white",
borderRadius: 50,
paddingVertical: 4,
paddingHorizontal: 8,
fontSize: 12,
fontWeight: "bold",
},
});