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 HeaderCellProps = PropsWithChildren<{ align?: TextAlign | 'char'; }>; export const HeaderCell = ({ children, align = 'left' }: HeaderCellProps) => (