import { css } from '@emotion/react'; import { spacing, theme } from '@expo/styleguide'; import React, { PropsWithChildren } from 'react'; import { TextAlign } from './types'; type CellProps = PropsWithChildren<{ fitContent?: boolean; textAlign?: TextAlign; colSpan?: number; }>; export const Cell = ({ children, colSpan, fitContent = false, textAlign = TextAlign.Left, }: CellProps) => (