mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-27 07:38:57 +02:00
11 lines
323 B
TypeScript
11 lines
323 B
TypeScript
import React from "react";
|
|
|
|
export default function CopyCodeBox({ text }: { text: string }) {
|
|
return (
|
|
<div className="text-center rounded-lg bg-neutral-100 p-2">
|
|
<span className="text-2xl font-mono text-neutral-600 tracking-wide">
|
|
{text}
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|