{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "tabs-disabled-example",
  "title": "Tabs Disabled",
  "description": "tabs-disabled-example",
  "registryDependencies": [
    "https://intentui.com/r/tabs"
  ],
  "files": [
    {
      "path": "src/components/examples/navigation/tabs/tabs-disabled-example.tsx",
      "content": "'use client'\n\nimport { Tab, TabList, TabPanel, Tabs } from '@/components/ui/tabs'\n\nexport default function TabsDisabledDemo() {\n  return (\n    <Tabs disabledKeys={['c', 'a']} aria-label=\"Services\">\n      <TabList>\n        <Tab id=\"o\">Overview</Tab>\n        <Tab id=\"c\">Contact</Tab>\n        <Tab id=\"a\">About Us</Tab>\n      </TabList>\n      <TabPanel id=\"o\">Overview</TabPanel>\n      <TabPanel id=\"c\">Contact</TabPanel>\n      <TabPanel id=\"a\">About Us</TabPanel>\n    </Tabs>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/tabs-disabled-example/page.tsx"
    }
  ],
  "type": "registry:page"
}