()
| 19 | const totalChars = content.length; |
| 20 | |
| 21 | const onCopy = () => { |
| 22 | navigator.clipboard.writeText(content); |
| 23 | if (isCopied) return; |
| 24 | copyToClipboard(content); |
| 25 | }; |
| 26 | |
| 27 | return ( |
| 28 | <span className="inline-flex items-center gap-1 whitespace-nowrap"> |
nothing calls this directly
no test coverage detected