Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Box, HStack, Text } from "@chakra-ui/react"
import type { CodeLang } from "./code-lang-icon"
import { CodeLangIcon } from "./code-lang-icon"
interface CodeBlockProps {
title?: string
lang?: CodeLang
children: React.ReactNode
[key: string]: any
}
export const CodeBlock = (props: CodeBlockProps) => {
const { title, lang, children, ...rest } = props
return (
<Box
{...rest}
data-lang={lang}
spaceY="0!"
marginY="1.6em"
borderWidth="1px"
rounded="10px"
borderColor="gray.800"
css={{
"& pre.shiki": {
roundedTop: "0!",
roundedBottom: "lg!",
shadow: "none!",
},
}}
>
<HStack
bg="#1E1E1E"
px="4"
py="3"
color="gray.300"
roundedTop="lg"
borderBottomWidth="1px"
borderBottomColor="gray.800"
>
{lang && <CodeLangIcon type={lang} />}
<Text fontSize="xs" fontFamily="mono" fontWeight="semibold">
{title}
</Text>
</HStack>
{children}
</Box>
)
}