import React from 'react'; import { Box } from '../../primitives'; import { usePropsConfig } from '../../../theme'; import type { IContainerProps } from './props'; const Container = ({ children, centerContent, ...props }: IContainerProps) => { const newProps = usePropsConfig('Container', props); return ( {children} ); }; export default Container; export type { IContainerProps };