import React from 'react' import { cn } from 'ui' import CodeBlock from './CodeBlock/CodeBlock' import type { LANG } from './CodeBlock/CodeBlock' interface Props { code: any lang?: LANG className?: string style?: React.CSSProperties showLineNumbers?: boolean } const CodeWindow = ({ code, lang, style, className, showLineNumbers }: Props) => { return (