{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "tabs",
  "title": "Tabs",
  "description": "Tabs primitives.",
  "dependencies": [
    "@radix-ui/react-tabs"
  ],
  "registryDependencies": [
    "@circle-ui/utils"
  ],
  "files": [
    {
      "path": "registry/berlin/circle-ui/tabs.tsx",
      "content": "// Generated from packages/ui/src/components/tabs.tsx\n\"use client\";\n\nimport * as React from \"react\";\nimport * as TabsPrimitive from \"@radix-ui/react-tabs\";\n\nimport { cn } from \"@/registry/berlin/lib/utils\";\n\nexport type TabRootProps = React.ComponentPropsWithoutRef<\n  typeof TabsPrimitive.Root\n>;\n\nexport const TabRoot = React.forwardRef<\n  React.ElementRef<typeof TabsPrimitive.Root>,\n  TabRootProps\n>(({ className, ...props }, ref) => (\n  <TabsPrimitive.Root ref={ref} className={className} {...props} />\n));\n\nTabRoot.displayName = TabsPrimitive.Root.displayName;\n\nexport type TabListProps = React.ComponentPropsWithoutRef<\n  typeof TabsPrimitive.List\n>;\n\nexport const TabList = React.forwardRef<\n  React.ElementRef<typeof TabsPrimitive.List>,\n  TabListProps\n>(({ className, ...props }, ref) => (\n  <TabsPrimitive.List\n    ref={ref}\n    className={cn(\"flex gap-8 border-b\", className)}\n    {...props}\n  />\n));\n\nTabList.displayName = TabsPrimitive.List.displayName;\n\nexport type TabTriggerProps = React.ComponentPropsWithoutRef<\n  typeof TabsPrimitive.Trigger\n>;\n\nexport const TabTrigger = React.forwardRef<\n  React.ElementRef<typeof TabsPrimitive.Trigger>,\n  TabTriggerProps\n>(({ className, ...props }, ref) => (\n  <TabsPrimitive.Trigger\n    ref={ref}\n    className={cn(\n      \"border-b border-transparent py-4 text-base leading-6 tracking-[-0.16px] text-muted-foreground transition-[border-color,color]\",\n      \"focus-visible:outline-none\",\n      \"data-[state=active]:border-foreground data-[state=active]:text-foreground\",\n      className,\n    )}\n    {...props}\n  />\n));\n\nTabTrigger.displayName = TabsPrimitive.Trigger.displayName;\n\nexport type TabContentProps = React.ComponentPropsWithoutRef<\n  typeof TabsPrimitive.Content\n>;\n\nexport const TabContent = React.forwardRef<\n  React.ElementRef<typeof TabsPrimitive.Content>,\n  TabContentProps\n>(({ className, ...props }, ref) => (\n  <TabsPrimitive.Content\n    ref={ref}\n    className={cn(\"pt-6 focus-visible:outline-none\", className)}\n    {...props}\n  />\n));\n\nTabContent.displayName = TabsPrimitive.Content.displayName;\n",
      "type": "registry:ui",
      "target": "src/components/circle/ui/tabs.tsx"
    }
  ],
  "type": "registry:ui"
}