"use client"; import { cn } from "@app/lib/cn"; import { Check, Copy } from "lucide-react"; import { useTranslations } from "next-intl"; import { useState } from "react"; type LauncherCopyIconProps = { text: string; className?: string; }; export function LauncherCopyIcon({ text, className }: LauncherCopyIconProps) { const t = useTranslations(); const [copied, setCopied] = useState(false); if (!text) { return null; } return ( ); }