@@ -44,7 +44,7 @@ const BottomBarModal = forwardRef<BottomSheet, TBottomBarModalProps>(
4444 ) ;
4545
4646 const ITEM_COUNT = 2 ;
47- const innerHeight = 60 * ITEM_COUNT + 32 * 2 ;
47+ const innerHeight = 72 * ITEM_COUNT + 32 + 56 ;
4848 return (
4949 < BottomSheet
5050 ref = { ref }
@@ -58,7 +58,7 @@ const BottomBarModal = forwardRef<BottomSheet, TBottomBarModalProps>(
5858 backdropComponent = { renderBackdrop }
5959 backgroundStyle = { { backgroundColor : sheetBgColor } }
6060 >
61- < Box px = { 4 } py = { 8 } >
61+ < Box px = { 4 } pt = { 8 } pb = { 12 } >
6262 { props . foldableList . map ( ( foldable , index ) => (
6363 < Pressable
6464 key = { index }
@@ -70,20 +70,23 @@ const BottomBarModal = forwardRef<BottomSheet, TBottomBarModalProps>(
7070 _pressed = { { bg : 'surface-pressed' } }
7171 borderRadius = "xl"
7272 mt = { index === 0 ? undefined : 2 }
73- p = "2"
73+ px = "2"
74+ py = "3"
7475 >
7576 < Box display = "flex" flexDirection = "column" >
76- < Box display = "flex" flexDirection = "row" alignItems = "flex-start" >
77- < Icon
78- name = { foldable ?. tabBarIcon ?.( ) as ICON_NAMES }
79- color = "icon-default"
80- size = { 24 }
81- />
77+ < Box display = "flex" flexDirection = "row" alignItems = "center" >
78+ < Box p = { 3 } rounded = "full" bgColor = "interactive-default" >
79+ < Icon
80+ name = { foldable ?. tabBarIcon ?.( ) as ICON_NAMES }
81+ color = "icon-on-primary"
82+ size = { 20 }
83+ />
84+ </ Box >
8285
8386 < Box ml = { 4 } >
84- < Typography . Body1Strong color = { inactiveFontColor } >
87+ < Typography . Heading color = { inactiveFontColor } >
8588 { foldable . tabBarLabel }
86- </ Typography . Body1Strong >
89+ </ Typography . Heading >
8790 < Typography . Body2 color = "text-subdued" >
8891 { foldable . description }
8992 </ Typography . Body2 >
0 commit comments