21 lines
378 B
TypeScript
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,
|
|
},
|
|
});
|