import { Box } from '@chakra-ui/react'; import { useColorValue } from '~/context'; import type { BoxProps } from '@chakra-ui/react'; export const CodeBlock = (props: BoxProps) => { const bg = useColorValue('blackAlpha.100', 'gray.800'); const color = useColorValue('black', 'white'); return ( ); };