Skip to content

Commit

Permalink
chore: reverse the order of label style
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieu Thai authored and Sieu Thai committed Oct 4, 2023
1 parent f4a487a commit 79f0279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/TabView/TabView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const TabViewComponent: React.FC<React.PropsWithChildren<TabViewProps>> = ({
indicatorStyle={{
backgroundColor: indicatorColor || theme.colors.primary,
}}
labelStyle={[textStyles, { textTransform: "none" }]}
labelStyle={[{ textTransform: "none" }, textStyles]}
renderIcon={({ route, color }) =>
route?.icon ? (
<Icon name={route.icon} color={color} size={iconSize} />
Expand Down

0 comments on commit 79f0279

Please sign in to comment.