{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "gauge-chart-example",
  "type": "registry:example",
  "title": "Gauge Chart Example",
  "description": "Composable gauge-chart demo for Open in v0",
  "dependencies": [
    "@visx/shape@4.0.1-alpha.0",
    "motion"
  ],
  "registryDependencies": [
    "@bklit/gauge-chart"
  ],
  "files": [
    {
      "path": "registry/examples/gauge-chart.tsx",
      "content": "\"use client\"\n\n// In your app (monorepo/npm): import { Gauge } from \"@bklitui/ui/charts\"\nimport { Gauge } from \"@/components/charts\"\n\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        <Gauge\n  value={72}\n  centerValue={72}\n  totalNotches={40}\n  defaultLabel=\"Score\"\n  formatOptions={{ style: \"percent\" }}\n/>\n      </div>\n    </main>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/page.tsx"
    },
    {
      "path": "registry/examples/gauge-chart-index.ts",
      "content": "// biome-ignore-all lint/performance/noBarrelFile: v0 registry example barrel for shadcn install\nexport { Gauge } from \"./gauge\";\n",
      "type": "registry:lib",
      "target": "components/charts/index.ts"
    }
  ]
}