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.
Use for non-critical supporting information.
<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 {
Button,
HoverCard,
HoverCardContent,
HoverCardTrigger,
} from "@froggdesign/enter-ui-react";HoverCard uses Radix behavior for pointer and focus interactions. Do not place critical instructions only inside hover content.
HoverCardContent supports side, alignment, offset, and className.HoverCardTrigger supports asChild.Every exported component accepts className when it renders an element. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.