mirror of
https://github.com/zoriya/expo-vector-icons.git
synced 2025-12-06 06:36:29 +00:00
24 lines
599 B
JavaScript
24 lines
599 B
JavaScript
/**
|
|
* FontAwesome5Pro icon set component.
|
|
* Usage: <FontAwesome5Pro name="icon-name" size={20} color="#4F8EF7" />
|
|
*/
|
|
|
|
import { createFA5iconSet } from './lib/create-icon-set-from-fontawesome5';
|
|
|
|
import glyphMap from './glyphmaps/FontAwesome5Pro.json';
|
|
import metadata from './glyphmaps/FontAwesome5Pro_meta.json';
|
|
|
|
export { FA5Style } from './lib/create-icon-set-from-fontawesome5';
|
|
|
|
const iconSet = createFA5iconSet(glyphMap, metadata, true);
|
|
|
|
export default iconSet;
|
|
export const {
|
|
Button,
|
|
TabBarItem,
|
|
TabBarItemIOS,
|
|
ToolbarAndroid,
|
|
getImageSource,
|
|
getImageSourceSync,
|
|
} = iconSet;
|