@synergycodes/overflow-ui
Version:
A React library for creating node-based UIs and diagram-driven applications. Perfect for React Flow users, providing ready-to-use node templates and components that work seamlessly with React Flow's ecosystem.
11 lines (10 loc) • 427 B
TypeScript
import { TooltipVariant } from './types';
/**
* Tooltips Content is the component that pops out when the tooltip is open.
*/
export declare const TooltipContent: import('react').ForwardRefExoticComponent<Omit<import('react').HTMLProps<HTMLDivElement> & {
/**
* TooltipType determines the color type of the tooltip
*/
tooltipType?: TooltipVariant;
}, "ref"> & import('react').RefAttributes<HTMLDivElement>>;