import { View } from 'react-native'; import React, { forwardRef, PropsWithChildren } from 'react'; import { BaseProps } from '../../@types/base'; import { Box } from '../Box'; export type HorizontalCenterProps = PropsWithChildren< Omit >; export const HorizontalCenter = forwardRef( ({ children, flex = 1, ...rest }, ref) => { return ( {children} ); } );