| 9 | } from "@/components/ui/tooltip" |
| 10 | |
| 11 | interface ButtonWithTooltipProps |
| 12 | extends React.ComponentProps<"button">, |
| 13 | VariantProps<typeof buttonVariants> { |
| 14 | tooltipContent: string |
| 15 | children: React.ReactNode |
| 16 | asChild?: boolean |
| 17 | } |
| 18 | |
| 19 | export function ButtonWithTooltip({ |
| 20 | tooltipContent, |
nothing calls this directly
no outgoing calls
no test coverage detected