{
  "name": "scroller-hidden-demo",
  "type": "registry:example",
  "registryDependencies": [
    "scroller"
  ],
  "files": [
    {
      "path": "examples/scroller-hidden-demo.tsx",
      "type": "registry:example",
      "content": "import { Scroller } from \"@/registry/bases/radix/ui/scroller\";\n\nexport default function ScrollerHiddenDemo() {\n  return (\n    <Scroller className=\"flex h-80 w-full flex-col gap-2.5 p-4\" hideScrollbar>\n      {Array.from({ length: 20 }).map((_, index) => (\n        <div\n          key={index}\n          className=\"flex h-40 flex-col rounded-md bg-accent p-4\"\n        >\n          <div className=\"text-lg font-medium\">Card {index + 1}</div>\n          <span className=\"text-sm text-muted-foreground\">\n            Scroll smoothly without visible scrollbars\n          </span>\n        </div>\n      ))}\n    </Scroller>\n  );\n}\n",
      "target": ""
    }
  ]
}