mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
42 lines
724 B
Plaintext
42 lines
724 B
Plaintext
---
|
||
title: Hover Card
|
||
description: For sighted users to preview content available behind a link.
|
||
component: true
|
||
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
|
||
---
|
||
|
||
<ComponentPreview name="hover-card-demo" />
|
||
|
||
## Installation
|
||
|
||
<Steps>
|
||
|
||
### Command
|
||
|
||
```bash
|
||
npx shadcn-ui add hover-card
|
||
```
|
||
|
||
### Usage
|
||
|
||
```tsx
|
||
import {
|
||
HoverCard,
|
||
HoverCardContent,
|
||
HoverCardTrigger,
|
||
} from "@/components/ui/hover-card"
|
||
```
|
||
|
||
```tsx
|
||
<HoverCard>
|
||
<HoverCardTrigger>Hover</HoverCardTrigger>
|
||
<HoverCardContent>
|
||
The React Framework – created and maintained by @vercel.
|
||
</HoverCardContent>
|
||
</HoverCard>
|
||
```
|
||
|
||
</Steps>
|