fix: update copy button to use the proper cursor style when hovering

This commit is contained in:
2026-05-29 19:00:42 -07:00
parent 9222292b9f
commit a1310a774a
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export default function CopyButton({
value,
label,
copiedLabel = "Copied!",
className = "rounded-md p-1 text-neutral-600 transition-colors duration-200 hover:text-neutral-200",
className = "rounded-md p-1 text-neutral-600 transition-colors duration-200 hover:text-neutral-200 cursor-pointer",
children,
}: CopyButtonProps) {
const [copied, setCopied] = useState(false);