import styled from '@emotion/styled'; import { useIsMobile } from '@/ui/hooks/useIsMobile'; import { leftNavbarWidth } from '../constants'; import NavBackButton from './NavBackButton'; import NavItemsContainer from './NavItemsContainer'; type OwnProps = { children: React.ReactNode; backButtonTitle: string; }; const StyledContainer = styled.div` display: flex; flex-direction: column; padding-top: ${({ theme }) => theme.spacing(9)}; width: ${() => (useIsMobile() ? '100%' : leftNavbarWidth.desktop)}; `; export default function SubMenuNavbar({ children, backButtonTitle }: OwnProps) { return ( {children} ); }