UNPKG

@entypo-icons/core

Version:
20 lines 1.01 kB
"use strict"; var paths = '<path d="M17.3 4.3c0-1.2-1.7-1.3-1.7-1.3l-4.1-.3s-.1-1.1-.9-1.5C9.8.9 8.9 1 8.3 1c-.7 0-.8.9-.8 1.6v2.2c0 1-.4 1.4-1.6 1.4H3.6c-.6 0-1.1.1-1.1.6s.8 5 1.8 6c.6.6 4.3 1 5.1 1s.5-2.3.7-2.3.5 1.3 1.7 1.6c1.2.3 2.9.2 3 1.1.1 1.2.2 2.6-.5 2.7l-1.7.1c-1.2-.1-.9-1.4-.3-1.4h.8l.1-1.4s-2.7-.3-2.8 1.5c-.1 1.7.2 2.4.4 2.6.2.2.6.5 3.9.5 4.3.2 2.6-13.3 2.6-14.5zm-1.9 6c-.1.2-.8-.3-1.4-.3-.6 0-1.3.3-1.5.1-.2-.2.1-2 1.3-2s1.8 2 1.6 2.2zM5.3 4.6H2.4l3.5-3.4s-.1 2.8-.1 3c0 .2-.1.4-.5.4z"></path>'; module.exports = { icon: 'evernote', 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-evernote"'; head += ' viewBox="0 0 20 20">'; var tail = '</symbol></svg>'; return head + paths + tail; } }