1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2021-12-19 23:30:09 -07:00

26 lines
565 B
TypeScript

import { Box } from '@chakra-ui/react';
import { useColorValue } from '~/hooks';
import type { BoxProps } from '@chakra-ui/react';
export const CodeBlock = (props: BoxProps): JSX.Element => {
const bg = useColorValue('blackAlpha.100', 'gray.800');
const color = useColorValue('black', 'white');
return (
<Box
p={3}
mt={5}
bg={bg}
as="pre"
border="1px"
rounded="md"
color={color}
fontSize="sm"
fontFamily="mono"
borderColor="inherit"
whiteSpace="pre-wrap"
{...props}
/>
);
};