[react-native-vector-icons] Added FontName and FontFile Support

[react-native-vector-icons] Added FontName and FontFile Support
This commit is contained in:
Ilker Güller
2018-09-28 11:58:02 +02:00
committed by GitHub
parent 44ea6863ba
commit 8a99a48134

View File

@@ -35,7 +35,7 @@ export function createIconSet(
*
* @see http://fontello.com
*/
export function createIconSetFromFontello(config: {}): typeof Icon;
export function createIconSetFromFontello(config: {}, fontName?: string, fontFile?: string): typeof Icon;
/**
* Convenience method to create a custom font from IcoMoon
@@ -50,4 +50,4 @@ export function createIconSetFromFontello(config: {}): typeof Icon;
*
* @see https://icomoon.io/app
*/
export function createIconSetFromIcoMoon(config: {}): typeof Icon;
export function createIconSetFromIcoMoon(config: {}, fontName?: string, fontFile?: string): typeof Icon;