import { Box } from '@chakra-ui/react'; import { useColorValue } from '~/context'; import type { BoxProps } from '@chakra-ui/react'; export const Table = (props: BoxProps) => ( ); export const TH = (props: BoxProps) => { const bg = useColorValue('blackAlpha.50', 'whiteAlpha.50'); return ; }; export const TD = (props: BoxProps) => { return ( ); };