NexoreUI
InstallationComponentsNexore MakeGitHub
GitHub
NexoreUIv0.1.2

Getting Started

Installation

Components

ButtonInputCardBadgeAlertAvatarAccordionModal / DialogTooltipTabsProgressSkeletonSliderSwitchRatingCommandTableStepperScroll AreaFile UploadNavigationIconsDock

Pro

ChartsData DisplayDark Mode ToolkitCommerceCookie ConsentSocialPremium EffectsLoaders

Animated

MarqueeNumber TickerAnimated NumberTyping AnimationBlur FadeBox RevealFile Preview CardImage Compare
MIT License
DocsTooltip

Tooltip

Contextual information on hover or focus.

Next ComponentTabs

Tooltips

Popup information displayed on hover or focus.

When to use which variant

top / bottomStandard text popups next to form labels, icon-only buttons, active stats
left / rightSide navigation bar items, table actions, compact layout toolbars
rich contentDetailed descriptions with headers, list summaries, or custom HTML structures
delay durationMuted helper copy that shouldn't display immediately to power users

Interactive Playground

Tooltip Playground
nexoreui
Live Preview
Props Panel
text

The information text displayed inside the popup window

select

Position of the tooltip relative to the trigger button

select

Theme styles: default, dark, or light

Generated Code
Open in GitHub
import { Tooltip, Button } from "nexoreui"

<Tooltip content="Tooltip text">
  <Button variant="outline">Hover me</Button>
</Tooltip>

Simple Tooltip (Top)

component.tsx

Simple Tooltip (Bottom)

component.tsx

Simple Tooltip (Left)

component.tsx

Simple Tooltip (Right)

component.tsx

Rich Tooltip

component.tsx
Page 1 of 3

API Reference (Props)

PropTypeDefaultDescription
content*React.ReactNode—The content (text or elements) displayed inside the tooltip bubble.
side"top" | "bottom" | "left" | "right""top"Display position placement relative to the trigger element.
variant"default" | "dark" | "light""default"Color theme style variant.
delayDurationnumber700Time delay in milliseconds before the tooltip appears.
sideOffsetnumber4Offset distance from the trigger element in pixels.

♿ Accessibility (a11y)

  • Keyboard & Focus: Opens when the trigger receives keyboard focus, closing automatically when blurred or when the Escape key is pressed.
  • ARIA mapping: Uses Radix UI Tooltip primitives, ensuring correct role="tooltip" attributes are linked to targets.