import { css } from '@emotion/react'; import { theme } from '@expo/styleguide'; import { spacing } from '@expo/styleguide-base'; import type { PropsWithChildren } from 'react'; import { TextAlign } from './types'; import { convertAlign } from './utils'; type CellProps = PropsWithChildren<{ fitContent?: boolean; align?: TextAlign | 'char'; colSpan?: number; }>; export const Cell = ({ children, colSpan, fitContent = false, align = 'left' }: CellProps) => (