{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "quick-ref",
  "title": "Quick Reference Block",
  "description": "Compact key/value reference card.",
  "dependencies": [
    "@contentbit/core",
    "@contentbit/blocks",
    "@contentbit/react"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "src/blocks/quick-ref.tsx",
      "content": "import { quickRefBlock } from '@contentbit/blocks'\nimport { defineBlockComponent } from '@contentbit/react'\n\nexport const QuickRefBlock = defineBlockComponent(quickRefBlock, ({ node }) => {\n  const data = node.data\n  return (\n    <dl data-cb-styled className=\"bg-card my-6 space-y-2.5 rounded-lg border px-4 py-3.5\">\n      {data.rows.map((row, i) => (\n        <div key={i} className=\"flex items-baseline gap-3\">\n          <dt className=\"text-muted-foreground shrink-0 text-sm\">{row.key}</dt>\n          <span\n            className=\"border-foreground/15 min-w-4 flex-1 self-center border-b border-dotted\"\n            aria-hidden\n          />\n          <dd className=\"text-right text-sm font-medium tabular-nums\">{row.value}</dd>\n        </div>\n      ))}\n    </dl>\n  )\n})\n",
      "type": "registry:component",
      "target": "components/content-blocks/quick-ref.tsx"
    }
  ],
  "type": "registry:component"
}