import { Flex } from '@chakra-ui/react'; import { useColorValue } from '~/context'; import type { TCardBody } from './types'; export const CardBody: React.FC = (props: TCardBody) => { const { onClick, ...rest } = props; const bg = useColorValue('white', 'dark.500'); const color = useColorValue('dark.500', 'white'); return ( ); };