{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-field-14",
  "description": "Field with radio group",
  "registryDependencies": [
    "@coss/field",
    "@coss/fieldset",
    "@coss/radio-group"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-field-14.tsx",
      "content": "\"use client\";\n\nimport {\n  Field,\n  FieldDescription,\n  FieldItem,\n  FieldLabel,\n} from \"@/registry/default/ui/field\";\nimport { Fieldset, FieldsetLegend } from \"@/registry/default/ui/fieldset\";\nimport { Radio, RadioGroup } from \"@/registry/default/ui/radio-group\";\n\nexport default function Particle() {\n  return (\n    <Field\n      className=\"gap-4\"\n      name=\"plan\"\n      render={(props) => <Fieldset {...props} />}\n    >\n      <FieldsetLegend className=\"font-medium text-sm\">\n        Choose Plan\n      </FieldsetLegend>\n      <RadioGroup defaultValue=\"free\">\n        <FieldItem>\n          <FieldLabel>\n            <Radio value=\"free\" /> Free\n          </FieldLabel>\n        </FieldItem>\n        <FieldItem>\n          <FieldLabel>\n            <Radio value=\"pro\" /> Pro\n          </FieldLabel>\n        </FieldItem>\n        <FieldItem>\n          <FieldLabel>\n            <Radio value=\"enterprise\" /> Enterprise\n          </FieldLabel>\n        </FieldItem>\n      </RadioGroup>\n      <FieldDescription>Select the plan that fits your needs.</FieldDescription>\n    </Field>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "meta": {
    "className": "**:data-[slot=preview]:w-full **:data-[slot=preview]:max-w-64"
  },
  "categories": [
    "field",
    "fieldset",
    "label",
    "radio group"
  ],
  "type": "registry:block"
}