import { Box, Divider, StackProps, HStack, Text, useColorModeValue } from '@chakra-ui/react' import * as React from 'react' export const DividerWithText = (props: StackProps) => { const {children, ...flexProps} = props return ( {children} ) }