@entypo-icons/core
Version:
Entypo+ icons core package
20 lines • 670 B
JavaScript
;
var paths = '<path d="M10 .4C4.698.4.4 4.698.4 10a9.6 9.6 0 1 0 19.2-.001C19.6 4.698 15.301.4 10 .4zm0 17.199A7.6 7.6 0 1 1 10 2.4a7.6 7.6 0 1 1 0 15.199z"></path>';
module.exports = {
icon: 'circle',
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-circle"';
head += ' viewBox="0 0 20 20">';
var tail = '</symbol></svg>';
return head + paths + tail;
}
}