import { ScrollArea } from "matcha-ui";
<ScrollArea className="h-32 w-full max-w-sm rounded-md border p-4">
<div className="space-y-2 text-sm">
{Array.from({ length: 12 }).map((_, i) => (
<p key={i}>Line {i + 1} of scrollable content</p>
))}
</div>
</ScrollArea>