RocketChat/Rocket.Chat

View on GitHub
packages/uikit-playground/src/Components/navMenu/Menu/Wrapper.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Box } from '@rocket.chat/fuselage';
import type { ReactElement, ReactNode } from 'react';

const Wrapper = ({ children }: { children: ReactNode }): ReactElement => (
  <Box
    pbs="80px"
    pis={'50px'}
    display="inline-flex"
    flexDirection="column"
    alignItems="center"
    justifyContent="space-between"
    verticalAlign="middle"
    children={children}
    height="max-content"
    width="100%"
  />
);

export default Wrapper;