{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "radio-group-disabled-example",
  "title": "Radio Group Disabled",
  "description": "radio-group-disabled-example",
  "registryDependencies": [
    "https://intentui.com/r/field",
    "https://intentui.com/r/radio"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/radio-group/radio-group-disabled-example.tsx",
      "content": "'use client'\n\nimport { Label } from '@/components/ui/field'\nimport { Radio, RadioField, RadioGroup } from '@/components/ui/radio'\n\nexport default function RadioGroupDisabledDemo() {\n  return (\n    <RadioGroup name=\"features\" isDisabled>\n      <Label>Features</Label>\n      <RadioField value=\"fs\">\n        <Radio>Font size: Small, Medium, Large</Radio>\n      </RadioField>\n      <RadioField value=\"dr\">\n        <Radio>Display resolution: 1080p, 1440p, 4K</Radio>\n      </RadioField>\n      <RadioField value=\"ss\">\n        <Radio>Sound settings: Mute, Low, Medium, High</Radio>\n      </RadioField>\n      <RadioField value=\"bi\">\n        <Radio>Background image: Default, Custom</Radio>\n      </RadioField>\n      <RadioField value=\"ks\">\n        <Radio>Keyboard shortcuts: Enabled, Disabled</Radio>\n      </RadioField>\n    </RadioGroup>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/radio-group-disabled-example/page.tsx"
    }
  ],
  "type": "registry:page"
}