"use client"; import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import { Copy } from "lucide-react"; export function CopyButton({ className, ...props }: { text: string; className?: string; }) { return ( ); }