import { css } from '@emotion/react'; import { theme } from '@expo/styleguide'; import React, { PropsWithChildren } from 'react'; type TableHeadProps = PropsWithChildren; export const TableHead = ({ children }: TableHeadProps) => ( {children} ); const tableHeadStyle = css({ backgroundColor: theme.background.secondary, });