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