This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
hover-card
agileflow-projectquestorg/hover-cardRemovedComponent
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/projectquestorg/AgileFlow/main/apps/docs/public/r/styles/radix-nova/hover-card.jsonSource
1"use client"23import * as React from "react"4import { HoverCard as HoverCardPrimitive } from "radix-ui"56import { cn } from "@/registry/bases/radix/lib/utils"78function HoverCard({9 ...props10}: React.ComponentProps<typeof HoverCardPrimitive.Root>) {11 return <HoverCardPrimitive.Root data-slot="hover-card" {...props} />12}1314function HoverCardTrigger({15 ...props16}: React.ComponentProps<typeof HoverCardPrimitive.Trigger>) {17 return (18 <HoverCardPrimitive.Trigger data-slot="hover-card-trigger" {...props} />19 )20}2122function HoverCardContent({23 className,24 align = "center",25 sideOffset = 4,26 ...props27}: React.ComponentProps<typeof HoverCardPrimitive.Content>) {28 return (29 <HoverCardPrimitive.Portal data-slot="hover-card-portal">30 <HoverCardPrimitive.Content31 data-slot="hover-card-content"32 align={align}33 sideOffset={sideOffset}34 className={cn(35 "data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 bg-popover text-popover-foreground w-64 rounded-lg p-2.5 text-sm shadow-md ring-1 duration-100 z-50 origin-(--radix-hover-card-content-transform-origin) outline-hidden",36 className37 )}38 {...props}39 />40 </HoverCardPrimitive.Portal>41 )42}4344export { HoverCard, HoverCardTrigger, HoverCardContent }
