import { View, Text } from 'react-native'; import React, { isValidElement } from 'react'; import type { TableCellProps } from './types'; const TableCell = (viewProps: TableCellProps) => { const { data, width, align, isLastCell, borderColor = '#333', borderWidth = 1, textStyle, } = viewProps; return ( {isValidElement(data) ? ( data ) : ( {data} )} ); }; export default TableCell;