Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Jan 23, 2025
1 parent fcfe1eb commit 45ddde0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/admin-ui/src/Tabs/components/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ const Content = ({ className, content, ...props }: ContentProps) => (
</TabsPrimitive.Content>
);

export { Content, type ContentProps };
export { Content, type ContentProps };
5 changes: 4 additions & 1 deletion packages/admin-ui/src/Tabs/components/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ type ListProps = TabsPrimitive.TabsListProps;

const List = ({ className, ...props }: ListProps) => (
<TabsPrimitive.List
className={cn("wby-w-full wby-inline-flex wby-items-center wby-justify-start wby-gap-sm", className)}
className={cn(
"wby-w-full wby-inline-flex wby-items-center wby-justify-start wby-gap-sm",
className
)}
{...props}
/>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/admin-ui/src/Tabs/components/Trigger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ const Trigger = ({ className, size, icon, text, visible, ...props }: TriggerProp
</TabsPrimitive.Trigger>
);

export { Trigger, type TriggerProps };
export { Trigger, type TriggerProps };

0 comments on commit 45ddde0

Please sign in to comment.