Files
super-app/components/reusable/cta-button/CtaButtonStyle.ts
2024-03-27 15:06:03 +00:00

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;