{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "code-tabs",
  "dependencies": [],
  "devDependencies": [],
  "registryDependencies": [],
  "files": [
    {
      "path": "./registry/components/code/code-tabs.tsx",
      "content": "import { CodeTabs } from '@/components/ui/code-tabs';\nimport React from 'react';\n\nfunction CodeTabsCompponent() {\n  return (\n    <div className='w-full dark:bg-black bg-white p-4 rounded-lg'>\n      <CodeTabs\n        tabs={[\n          { id: 'npm', label: 'npm', code: 'npm i thing', lang: 'bash' },\n          { id: 'pnpm', label: 'pnpm', code: 'pnpm add thing', lang: 'bash' },\n          { id: 'yarn', label: 'yarn', code: 'yarn add thing', lang: 'bash' },\n        ]}\n        defaultValue='npm'\n      />\n      <CodeTabs\n        tabs={[\n          {\n            id: 'ui-layouts',\n            label: 'ui-layouts',\n            code: 'npx ui-layouts add code-tabs',\n            lang: 'bash',\n          },\n          {\n            id: 'shadcn',\n            label: 'shadcn',\n            code: 'npx shadcn@latest add code-tabs',\n            lang: 'bash',\n          },\n        ]}\n        isLogos={true}\n        defaultValue='ui-layouts'\n      />\n    </div>\n  );\n}\n\nexport default CodeTabsCompponent;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}