UNPKG

react-native-unit-components

Version:

Unit React Native components

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