import styled from '@emotion/styled'; import { RightDrawerContainer } from './RightDrawerContainer'; type OwnProps = { children: JSX.Element | JSX.Element[]; }; const StyledContainer = styled.div` display: flex; padding-top: ${({ theme }) => theme.spacing(4)}; width: 100%; `; export function SubMenuTopBarContainer({ children }: OwnProps) { return ( {children} ); }