/* biome-ignore-all lint/suspicious/noArrayIndexKey: not a concern */ import { usePrismTheme } from "@docusaurus/theme-common"; import { Highlight, type HighlightProps } from "prism-react-renderer"; export function HighlightWithTheme(props: Partial) { const prismTheme = usePrismTheme(); return ( {({ className, style, tokens, getTokenProps }) => (
          {tokens.map((line, i) => {
            return (
              
{line.map((token, key) => { return ; })}
); })}
)}
); }