UNPKG

@uiw/react-native

Version:
14 lines 378 B
import React from 'react'; import { StyleSheet, View } from 'react-native'; const styles = StyleSheet.create({ default: { height: 1, flexDirection: 'row', borderBottomWidth: StyleSheet.hairlineWidth, borderColor: '#CDCDCD', marginVertical: 10 } }); export default function Hr(props) { return <View {...props} style={[styles.default, props.style]} />; }