UNPKG

@entypo-icons/core

Version:
20 lines 842 B
"use strict"; var paths = '<path d="M4.943 18.05l7.666-4.327-1.646-1.823-6.02 6.15zm-2.8-15.927c-.089.158-.143.34-.143.542V17.79c0 .28.105.52.263.71L9.89 10.71 2.142 2.123zM17.48 9.482l-2.673-1.509-2.722 2.781 1.951 2.163 3.444-1.943a.946.946 0 0 0 .52-.746.946.946 0 0 0-.52-.746zm-4.115-2.323l-9.22-5.204 6.866 7.61 2.354-2.406z"></path>'; module.exports = { icon: 'google-play', 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-google-play"'; head += ' viewBox="0 0 20 20">'; var tail = '</symbol></svg>'; return head + paths + tail; } }