1import { forwardRef } from 'react'; 2import { StyleSheet, createElement } from 'react-native'; 3export const Table = forwardRef((props, ref) => { 4 return createElement('table', { ...props, style: [styles.reset, props.style], ref }); 5}); 6export const THead = forwardRef((props, ref) => { 7 return createElement('thead', { ...props, style: [styles.reset, props.style], ref }); 8}); 9export const TBody = forwardRef((props, ref) => { 10 return createElement('tbody', { ...props, style: [styles.reset, props.style], ref }); 11}); 12export const TFoot = forwardRef((props, ref) => { 13 return createElement('tfoot', { ...props, style: [styles.reset, props.style], ref }); 14}); 15export const TH = forwardRef((props, ref) => { 16 return createElement('th', { ...props, style: [styles.reset, props.style], ref }); 17}); 18export const TR = forwardRef((props, ref) => { 19 return createElement('tr', { ...props, style: [styles.reset, props.style], ref }); 20}); 21export const TD = forwardRef((props, ref) => { 22 return createElement('td', { ...props, style: [styles.reset, props.style], ref }); 23}); 24export const Caption = forwardRef((props, ref) => { 25 return createElement('caption', { ...props, style: [styles.reset, props.style], ref }); 26}); 27const styles = StyleSheet.create({ 28 reset: { 29 fontFamily: 'System', 30 padding: 0, 31 }, 32}); 33//# sourceMappingURL=Table.web.js.map