1
1
mirror of https://github.com/c8r/x0.git synced 2024-09-19 09:38:31 +03:00
x0/docs/Container.js
2017-10-07 21:01:25 -04:00

14 lines
192 B
JavaScript

import styled from 'cxs/x'
import Box from './Box'
const Container = styled(Box)({
maxWidth: '768px'
})
Container.defaultProps = {
px: [ 2, 3 ],
mx: 'auto'
}
export default Container