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