{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-tabs-8",
  "description": "Tabs with icon only",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "@coss/tabs"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-tabs-8.tsx",
      "content": "import { HouseIcon, PanelsTopLeftIcon, SettingsIcon } from \"lucide-react\";\nimport { Tabs, TabsList, TabsPanel, TabsTab } from \"@/registry/default/ui/tabs\";\n\nexport default function Particle() {\n  return (\n    <Tabs className=\"items-center\" defaultValue=\"tab-1\">\n      <TabsList>\n        <TabsTab aria-label=\"Overview\" value=\"tab-1\">\n          <HouseIcon aria-hidden=\"true\" />\n        </TabsTab>\n        <TabsTab aria-label=\"Projects\" value=\"tab-2\">\n          <PanelsTopLeftIcon aria-hidden=\"true\" />\n        </TabsTab>\n        <TabsTab aria-label=\"Settings\" value=\"tab-3\">\n          <SettingsIcon aria-hidden=\"true\" />\n        </TabsTab>\n      </TabsList>\n      <TabsPanel value=\"tab-1\">\n        <p className=\"p-4 text-center text-muted-foreground text-xs\">\n          Overview content\n        </p>\n      </TabsPanel>\n      <TabsPanel value=\"tab-2\">\n        <p className=\"p-4 text-center text-muted-foreground text-xs\">\n          Projects content\n        </p>\n      </TabsPanel>\n      <TabsPanel value=\"tab-3\">\n        <p className=\"p-4 text-center text-muted-foreground text-xs\">\n          Settings content\n        </p>\n      </TabsPanel>\n    </Tabs>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "categories": [
    "tabs"
  ],
  "type": "registry:block"
}