| 8 | import { useEffect } from "react" |
| 9 | |
| 10 | interface CopyButtonProps |
| 11 | extends React.ComponentProps<"button">, |
| 12 | VariantProps<typeof buttonVariants> { |
| 13 | value: string |
| 14 | src?: string |
| 15 | } |
| 16 | |
| 17 | export function CopyButton({ |
| 18 | value, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…