import { type ForwardedRef, forwardRef } from 'react'; import { View, type ViewProps } from 'react-native'; export interface BoxProps extends ViewProps { className?: string; } export const Box = forwardRef( ({ children, ...restProps }, ref: ForwardedRef) => { return ( {children} ); }, ); Box.displayName = 'Box';