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