({
delayDuration = 0,
...props
}: React.ComponentProps<typeof TooltipPrimitive.Provider>)
| 7 | import { cn } from "@/lib/utils" |
| 8 | |
| 9 | function TooltipProvider({ |
| 10 | delayDuration = 0, |
| 11 | ...props |
| 12 | }: React.ComponentProps<typeof TooltipPrimitive.Provider>) { |
| 13 | return ( |
| 14 | <TooltipPrimitive.Provider |
| 15 | data-slot="tooltip-provider" |
| 16 | delayDuration={delayDuration} |
| 17 | {...props} |
| 18 | /> |
| 19 | ) |
| 20 | } |
| 21 | |
| 22 | function Tooltip({ |
| 23 | ...props |
nothing calls this directly
no outgoing calls
no test coverage detected