| 15 | } from './ui/dropdown-menu' |
| 16 | |
| 17 | interface CopyButtonProps extends React.HTMLAttributes<HTMLButtonElement> { |
| 18 | value: string |
| 19 | src?: string |
| 20 | } |
| 21 | |
| 22 | export async function copyToClipboardWithMeta(value: string) { |
| 23 | window && window.isSecureContext && navigator.clipboard.writeText(value) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…