UNPKG

@entypo-icons/core

Version:
20 lines 651 B
"use strict"; var paths = '<path d="M18 5H2C.9 5 0 5.9 0 7v6c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 8H2V7h16v6zM7 8H3v4h4V8z"></path>'; module.exports = { icon: 'progress-one', paths: paths, getSvg: function() { var head = '<svg xmlns="http://www.w3.org/2000/svg"'; head += ' viewBox="0 0 20 20">'; var tail = '</svg>'; return head + paths + tail; }, getSprite: function() { var head = '<svg xmlns="http://www.w3.org/2000/svg">'; head += '<symbol'; head += ' id="entypo-icon-progress-one"'; head += ' viewBox="0 0 20 20">'; var tail = '</symbol></svg>'; return head + paths + tail; } }