You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

50 lines
1.1 KiB

"use client";
import { Button } from "@/components/ui/button";
import { Check, Copy } from "lucide-react";
import { useState } from "react";
import { useToast } from "@/hooks/use-toast";
interface CopyButtonProps {
value: string;
label: string;
className?: string;
}
export function CopyButton({ value, label, className }: CopyButtonProps) {
const [copied, setCopied] = useState(false);
const { toast } = useToast();
const copyToClipboard = async () => {
try {
await navigator.clipboard.writeText(value);
setCopied(true);
toast({
title: "Copied!",
description: `${label} copied to clipboard`,
});
setTimeout(() => setCopied(false), 2000);
} catch (err) {
toast({
title: "Failed to copy",
description: "Please try again",
variant: "destructive",
});
}
};
return (
<Button
variant="ghost"
size="icon"
className={className}
onClick={copyToClipboard}
>
{copied ? (
<Check className="h-4 w-4 text-green-500" />
) : (
<Copy className="h-4 w-4" />
)}
</Button>
);
}