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