MCPcopy Create free account
hub / github.com/ResearAI/AutoFigure / TooltipProvider

Function TooltipProvider

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected