24 lines
505 B
TypeScript
24 lines
505 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
rowContainer: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
paddingBottom: 12,
|
|
},
|
|
listContainer: {
|
|
backgroundColor: "white",
|
|
paddingHorizontal: 16,
|
|
paddingVertical: 14,
|
|
borderRadius: 4,
|
|
borderWidth: 1,
|
|
borderColor: "#EBEBEB",
|
|
},
|
|
itemRowContainer: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
paddingVertical: 10,
|
|
},
|
|
});
|
|
|
|
export default styles; |