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; }>; export const Cell = ({ children, fitContent = false, textAlign = TextAlign.Left }: CellProps) => (