import React from 'react';
import { StyleSheet } from 'react-native';
import { em } from '../css/units';
import { TableText, TableTextProps } from '../primitives/Table';
import Text, { TextProps } from '../primitives/Text';
import View, { ViewProps } from '../primitives/View';
export function Table(props: ViewProps) {
return ;
}
export function THead(props: ViewProps) {
return ;
}
export function TBody(props: ViewProps) {
return ;
}
export function TFoot(props: ViewProps) {
return ;
}
export function TH(props: TableTextProps) {
return ;
}
export function TR(props: ViewProps) {
return ;
}
export function TD(props: TableTextProps) {
return ;
}
export function Caption(props: TextProps) {
return ;
}
const styles = StyleSheet.create({
caption: {
textAlign: 'center',
fontSize: em(1) as number,
},
th: {
textAlign: 'center',
fontWeight: 'bold',
flex: 1,
fontSize: em(1) as number,
},
tr: {
flexDirection: 'row',
},
td: {
flex: 1,
fontSize: em(1) as number,
},
});