19 lines
359 B
TypeScript
19 lines
359 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
footerButtonContainer: {
|
|
backgroundColor: "#1F002A",
|
|
borderRadius: 4,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
loaderLottieStyle: {
|
|
width: 26,
|
|
height: 22,
|
|
resizeMode: "contain",
|
|
alignSelf: "center",
|
|
},
|
|
});
|
|
|
|
export default styles;
|