fix: rides layout and accessibility
This commit is contained in:
committed by
GitHub
parent
20580c58df
commit
e9a4e892d9
@@ -13,10 +13,10 @@ const TabIcon = ({
|
||||
focused: boolean;
|
||||
}) => (
|
||||
<View
|
||||
className={`flex flex-row justify-center items-center rounded-full ${focused ? "bg-general-300" : ""}`}
|
||||
className={`flex flex-row justify-center items-center rounded-full ${focused && "bg-general-300"}`}
|
||||
>
|
||||
<View
|
||||
className={`rounded-full w-12 h-12 items-center justify-center ${focused ? "bg-general-400" : ""}`}
|
||||
className={`rounded-full w-12 h-12 items-center justify-center ${focused && "bg-general-400"}`}
|
||||
>
|
||||
<Image
|
||||
source={source}
|
||||
|
||||
Reference in New Issue
Block a user