import { forwardRef, memo } from 'react' import { View } from 'react-native' import { Box, BoxProps } from './Box' export type CenterProps = Omit export const Center = memo( forwardRef((props, ref) => ( )) )