import React, { PropsWithChildren } from "react"; import { Box } from "@chakra-ui/react"; type Props = { props?: any; htmlContent?: string; }; export function HTMLCodeBlockView({ props, htmlContent }: PropsWithChildren) { return ( ); }