import { css } from '@emotion/react'; import React, { PropsWithChildren } from 'react'; import { TextAlign } from './types'; type CellProps = PropsWithChildren<{ textAlign?: TextAlign; }>; export const Cell = ({ children, textAlign = TextAlign.Left }: CellProps) => (