2026-05-03 19:51:57 -05:00
|
|
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
|
|
|
|
|
|
const Tabs = TabsPrimitive.Root;
|
|
|
|
|
|
2026-06-07 14:29:09 -05:00
|
|
|
function TabsList({ className, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<TabsPrimitive.List
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn(
|
|
|
|
|
'inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground',
|
|
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-05-03 19:51:57 -05:00
|
|
|
|
2026-06-07 14:29:09 -05:00
|
|
|
function TabsTrigger({ className, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<TabsPrimitive.Trigger
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn(
|
|
|
|
|
'inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none 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',
|
|
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-05-03 19:51:57 -05:00
|
|
|
|
2026-06-07 14:29:09 -05:00
|
|
|
function TabsContent({ className, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<TabsPrimitive.Content
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn(
|
|
|
|
|
'mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2',
|
|
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-05-03 19:51:57 -05:00
|
|
|
|
|
|
|
|
export { Tabs, TabsList, TabsTrigger, TabsContent };
|