import { css } from '@emotion/react'; import { spacing, theme, typography } from '@expo/styleguide'; import React, { PropsWithChildren } from 'react'; import { TextAlign } from './types'; type HeaderCellProps = PropsWithChildren<{ textAlign?: TextAlign; }>; export const HeaderCell = ({ children, textAlign = TextAlign.Left }: HeaderCellProps) => (