This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
2021-05-25 13:47:11 +03:00

14 lines
226 B
JavaScript

import { Flex } from 'client/UIKit/grid';
export const CenterContent = props => (
<Flex
height="100%"
py="10px"
justifyContent="center"
alignItems="center"
px="5px"
>
{props.children}
</Flex>
);