Files
imexmobile/components-old/flat-list-item-separator/flat-list-item-separator.component.jsx

16 lines
277 B
JavaScript

import React from "react";
import { View, Text } from "react-native";
export default function FlatListItemSeparator() {
return (
<View
style={{
height: 1,
width: "100%",
backgroundColor: "#000",
opacity: 0.2,
}}
/>
);
}