From d84bd5fed0ce2f96b7e46f71a5f523a9bbbc842e Mon Sep 17 00:00:00 2001 From: Maxim Geerinck Date: Tue, 11 Oct 2016 09:32:26 +0200 Subject: [PATCH] The import in the template should not be relative (#316) --- template/iconSet.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/iconSet.tpl b/template/iconSet.tpl index 3b16acb..8a51b3d 100644 --- a/template/iconSet.tpl +++ b/template/iconSet.tpl @@ -3,7 +3,7 @@ * Usage: <${componentName} name="icon-name" size={20} color="#4F8EF7" /> */ -import createIconSet from './lib/create-icon-set'; +import createIconSet from 'react-native-vector-icons/lib/create-icon-set'; const glyphMap = ${glyphMap}; let ${componentName} = createIconSet(glyphMap, '${fontFamily}', '${componentName}.ttf');