{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-428",
  "type": "registry:component",
  "title": "Comp 428",
  "description": "Comp 428",
  "files": [
    {
      "path": "registry/ui-basic/comp-428.tsx",
      "content": "import { Tabs, TabsContent, TabsList, TabsTrigger } from \"@/components/ui/tabs\";\n\nexport default function Component() {\n\treturn (\n\t\t<Tabs defaultValue=\"tab-1\" className=\"items-center\">\n\t\t\t<TabsList className=\"gap-1 bg-transparent\">\n\t\t\t\t<TabsTrigger\n\t\t\t\t\tvalue=\"tab-1\"\n\t\t\t\t\tclassName=\"data-[state=active]:bg-primary data-[state=active]:text-primary-foreground rounded-full data-[state=active]:shadow-none\"\n\t\t\t\t>\n\t\t\t\t\tTab 1\n\t\t\t\t</TabsTrigger>\n\t\t\t\t<TabsTrigger\n\t\t\t\t\tvalue=\"tab-2\"\n\t\t\t\t\tclassName=\"data-[state=active]:bg-primary data-[state=active]:text-primary-foreground rounded-full data-[state=active]:shadow-none\"\n\t\t\t\t>\n\t\t\t\t\tTab 2\n\t\t\t\t</TabsTrigger>\n\t\t\t\t<TabsTrigger\n\t\t\t\t\tvalue=\"tab-3\"\n\t\t\t\t\tclassName=\"data-[state=active]:bg-primary data-[state=active]:text-primary-foreground rounded-full data-[state=active]:shadow-none\"\n\t\t\t\t>\n\t\t\t\t\tTab 3\n\t\t\t\t</TabsTrigger>\n\t\t\t</TabsList>\n\t\t\t<TabsContent value=\"tab-1\">\n\t\t\t\t<p className=\"text-muted-foreground p-4 text-center text-xs\">\n\t\t\t\t\tContent for Tab 1\n\t\t\t\t</p>\n\t\t\t</TabsContent>\n\t\t\t<TabsContent value=\"tab-2\">\n\t\t\t\t<p className=\"text-muted-foreground p-4 text-center text-xs\">\n\t\t\t\t\tContent for Tab 2\n\t\t\t\t</p>\n\t\t\t</TabsContent>\n\t\t\t<TabsContent value=\"tab-3\">\n\t\t\t\t<p className=\"text-muted-foreground p-4 text-center text-xs\">\n\t\t\t\t\tContent for Tab 3\n\t\t\t\t</p>\n\t\t\t</TabsContent>\n\t\t</Tabs>\n\t);\n}\n",
      "type": "registry:ui"
    },
    {
      "path": "components/ui/tabs.tsx",
      "content": "\"use client\";\n\nimport React from \"react\";\n\nimport { cn } from \"@/registry/utilities/cn\";\nimport * as TabsPrimitive from \"@radix-ui/react-tabs\";\n\nconst Tabs = TabsPrimitive.Root;\n\nconst TabsList = React.forwardRef<\n\tReact.ElementRef<typeof TabsPrimitive.List>,\n\tReact.ComponentPropsWithoutRef<typeof TabsPrimitive.List>\n>(({ className, ...props }, ref) => (\n\t<TabsPrimitive.List\n\t\tref={ref}\n\t\tclassName={cn(\n\t\t\t\"inline-flex h-10 items-center justify-center rounded-md bg-muted p-1 text-muted-foreground\",\n\t\t\tclassName\n\t\t)}\n\t\t{...props}\n\t/>\n));\nTabsList.displayName = TabsPrimitive.List.displayName;\n\nconst TabsTrigger = React.forwardRef<\n\tReact.ElementRef<typeof TabsPrimitive.Trigger>,\n\tReact.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger>\n>(({ className, ...props }, ref) => (\n\t<TabsPrimitive.Trigger\n\t\tref={ref}\n\t\tclassName={cn(\n\t\t\t\"inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow-xs\",\n\t\t\tclassName\n\t\t)}\n\t\t{...props}\n\t/>\n));\nTabsTrigger.displayName = TabsPrimitive.Trigger.displayName;\n\nconst TabsContent = React.forwardRef<\n\tReact.ElementRef<typeof TabsPrimitive.Content>,\n\tReact.ComponentPropsWithoutRef<typeof TabsPrimitive.Content>\n>(({ className, ...props }, ref) => (\n\t<TabsPrimitive.Content\n\t\tref={ref}\n\t\tclassName={cn(\n\t\t\t\"mt-2 ring-offset-background focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2\",\n\t\t\tclassName\n\t\t)}\n\t\t{...props}\n\t/>\n));\nTabsContent.displayName = TabsPrimitive.Content.displayName;\n\nexport { Tabs, TabsList, TabsTrigger, TabsContent };\n",
      "type": "registry:ui"
    },
    {
      "path": "registry/utilities/cn.ts",
      "content": "import { ClassValue, clsx } from \"clsx\";\r\nimport { twMerge } from \"tailwind-merge\";\r\n\r\nexport function cn(...inputs: ClassValue[]) {\r\n\treturn twMerge(clsx(inputs));\r\n}\r\n",
      "type": "registry:ui"
    }
  ]
}