Files
super-app/components/reusable/cta-button/CtaButtonStyle.ts
2024-06-11 17:54:34 +00:00

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;