ui
Scroll Area
Augments native scroll functionality for custom, cross-browser styling.
1. Import
Import the scroll area component from the design system.
import { ScrollArea } from "@/design-system/components/ui/scroll-area"2. Props
ScrollArea component props.
| Prop | Type | Default |
|---|---|---|
| className | string | -- |
3. Usages
Common scroll area patterns.
import { ScrollArea } from "@/design-system/components/ui/scroll-area";
import { Separator } from "@/design-system/components/ui/separator";
const tags = Array.from({ length: 50 }).map(
(_, i, a) => `v1.2.0-beta.${a.length - i}`
);
export function Example() {
return (
<ScrollArea className="h-72 w-48 rounded-md border">
<div className="p-4">
<h4 className="mb-4 text-sm font-medium leading-none">Tags</h4>
{tags.map((tag) => (
<React.Fragment key={tag}>
<div className="text-sm">
{tag}
</div>
<Separator className="my-2" />
</React.Fragment>
))}
</div>
</ScrollArea>
);
}