fosrl.pangolin/server/emails/templates/components/CopyCodeBox.tsx
2025-07-13 21:57:24 -07:00

16 lines
557 B
TypeScript

import React from "react";
export default function CopyCodeBox({ text }: { text: string }) {
return (
<div className="inline-block">
<div className="bg-gray-50 border border-gray-200 rounded-lg px-6 py-4 mx-auto">
<span className="text-2xl font-mono text-gray-900 tracking-wider font-semibold">
{text}
</span>
</div>
<p className="text-xs text-gray-500 mt-2">
Copy and paste this code when prompted
</p>
</div>
);
}