diff --git a/sparkle/src/components/Tabs.tsx b/sparkle/src/components/Tabs.tsx index 054423368838..96d1db1bd27a 100644 --- a/sparkle/src/components/Tabs.tsx +++ b/sparkle/src/components/Tabs.tsx @@ -12,17 +12,19 @@ type TabsListProps = React.ComponentPropsWithoutRef< typeof TabsPrimitive.List > & { isFullSize?: boolean; + hasBorder?: boolean; }; const TabsList = React.forwardRef< React.ElementRef, TabsListProps ->(({ className, isFullSize = true, ...props }, ref) => ( +>(({ className, isFullSize = true, hasBorder = true, ...props }, ref) => (