/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
const DEFAULT_ATTRS = require('../../package/src/default-attrs.json');
const toSvgSymbol = (name, contents) => {
return `${
contents
}`;
};
const buildSpriteString = (icons) => {
const symbols = Object.keys(icons)
.map(icon => toSvgSymbol(icon, icons[icon]))
.join('');
return ``;
};
module.exports = buildSpriteString;