UI LibraryUI Library
Guide
Components
Styling
Repo
Guide
Components
Styling
Repo
  • Guide

    • Introduction
    • Getting Started
  • Components

    • CataUiAccordion
    • CataUiAccordionItem
    • CataUiAlert
    • CataUiAnchorMenu
    • CataUiBadge
    • CataUiButton
    • CataUiCollapse
    • CataUiDraggable
    • CataUiDropdown
    • CataUiDropover
    • CataUiFileTree
    • CataUiIcon
    • CataUiIconSwitch
    • CataUiInput
    • CataUiInputCheckbox
    • CataUiInputColor
    • CataUiInputDate
    • CataUiInputGroup
    • CataUiInputRadio
    • CataUiInputSearch
    • CataUiInputSelect
    • CataUiMasonry
    • CataUiMasonryTile
    • CataUiLogo
    • CataUiModal
    • CataUiPaginate
    • CataUiProgress
    • CataUiSpinner
    • CataUiStatusLabel
    • CataUiSwitch
    • CataUiTable
    • CataUiTableAG
    • CataUiTableFooter
    • CataUiTabs
    • CataUiTabSwitch
    • CataUiTooltip
  • Styling

    • Colors
    • Icons
    • Typography
    • Utils

CataUiTooltip

A tooltip component that displays informational text when hovered or focused. Tooltips are useful for providing additional context or explanations without cluttering the interface.

Default tooltip (top placement)

Different placements

Custom delay (100ms)

Basic Usage

<CataUiTooltip label="This is a helpful tooltip" />

Placement Options

<CataUiTooltip 
  label="Tooltip positioned below" 
  placement="bottom" />

<CataUiTooltip 
  label="Tooltip positioned to the right" 
  placement="right" />

Custom Delay

<CataUiTooltip 
  label="This tooltip appears faster on hover" 
  :delay="100" />

Props

PropDescriptionTypeDefaultRequiredOptions
delayDuration in milliseconds before the tooltip appears when hoveredNumber250false
labelContent text to display in the tooltipStringtrue
placementPositioning of the tooltip relative to the trigger buttonStringtopfalsetop, top-start, top-end, bottom, bottom-start, bottom-end, left, left-start, left-end, right, right-start, right-end
Prev
CataUiTabSwitch