UNPKG

gatsby-theme-wordpress-mdx

Version:

<p align="center"> <img width='200px' alt="Gatsby Theme" src="https://raw.githubusercontent.com/artezan/gatsby-theme-wordpress-mdx/master/%40artezan/gatsby-theme-wordpress-mdx/dn.png" />

18 lines (16 loc) 286 B
/** @jsx jsx */ import React from 'react' import { jsx, Flex } from 'theme-ui' export const FeaturesWrapper = ({ children, ...rest }) => { return ( <Flex sx={{ flexWrap: 'wrap', p: [1, 1, 4] }} {...rest} > {children} </Flex> ) }