Skip to main content

Element

Container which extends styled-system and can be used for styling.

Props

Example with code

import Element from '@components/Element';

const MyComponent = () => {
return (
<Element display="flex" justifyContent="center" marginY={12}>
Your content
</Element>
);
};