"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 ( ); }