import { Button } from "@/examples/base/ui/button" import { HoverCard, HoverCardContent, HoverCardTrigger, } from "@/examples/base/ui/hover-card" const HOVER_CARD_SIDES = ["left", "top", "bottom", "right"] as const export function HoverCardSides() { return (
{HOVER_CARD_SIDES.map((side) => ( } > {side}

Hover Card

This hover card appears on the {side} side of the trigger.

))}
) }