import React from 'react'; import { Box } from '../../primitives'; import type { ICenterProps } from './props'; import { usePropsConfig } from '../../../theme'; const Center = ({ style, ...props }: ICenterProps, ref: any) => { let newProps = usePropsConfig('Center', props); return ; }; export default React.forwardRef(Center);