This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

18 lines
878 B
JavaScript

import { createFA5iconSet } from './createIconSetFromFontAwesome5';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/FontAwesome5Free.json';
import metadata from './vendor/react-native-vector-icons/glyphmaps/FontAwesome5Free_meta.json';
const fontMap = {
Regular: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf'),
Light: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf'),
Solid: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf'),
Brand: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf'),
};
export const FA5Style = {
regular: 'regular',
light: 'light',
solid: 'solid',
brand: 'brand',
};
const iconSet = createFA5iconSet(glyphMap, metadata, fontMap, false);
export default iconSet;
//# sourceMappingURL=FontAwesome5.js.map