react native create line code example
Example 1: react native seperator code
<View
style={{
borderBottomColor: 'black',
borderBottomWidth: 1,
}}
/>
Example 2: horizontal line html react
const ColoredLine = ({ color }) => (
<hr
style={{
color: color,
backgroundColor: color,
height: 5
}}
/>
);