1import { css } from '@emotion/react'; 2import { theme } from '@expo/styleguide'; 3import React, { PropsWithChildren } from 'react'; 4 5type TableHeadProps = PropsWithChildren<object>; 6 7export const TableHead = ({ children }: TableHeadProps) => ( 8 <thead css={tableHeadStyle}>{children}</thead> 9); 10 11const tableHeadStyle = css({ 12 backgroundColor: theme.background.secondary, 13}); 14