vector_icon.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * 矢量图标库全局引用
  3. * @邠心vbe on 2021/4/7
  4. */
  5. import AntDesign from 'react-native-vector-icons/AntDesign';
  6. import Entypo from 'react-native-vector-icons/Entypo';
  7. import EvilIcons from 'react-native-vector-icons/EvilIcons';
  8. import Feather from 'react-native-vector-icons/Feather';
  9. import FontAwesome from 'react-native-vector-icons/FontAwesome';
  10. import FontAwesome5 from 'react-native-vector-icons/FontAwesome5';
  11. import FontAwesome5Brands from 'react-native-vector-icons/FontAwesome5Pro';
  12. import Fontisto from 'react-native-vector-icons/Fontisto';
  13. import Foundation from 'react-native-vector-icons/Foundation';
  14. import Ionicons from 'react-native-vector-icons/Ionicons';
  15. import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
  16. import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
  17. import Octicons from 'react-native-vector-icons/Octicons';
  18. import SimpleLineIcons from 'react-native-vector-icons/SimpleLineIcons';
  19. import Zocial from 'react-native-vector-icons/Zocial';
  20. global.AntDesign = AntDesign;
  21. global.Entypo = Entypo;
  22. global.EvilIcons = EvilIcons;
  23. global.Feather = Feather;
  24. global.FontAwesome = FontAwesome;
  25. //global.FontAwesome5 = FontAwesome5;
  26. //global.FontAwesome5Brands = FontAwesome5Brands;
  27. global.Fontisto = Fontisto;
  28. //global.Foundation = Foundation;
  29. global.Ionicons = Ionicons;
  30. global.MaterialCommunityIcons = MaterialCommunityIcons;
  31. global.MaterialIcons = MaterialIcons;
  32. global.Octicons = Octicons;
  33. //global.SimpleLineIcons = SimpleLineIcons;
  34. global.Zocial = Zocial;