import { Copy, CopyCheck } from "lucide-react"; interface CodeCopyButtonProps { onCopy: () => void; copied: boolean; label?: string; className?: string; } /** * Reusable copy button for code blocks with consistent styling * Designed to be absolutely positioned over code containers */ export function CodeCopyButton({ onCopy, copied, label = "Copy code", className = "", }: CodeCopyButtonProps) { return ( ); }