{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "scroll-area-example",
  "title": "Scroll Area",
  "description": "scroll-area-example",
  "registryDependencies": [
    "https://intentui.com/r/scroll-area"
  ],
  "files": [
    {
      "path": "src/components/examples/controls/scroll-area/scroll-area-example.tsx",
      "content": "import { ScrollArea } from '@/components/ui/scroll-area'\n\nexport default function ScrollAreaDemo() {\n  return (\n    <ScrollArea className=\"*:max-h-60\">\n      <div className=\"flex max-w-xl flex-col gap-y-3\">\n        {Array.from({ length: 120 }).map((_, i) => {\n          const width = `${Math.floor(Math.random() * (100 - 40) + 40)}%`\n          return (\n            <i key={i} aria-hidden className=\"h-2 rounded-[2.5px] bg-fg/20\" style={{ width }} />\n          )\n        })}\n      </div>\n    </ScrollArea>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/scroll-area-example/page.tsx"
    }
  ],
  "type": "registry:page"
}