pnpm dlx shadcn@latest add https://ui.saturation.io/r/scroll-area.jsonimport { ScrollArea } from "@/components/ui/scroll-area"<ScrollArea className="h-72 w-48 rounded-md border">
<div className="p-4">
{items.map((item) => (
<div key={item}>{item}</div>
))}
</div>
</ScrollArea>| Prop | Type | Default | Description |
|---|---|---|---|
className | string | — | Additional CSS classes. |
children | React.ReactNode | — | Content to render inside the scroll area. |
Automatically rendered inside ScrollArea. Provides custom styled scrollbar.
| Prop | Type | Default | Description |
|---|---|---|---|
orientation | "vertical" | "horizontal" | "vertical" | The orientation of the scrollbar. |