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