{
  "name": "qr-code-customization-demo",
  "type": "registry:example",
  "registryDependencies": [
    "qr-code"
  ],
  "files": [
    {
      "path": "examples/qr-code-customization-demo.tsx",
      "type": "registry:example",
      "content": "import {\n  QRCode,\n  QRCodeCanvas,\n  QRCodeSkeleton,\n} from \"@/registry/bases/radix/ui/qr-code\";\n\nexport default function QRCodeCustomizationDemo() {\n  return (\n    <div className=\"grid grid-cols-1 gap-6 sm:grid-cols-2\">\n      <div className=\"flex flex-col items-center gap-2\">\n        <QRCode\n          value=\"https://diceui.com\"\n          size={150}\n          foregroundColor=\"#3b82f6\"\n          backgroundColor=\"#f1f5f9\"\n        >\n          <QRCodeCanvas />\n          <QRCodeSkeleton />\n        </QRCode>\n        <p className=\"text-sm text-muted-foreground\">Custom Colors</p>\n      </div>\n\n      <div className=\"flex flex-col items-center gap-2\">\n        <QRCode\n          value=\"https://diceui.com\"\n          size={150}\n          level=\"H\"\n          foregroundColor=\"#dc2626\"\n        >\n          <QRCodeCanvas />\n          <QRCodeSkeleton />\n        </QRCode>\n        <p className=\"text-sm text-muted-foreground\">High Error Correction</p>\n      </div>\n    </div>\n  );\n}\n",
      "target": ""
    }
  ]
}