import React from 'react' import { Box, BoxProps } from '../Box/Box' import * as styles from './styles.css' type Props = React.PropsWithChildren & BoxProps & { centered?: boolean; padded?: boolean } export const Container: React.FC = ({ children, centered = true, padded = true, ...props }) => { return ( {children} ) }