File size: 298 Bytes
286e272
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
interface CodeBlockProps {
  code: string;
  lang?: string;
}

export function CodeBlock({ code }: CodeBlockProps) {
  return (
    <pre className="mt-3 p-3 text-xs rounded-lg bg-fd-muted text-fd-foreground overflow-x-auto font-mono whitespace-pre-wrap break-words">
      {code}
    </pre>
  );
}