"use client"; import { Check, Copy } from "@phosphor-icons/react"; import { useState } from "react"; import { Button } from "@/components/ui/button"; export function CopyField({ label, value }: { label: string; value: string }) { const [copied, setCopied] = useState(false); return (
{value}