"use client"; import * as React from "react"; import { Check, Copy } from "lucide-react"; import { Button, type ButtonProps } from "./button"; import { cn } from "@/lib/utils"; export function CopyButton({ value, className, label, size = "icon-sm", variant = "ghost", ...props }: { value: string; label?: string } & Omit) { const [copied, setCopied] = React.useState(false); return ( ); }