1import React, { forwardRef } from 'react'; 2import { StyleSheet } from 'react-native'; 3import View from '../primitives/View'; 4export const HR = forwardRef((props, ref) => { 5 return React.createElement(View, { ...props, style: [styles.hr, props.style], ref: ref }); 6}); 7const styles = StyleSheet.create({ 8 hr: { 9 borderTopWidth: StyleSheet.hairlineWidth, 10 borderBottomWidth: StyleSheet.hairlineWidth, 11 borderTopColor: '#9A9A9A', 12 borderBottomColor: '#EEEEEE', 13 marginVertical: 8, 14 }, 15}); 16//# sourceMappingURL=Rules.js.map