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