import * as React from 'react'; import { Flex, useColorMode } from '@chakra-ui/core'; const bg = { light: 'white', dark: 'original.dark' }; const color = { light: 'original.dark', dark: 'white' }; export const CardBody = ({ onClick = () => false, children, ...props }) => { const { colorMode } = useColorMode(); return ( {children} ); };