Files
super-app/components/reusable/static-header/StaticHeaderStyle.ts
2024-03-27 15:06:03 +00:00

21 lines
378 B
TypeScript

import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
container: {
width: "100%",
flexDirection: "row",
justifyContent: "space-between",
alignItems: "center",
padding: 16,
backgroundColor: "white",
},
leftImageStyle: {
width: 24,
height: 24,
},
rightImageStyle: {
width: 44,
height: 22,
},
});