import { type ComponentType, createElement, forwardRef } from 'react' import type { ViewProps } from 'react-native' import { createUnistylesElement } from '../../core' // credits to @hirbod const LeanView = forwardRef((props, ref) => { return createElement('RCTView', { ...props, ref }) }) as ComponentType LeanView.displayName = 'RCTView' // this will match default export from react-native export default createUnistylesElement(LeanView)