Files
shadcn-ui/apps/www/content/docs/primitives/hover-card.mdx
2023-01-24 19:51:29 +04:00

53 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: Hover Card
description: For sighted users to preview content available behind a link.
radix:
link: https://www.radix-ui.com/docs/primitives/components/hover-card
api: https://www.radix-ui.com/docs/primitives/components/hover-card#api-reference
---
<ComponentExample src="/components/examples/hover-card/demo.tsx">
<HoverCardDemo />
</ComponentExample>
## Installation
1. Install the `@radix-ui/react-hover-card` component from radix-ui:
```bash
npm install @radix-ui/react-hover-card
```
2. Copy and paste the following code into your project.
<ComponentSource src="/components/ui/hover-card.tsx" />
<Callout>
This is the `<HoverCard />` primitive. You can place it in a file at
`components/ui/hover-card.tsx`.
</Callout>
## Usage
```tsx
import {
HoverCard,
HoverCardContent,
HoverCardTrigger,
} from "@/components/ui/hover-card"
```
```tsx
<HoverCard>
<HoverCardTrigger>Hover</HoverCardTrigger>
<HoverCardContent>
<div className="space-y-2">
<h4 className="text-sm font-semibold">@nextjs</h4>
<p className="text-sm">
The React Framework created and maintained by @vercel.
</p>
</div>
</HoverCardContent>
</HoverCard>
```