Hover Card

A card that appears when a user hovers over an element.

@grizzly_codes

Anatomy

To set up the hover card correctly, you’ll need to understand its anatomy and how we name its parts.

Each part includes a data-part attribute to help identify them in the DOM.

Examples

Learn how to use the HoverCard component in your project. Let’s take a look at the most basic example:

Controlled HoverCard

The controlled HoverCard component provides an interface for managing the state of the hover card using the open and onOpenChange props:

Custom Positioning

The HoverCard component can be customized in its placement and distance from the trigger element through the positioning prop:

Render Prop Usage

The HoverCard component can also accept a render prop, giving the user more control over rendering behavior. This is useful for dynamically updating the trigger based on the state of the HoverCard:

API Reference

Root

PropTypeDefault
closeDelay
number
defaultOpen
boolean
dir
'rtl' | 'ltr'"ltr"
getRootNode
() => ShadowRoot | Node | Document
id
string
ids
Partial<{ trigger: string content: string positioner: string arrow: string }>
lazyMount
booleanfalse
onExitComplete
() => void
onOpenChange
(details: OpenChangeDetails) => void
open
boolean
openDelay
number
positioning
PositioningOptions
present
boolean
unmountOnExit
booleanfalse

Arrow

PropTypeDefault
asChild
boolean

ArrowTip

PropTypeDefault
asChild
boolean

Content

PropTypeDefault
asChild
boolean

Positioner

PropTypeDefault
asChild
boolean

Trigger

PropTypeDefault
asChild
boolean

Previous

File Upload

Next

Menu