UNPKG

react-native-unit-components

Version:

Unit React Native components

11 lines (8 loc) 356 B
import type { HostComponent, ViewProps } from 'react-native'; import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; export interface NativeProps extends ViewProps { filterTouchesWhenObscured: boolean; } export default codegenNativeComponent<NativeProps>( 'UNSecureNativeView', ) as HostComponent<NativeProps>;