pangolin/server/emails/templates/components/CopyCodeBox.tsx
2025-01-04 23:08:45 -05:00

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