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