@uiw/react-native
Version:
UIW for React Native
14 lines • 378 B
JavaScript
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]} />;
}