ObjectUIObjectUI
ComponentsOverlay

Tooltip

Contextual information on hover

Examples

Basic Tooltip

{
  "type": "tooltip",
  "content": "Helpful information",
  "children": [
    {
      "type": "button",
      "label": "Hover me"
    }
  ]
}

Schema

interface TooltipSchema {
  type: 'tooltip';
  content: string;
  children: SchemaNode;
  side?: 'top' | 'right' | 'bottom' | 'left';
}

On this page