You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
361 B
18 lines
361 B
import React from "react";
|
|
import { StyleSheet, View } from "react-native";
|
|
|
|
import colors from "../../config/colors";
|
|
|
|
function ListItemSeparator() {
|
|
return <View style={styles.separator} />;
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
separator: {
|
|
width: "100%",
|
|
height: 1,
|
|
backgroundColor: colors.light,
|
|
},
|
|
});
|
|
|
|
export default ListItemSeparator;
|