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>
|
|
);
|
|
}
|