Home Hover Card

The HoverCard component shows supplementary information when a user hovers over a specific element. It’s great for previewing content or providing helpful context without clicking.

Installation

npm
npx phpxui add Hover Card

Usage

use Lib\PHPXUI\{
  HoverCard,
  HoverCardContent,
  HoverCardTrigger,
}
<HoverCard>
  <HoverCardTrigger>Hover</HoverCardTrigger>
  <HoverCardContent>
    The React Framework – created and maintained by @vercel.
  </HoverCardContent>
</HoverCard>