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

Function TabsContent

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

Source from the content-addressed store, hash-verified

60}
61
62function TabsContent({
63 className,
64 ...props
65}: React.ComponentProps<typeof TabsPrimitive.Content>) {
66 return (
67 <TabsPrimitive.Content
68 data-slot="tabs-content"
69 className={cn(
70 "border border-[var(--color-border-weak)] rounded-b-md bg-[var(--color-bg-weak)] p-4",
71 "outline-none",
72 className
73 )}
74 {...props}
75 />
76 )
77}
78
79export { Tabs, TabsList, TabsTrigger, TabsContent }

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected