| 7 | import { Button, ButtonProps } from '@/components/ui/button' |
| 8 | |
| 9 | interface CopyButtonProps extends ButtonProps { |
| 10 | value: string |
| 11 | src?: string |
| 12 | event?: Event['name'] |
| 13 | } |
| 14 | |
| 15 | export async function copyToClipboardWithMeta(value: string, event?: Event) { |
| 16 | navigator.clipboard.writeText(value) |
nothing calls this directly
no outgoing calls
no test coverage detected