{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "funnel-chart-example",
  "type": "registry:example",
  "title": "Funnel Chart Example",
  "description": "Composable funnel-chart demo for Open in v0",
  "dependencies": [
    "@visx/shape@4.0.1-alpha.0",
    "motion"
  ],
  "registryDependencies": [
    "@bklit/funnel-chart"
  ],
  "files": [
    {
      "path": "registry/examples/funnel-chart.tsx",
      "content": "\"use client\"\n\n// In your app (monorepo/npm): import { FunnelChart } from \"@bklitui/ui/charts\"\nimport { FunnelChart } from \"@/components/charts\"\n\nconst funnelData = [\n  { label: \"Visitors\", value: 12000 },\n  { label: \"Signups\", value: 4800 },\n  { label: \"Activated\", value: 2100 },\n  { label: \"Paid\", value: 840 },\n];\n\nexport default function Component() {\n  return (\n    <main className=\"flex min-h-svh w-full items-center justify-center p-6 md:p-10\">\n      <div className=\"w-full max-w-3xl\">\n        <FunnelChart data={funnelData} aspectRatio=\"2 / 1\" />\n      </div>\n    </main>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/page.tsx"
    },
    {
      "path": "registry/examples/funnel-chart-index.ts",
      "content": "// biome-ignore-all lint/performance/noBarrelFile: v0 registry example barrel for shadcn install\nexport { FunnelChart } from \"./funnel-chart\";\n",
      "type": "registry:lib",
      "target": "components/charts/index.ts"
    }
  ]
}