import { ClipboardCheckIcon, ClipboardIcon } from "lucide-react"; import { useCopy } from "~/hooks/useCopy"; import { cn } from "~/utils/cn"; type CopyTextLinkProps = { value: string; className?: string; }; export function CopyTextLink({ value, className }: CopyTextLinkProps) { const { copy, copied } = useCopy(value); return ( ); }