{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "switch-disabled",
  "type": "registry:example",
  "title": "Switch Disabled",
  "registryDependencies": [
    "https://seamui.dev/r/switch.json"
  ],
  "files": [
    {
      "path": "registry/seam/examples/switch-disabled.tsx",
      "content": "import { Switch } from \"@/registry/seam/ui/switch\"\n\nexport default function SwitchDisabled() {\n  return (\n    <div className=\"flex items-center gap-4\">\n      <label className=\"flex items-center gap-2 text-sm opacity-50\">\n        <Switch disabled />\n        Off\n      </label>\n      <label className=\"flex items-center gap-2 text-sm opacity-50\">\n        <Switch disabled defaultChecked />\n        On\n      </label>\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ]
}