5 lines
		
	
	
		
			407 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			407 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| import React from "react";
 | |
| export function TooltipProvider({ children }){ return children; }
 | |
| export function Tooltip({ children }){ return <span className="relative">{children}</span>; }
 | |
| export function TooltipTrigger({ asChild, children }){ return children; }
 | |
| export function TooltipContent({ children }){ return <span className="ml-2 text-xs bg-black text-white px-2 py-1 rounded">{children}</span>; } |