Files
shadcn-ui/apps/v4/examples/base/hover-card-in-dialog.tsx
2026-01-14 09:25:14 +04:00

53 lines
1.5 KiB
TypeScript

import { Button } from "@/examples/base/ui/button"
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/examples/base/ui/dialog"
import {
HoverCard,
HoverCardContent,
HoverCardTrigger,
} from "@/examples/base/ui/hover-card"
export function HoverCardInDialog() {
return (
<>
<Dialog>
<DialogTrigger render={<Button variant="outline" />}>
Open Dialog
</DialogTrigger>
<DialogContent>
<DialogHeader>
<DialogTitle>Hover Card Example</DialogTitle>
<DialogDescription>
Hover over the button below to see the hover card.
</DialogDescription>
</DialogHeader>
<HoverCard>
<HoverCardTrigger
delay={100}
closeDelay={100}
render={<Button variant="outline" className="w-fit" />}
>
Hover me
</HoverCardTrigger>
<HoverCardContent>
<div className="style-lyra:gap-1 style-nova:gap-1.5 style-vega:gap-2 style-maia:gap-2 style-mira:gap-1 flex flex-col">
<h4 className="font-medium">Hover Card</h4>
<p>
This hover card appears inside a dialog. Hover over the button
to see it.
</p>
</div>
</HoverCardContent>
</HoverCard>
</DialogContent>
</Dialog>
</>
)
}