EEnterUI
DocsComponentsThemesDonation
Get Started
      • Sheet
      • HoverCard
      • ContextMenu
      • OverlayProvider
EnterUIDocsNavigation OverlaysOverlaysPanels and ContextHoverCard
Navigation OverlaysUpdated 6 May 2026

HoverCard

A subtle hover and focus information card.

HoverCard defines how EnterUI handles a subtle hover and focus information card, including default structure, accessible states, and token-driven styling.

#Default usage

Hover card

Use for non-critical supporting information.

Code
<HoverCard>
  <HoverCardTrigger asChild><Button variant="secondary">EnterUI</Button></HoverCardTrigger>
  <HoverCardContent>
    <div className="docs-preview-stack">
      <strong>EnterUI</strong>
      <span className="docs-preview-muted">Product components built on FroggDesign tokens.</span>
    </div>
  </HoverCardContent>
</HoverCard>

#Import

Code
import {
  Button,
  HoverCard,
  HoverCardContent,
  HoverCardTrigger,
} from "@froggdesign/enter-ui-react";

#Accessibility

HoverCard uses Radix behavior for pointer and focus interactions. Do not place critical instructions only inside hover content.

#API

  • HoverCardContent supports side, alignment, offset, and className.
  • HoverCardTrigger supports asChild.

#Styling

Every exported component accepts className when it renders an element. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.

PreviousSheet
NextContextMenu

On this page

  1. Default usage
  2. Import
  3. Accessibility
  4. API
  5. Styling