import { View, ViewProps } from 'react-native'; import React from 'react'; import { centerStyle } from './styles'; import type { VariantProps } from '@gluestack-ui/nativewind-utils'; type ICenterProps = ViewProps & VariantProps; const Center = React.forwardRef, ICenterProps>( function Center({ className, ...props }, ref) { return ( ); } ); Center.displayName = 'Center'; export { Center };