import { Flex, FlexProps, Text, useColorModeValue } from '@chakra-ui/react' import * as React from 'react' export const CardBadge = (props: FlexProps) => { const { children, ...flexProps } = props return ( {children} ) }