Files
xrpl-hooks-ide/components/Container.tsx
2022-08-17 11:50:49 +05:30

13 lines
223 B
TypeScript

import { styled } from '../stitches.config'
import Box from './Box'
const Container = styled(Box, {
width: '100%',
marginLeft: 'auto',
marginRight: 'auto',
px: '$4',
maxWidth: '100%'
})
export default Container