File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import { useNavigate } from 'react-router-dom';
1313import { LogoBlockIcon } from '@components/Icons/LogoBlockIcon' ;
1414import { LogoBlockIconMobile } from '@components/Icons/LogoBlockIconMobile' ;
1515import TopSearchBar from '@components/Search/TopBarSearch' ;
16+ import CloseIcon from '@mui/icons-material/Close' ;
1617
1718const Header : FC < { displaySearchBar ?: boolean } > = ( { displaySearchBar } ) => {
1819 const navigate = useNavigate ( ) ;
@@ -115,6 +116,10 @@ const Header: FC<{ displaySearchBar?: boolean }> = ({ displaySearchBar }) => {
115116 } }
116117 >
117118 < Box className = "header-mobile-menu" >
119+ < Box display = "flex" justifyContent = "flex-end" >
120+ < CloseIcon onClick = { ( ) => toggleDrawer ( false ) } />
121+ </ Box >
122+
118123 < div className = "header-list-link" >
119124 < div >
120125 < span
You can’t perform that action at this time.
0 commit comments