| 9 | } from "~/components/ui/tooltip"; |
| 10 | |
| 11 | interface CopyButtonProps { |
| 12 | onClick: () => void; |
| 13 | } |
| 14 | |
| 15 | export function CopyButton({ onClick }: CopyButtonProps) { |
| 16 | const [copied, setCopied] = useState(false); |
nothing calls this directly
no outgoing calls
no test coverage detected