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