UNPKG

@entypo-icons/core

Version:
20 lines 722 B
"use strict"; var paths = '<path d="M10.001 7.8a2.2 2.2 0 1 0 0 4.402A2.2 2.2 0 0 0 10 7.8zm0-2.6A2.2 2.2 0 1 0 9.999.8a2.2 2.2 0 0 0 .002 4.4zm0 9.6a2.2 2.2 0 1 0 0 4.402 2.2 2.2 0 0 0 0-4.402z"></path>'; module.exports = { icon: 'dots-three-vertical', 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-dots-three-vertical"'; head += ' viewBox="0 0 20 20">'; var tail = '</symbol></svg>'; return head + paths + tail; } }