All components

Scroll Area

Constrained region with custom scrollbars.

Full API on ui.shadcn.com

Default

Constrained height with themed scrollbar.

<ScrollArea className="h-64 w-64 rounded-md border border-border p-4">
  {tags.map((tag) => (
    <div key={tag} className="text-sm">{tag}</div>
  ))}
</ScrollArea>