Files
Frontend/src/app/components/copy-button.tsx
Liam 0f304b22b1
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m26s
updated search look for player and server page
2024-04-18 05:18:25 +01:00

40 lines
842 B
TypeScript

"use client";
import { useToast } from "@/common/use-toast";
import copy from "clipboard-copy";
import { ReactElement } from "react";
type CopyButtonProps = {
content: string;
children: React.ReactNode;
};
/**
* A button that copies the content to the clipboard
*
* @param props the properties for the button
* @returns the copy button
*/
export function CopyButton({ content, children }: CopyButtonProps): ReactElement {
const { toast } = useToast();
return (
<button
onClick={async () => {
await copy(content);
toast({
title: "Copied!",
description: (
<p>
Copied <span className="font-semibold">{content}</span> to your clipboard
</p>
),
duration: 5000,
});
}}
>
{children}
</button>
);
}