31 lines
628 B
TypeScript
31 lines
628 B
TypeScript
import { StyleSheet } from "react-native";
|
|
import Colors from "../../../assets/colors/colors";
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
paddingTop: 16,
|
|
paddingBottom: 20,
|
|
},
|
|
rowContainer: {
|
|
flexDirection: "row",
|
|
justifyContent: "flex-start",
|
|
alignItems: "center",
|
|
gap: 12,
|
|
width: "80%",
|
|
},
|
|
titleContainer: {
|
|
flexDirection: "column",
|
|
alignItems: "flex-start",
|
|
},
|
|
separator: {
|
|
height: 1,
|
|
width: "100%",
|
|
backgroundColor: Colors.lightGray,
|
|
},
|
|
});
|
|
|
|
export default styles;
|