MCPcopy Create free account
hub / github.com/R44VC0RP/opencode.cafe / TabsList

Function TabsList

components/ui/tabs.tsx:21–37  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof TabsPrimitive.List>)

Source from the content-addressed store, hash-verified

19}
20
21function TabsList({
22 className,
23 ...props
24}: React.ComponentProps<typeof TabsPrimitive.List>) {
25 return (
26 <TabsPrimitive.List
27 data-slot="tabs-list"
28 className={cn(
29 "flex items-center gap-8",
30 "border border-[var(--color-border-weak)] border-b-0",
31 "rounded-t-md bg-[var(--color-bg-weak)] px-5",
32 className
33 )}
34 {...props}
35 />
36 )
37}
38
39function TabsTrigger({
40 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected