MCPcopy Create free account
hub / github.com/KartikLabhshetwar/foliox / TooltipProvider

Function TooltipProvider

components/ui/tooltip.tsx:9–20  ·  view source on GitHub ↗
({
  delayDuration = 0,
  ...props
}: React.ComponentProps<typeof TooltipPrimitive.Provider>)

Source from the content-addressed store, hash-verified

7import { cn } from "@/lib/utils"
8
9function 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
22function Tooltip({
23 ...props

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected