Element
Container which extends styled-system and can be used for styling.
Props
- Any props from styled-system.
Example with code
import Element from '@components/Element';
const MyComponent = () => {
return (
<Element display="flex" justifyContent="center" marginY={12}>
Your content
</Element>
);
};