/font-icons

Creating font-icons from SVG files

Primary LanguageJavaScriptApache License 2.0Apache-2.0

font-icons

To generate the fonts, run

npm install
npm start

Font icons will be generated in the directory out against the SVG files in the directory svg. All the SVG icons needs to be put in the directory svg.

To change these default locations, edit the file index.js:

const output_dir = 'out';
const icon_glob = 'svg' + '/**/*.svg';