{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-434",
  "type": "registry:component",
  "title": "Comp 434",
  "description": "Comp 434",
  "files": [
    {
      "path": "registry/ui-basic/comp-434.tsx",
      "content": "import { ScrollArea, ScrollBar } from \"@/components/ui/scroll-area\";\nimport { Tabs, TabsContent, TabsList, TabsTrigger } from \"@/components/ui/tabs\";\nimport { BoxIcon, HouseIcon, PanelsTopLeftIcon } from \"lucide-react\";\n\nexport default function Component() {\n\treturn (\n\t\t<Tabs defaultValue=\"tab-1\">\n\t\t\t<ScrollArea>\n\t\t\t\t<TabsList className=\"mb-3 gap-1 bg-transparent\">\n\t\t\t\t\t<TabsTrigger\n\t\t\t\t\t\tvalue=\"tab-1\"\n\t\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\t>\n\t\t\t\t\t\t<HouseIcon\n\t\t\t\t\t\t\tclassName=\"-ms-0.5 me-1.5 opacity-60\"\n\t\t\t\t\t\t\tsize={16}\n\t\t\t\t\t\t\taria-hidden=\"true\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\tOverview\n\t\t\t\t\t</TabsTrigger>\n\t\t\t\t\t<TabsTrigger\n\t\t\t\t\t\tvalue=\"tab-2\"\n\t\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\t>\n\t\t\t\t\t\t<PanelsTopLeftIcon\n\t\t\t\t\t\t\tclassName=\"-ms-0.5 me-1.5 opacity-60\"\n\t\t\t\t\t\t\tsize={16}\n\t\t\t\t\t\t\taria-hidden=\"true\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\tProjects\n\t\t\t\t\t</TabsTrigger>\n\t\t\t\t\t<TabsTrigger\n\t\t\t\t\t\tvalue=\"tab-3\"\n\t\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\t>\n\t\t\t\t\t\t<BoxIcon\n\t\t\t\t\t\t\tclassName=\"-ms-0.5 me-1.5 opacity-60\"\n\t\t\t\t\t\t\tsize={16}\n\t\t\t\t\t\t\taria-hidden=\"true\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\tPackages\n\t\t\t\t\t</TabsTrigger>\n\t\t\t\t</TabsList>\n\t\t\t\t<ScrollBar orientation=\"horizontal\" />\n\t\t\t</ScrollArea>\n\t\t\t<TabsContent value=\"tab-1\">\n\t\t\t\t<p className=\"text-muted-foreground p-4 pt-1 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 pt-1 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 pt-1 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/scroll-area.tsx",
      "content": "\"use client\";\r\n\r\nimport React from \"react\";\r\n\r\nimport { cn } from \"@/registry/utilities/cn\";\r\nimport * as ScrollAreaPrimitive from \"@radix-ui/react-scroll-area\";\r\n\r\nconst ScrollArea = React.forwardRef<\r\n\tReact.ElementRef<typeof ScrollAreaPrimitive.Root>,\r\n\tReact.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root>\r\n>(({ className, children, ...props }, ref) => (\r\n\t<ScrollAreaPrimitive.Root\r\n\t\tref={ref}\r\n\t\tclassName={cn(\"relative overflow-hidden\", className)}\r\n\t\t{...props}\r\n\t>\r\n\t\t<ScrollAreaPrimitive.Viewport className=\"h-full w-full rounded-[inherit]\">\r\n\t\t\t{children}\r\n\t\t</ScrollAreaPrimitive.Viewport>\r\n\t\t<ScrollBar />\r\n\t\t<ScrollAreaPrimitive.Corner />\r\n\t</ScrollAreaPrimitive.Root>\r\n));\r\nScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;\r\n\r\nconst ScrollBar = React.forwardRef<\r\n\tReact.ElementRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>,\r\n\tReact.ComponentPropsWithoutRef<\r\n\t\ttypeof ScrollAreaPrimitive.ScrollAreaScrollbar\r\n\t>\r\n>(({ className, orientation = \"vertical\", ...props }, ref) => (\r\n\t<ScrollAreaPrimitive.ScrollAreaScrollbar\r\n\t\tref={ref}\r\n\t\torientation={orientation}\r\n\t\tclassName={cn(\r\n\t\t\t\"flex touch-none select-none transition-colors\",\r\n\t\t\torientation === \"vertical\" &&\r\n\t\t\t\t\"h-full w-2.5 border-l border-l-transparent p-px\",\r\n\t\t\torientation === \"horizontal\" &&\r\n\t\t\t\t\"h-2.5 flex-col border-t border-t-transparent p-px\",\r\n\t\t\tclassName\r\n\t\t)}\r\n\t\t{...props}\r\n\t>\r\n\t\t<ScrollAreaPrimitive.ScrollAreaThumb className=\"relative flex-1 rounded-full bg-border\" />\r\n\t</ScrollAreaPrimitive.ScrollAreaScrollbar>\r\n));\r\nScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;\r\n\r\nexport { ScrollArea, ScrollBar };\r\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"
    },
    {
      "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"
    }
  ]
}