import { css } from '@emotion/react'; import { theme } from '@expo/styleguide'; import React, { PropsWithChildren } from 'react'; type RowProps = PropsWithChildren<{ subtle?: boolean; }>; export const Row = ({ children, subtle }: RowProps) => ( {children} ); const tableRowStyle = css({ '&:nth-of-type(2n)': { backgroundColor: theme.background.subtle, summary: { backgroundColor: theme.background.element, }, }, }); const subtleStyle = css({ opacity: '0.5', });