expo-popcore-old/components/profile/divider.tsx

16 lines
284 B
TypeScript

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,
},
};