import { Flex } from '@chakra-ui/react'; import type { FlexProps } from '@chakra-ui/react'; interface CardBodyProps extends Omit { onClick?: () => boolean; } export const CardBody = (props: CardBodyProps): JSX.Element => { const { onClick, ...rest } = props; return ( ); };