import { Box } from '@chakra-ui/core';
import { useColorValue } from '~/context';
import type { BoxProps } from '@chakra-ui/core';
import type { ITableData } from './types';
export const Table = (props: BoxProps) => (
);
export const TableHeader = (props: BoxProps) => {
const bg = useColorValue('blackAlpha.50', 'whiteAlpha.50');
return ;
};
export const TableCell = (props: ITableData) => {
const { isHeader = false, ...rest } = props;
return (
);
};