{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "bar-list-example",
  "title": "Bar List",
  "description": "bar-list-example",
  "registryDependencies": [
    "https://intentui.com/r/bar-list",
    "https://intentui.com/r/card"
  ],
  "files": [
    {
      "path": "src/components/examples/visualizations/bar-list/bar-list-example.tsx",
      "content": "import { BarList } from '@/components/ui/bar-list'\nimport { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'\n\nexport default function BarListDemo() {\n  return (\n    <Card>\n      <CardHeader>\n        <CardTitle>Page visits by section</CardTitle>\n        <CardDescription>Unique visits for the most viewed docs pages this month</CardDescription>\n      </CardHeader>\n      <CardContent>\n        <BarList\n          data={[\n            {\n              name: 'Documentation',\n              value: 1200,\n              href: '/installation',\n            },\n            { name: 'Components', value: 980, href: '/components' },\n            { name: 'Themes', value: 760, href: 'https://design.intentui.com/themes' },\n            { name: 'Colors', value: 430, href: '/colors' },\n            { name: 'Icons', value: 150, href: '/icons' },\n            {\n              name: 'Templates',\n              value: 150,\n              href: 'https://irsyad.co',\n            },\n            {\n              name: 'Plus',\n              value: 150,\n              href: 'https://dub.sh/designiui',\n            },\n          ]}\n          valueFormatter={(value) => `${value} visits`}\n        />\n      </CardContent>\n    </Card>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/bar-list-example/page.tsx"
    }
  ],
  "type": "registry:page"
}