feat: Add JavaScript library

Add JavaScript library that includes an `icons` object, `toSvg` function and `replace` function.
This commit is contained in:
Cole Bemis
2017-07-03 15:05:29 -07:00
committed by Cole Bemis
parent ae164db70f
commit 71f502fc95
3 changed files with 138 additions and 0 deletions

9
src/index.js Normal file
View File

@@ -0,0 +1,9 @@
/**
* @file Exposes `feather` object.
*/
import icons from '../dist/icons.json';
import toSvg from './to-svg';
import replace from './replace';
module.exports = { icons, toSvg, replace };