|
import React from 'react';
|
|
import { View } from 'react-native';
|
|
|
|
export function Divider() {
|
|
const borderColor = '#1D1E24';
|
|
|
|
return <View style={[styles.divider, { backgroundColor: borderColor }]} />;
|
|
}
|
|
|
|
const styles = {
|
|
divider: {
|
|
height: 1,
|
|
marginVertical: 8,
|
|
},
|
|
};
|