import { cn } from "@prototype/lib/utils"; type CodeBlockProps = { children: string; compact?: boolean; className?: string; }; export function CodeBlock({ children, compact = false, className }: CodeBlockProps) { return (
{children}
);
}