Skip to content

Commit 6e1b054

Browse files
sieuhuflitSieu Thai
andauthored
fix: ignore textTransform uppercase label of TabView (#799)
* fix: ignore textTransform uppercase of label * chore: reverse the order of label style --------- Co-authored-by: Sieu Thai <[email protected]>
1 parent 857b490 commit 6e1b054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/components/TabView/TabView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const TabViewComponent: React.FC<React.PropsWithChildren<TabViewProps>> = ({
111111
indicatorStyle={{
112112
backgroundColor: indicatorColor || theme.colors.primary,
113113
}}
114-
labelStyle={textStyles}
114+
labelStyle={[{ textTransform: "none" }, textStyles]}
115115
renderIcon={({ route, color }) =>
116116
route?.icon ? (
117117
<Icon name={route.icon} color={color} size={iconSize} />

0 commit comments

Comments
 (0)