mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
---
|
|
title: Scroll-area
|
|
description: Augments native scroll functionality for custom, cross-browser styling.
|
|
component: true
|
|
radix:
|
|
link: https://www.radix-ui.com/docs/primitives/components/scroll-area
|
|
api: https://www.radix-ui.com/docs/primitives/components/scroll-area#api-reference
|
|
---
|
|
|
|
<ComponentPreview name="scroll-area-demo" />
|
|
|
|
## Installation
|
|
|
|
<Steps>
|
|
|
|
### Command
|
|
|
|
```bash
|
|
npx shadcn-ui add scroll-area
|
|
```
|
|
|
|
### Usage
|
|
|
|
```tsx
|
|
import { ScrollArea } from "@/components/ui/scroll-area"
|
|
```
|
|
|
|
```tsx
|
|
<ScrollArea className="h-[200px] w-[350px] rounded-md border p-4">
|
|
Jokester began sneaking into the castle in the middle of the night and leaving
|
|
jokes all over the place: under the king's pillow, in his soup, even in the
|
|
royal toilet. The king was furious, but he couldn't seem to stop Jokester. And
|
|
then, one day, the people of the kingdom discovered that the jokes left by
|
|
Jokester were so funny that they couldn't help but laugh. And once they
|
|
started laughing, they couldn't stop.
|
|
</ScrollArea>
|
|
```
|
|
|
|
</Steps>
|