import { css } from '@emotion/react'; import { theme, borderRadius } from '@expo/styleguide'; import React, { PropsWithChildren } from 'react'; import { TableHeaders } from './TableHeaders'; import { TextAlign } from './types'; type TableProps = PropsWithChildren<{ headers?: string[]; headersAlign?: TextAlign[]; }>; export const Table = ({ children, headers = [], headersAlign }: TableProps) => (