UNPKG

react-native-unit-components

Version:

Unit React Native components

11 lines 412 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { UNError } from '../../types/shared'; type UnitSecureViewProps = { style?: StyleProp<ViewStyle>; children: React.ReactNode; onLoadError?: (error: UNError) => void; }; declare const UNBaseView: (props: UnitSecureViewProps) => JSX.Element | null; export default UNBaseView; //# sourceMappingURL=UNBaseView.d.ts.map