18 lines
341 B
TypeScript
18 lines
341 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
footerButtonContainer: {
|
|
backgroundColor: "#1F002A",
|
|
paddingVertical: 16,
|
|
borderRadius: 4,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
loaderLottieStyle: {
|
|
width: 30,
|
|
alignSelf: "center",
|
|
},
|
|
});
|
|
|
|
export default styles;
|