import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; export default function Divider({ text }: { text: string }) { return ( {text} ); } const styles = StyleSheet.create({ container: { alignItems: 'center', flexDirection: 'row', }, line: { backgroundColor: 'black', height: 1, flex: 1, }, text: { paddingHorizontal: 5, fontSize: 8, }, });