UNPKG

react-native-vector-icons

Version:

Customizable Icons for React Native with support for NavBar/TabBar/ToolbarAndroid, image source and full styling.

17 lines (13 loc) 391 B
import createIconSet from './create-icon-set'; export default function createIconSetFromFontello( config, fontFamilyArg, fontFile ) { const glyphMap = {}; config.glyphs.forEach(glyph => { glyphMap[glyph.css] = glyph.code; }); const fontFamily = fontFamilyArg || config.name || 'fontello'; return createIconSet(glyphMap, fontFamily, fontFile || `${fontFamily}.ttf`); }