| 36 | }) |
| 37 | |
| 38 | export interface TooltipProps extends VariantProps<typeof tooltipContent>, RadixTooltip.TooltipProps { |
| 39 | explainer: React.ReactElement | string |
| 40 | children: React.ReactElement |
| 41 | className?: string |
| 42 | withArrow?: boolean |
| 43 | side?: "top" | "right" | "bottom" | "left" |
| 44 | } |
| 45 | |
| 46 | export function Tooltip({ |
| 47 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected