react-native-vector-icons
Version:
Customizable Icons for React Native with support for NavBar/TabBar, image source and full styling.
10 lines (8 loc) • 312 B
JavaScript
import NativeIconAPI from './NativeRNVectorIcons';
export default function ensureNativeModuleAvailable() {
if (!NativeIconAPI) {
throw new Error(
'The native RNVectorIcons API is not available, did you properly integrate the module? Please verify your autolinking setup and recompile.'
);
}
}