@vuikit/icons
Version:
UIkit icons as Vue functional components
35 lines (30 loc) • 1.18 kB
JavaScript
/**
* Vuikit - @vuikit/icons 0.8.1
* (c) 2018 Miljan Aleksic
* @license MIT
**/
/* The icons source code is part of UIkit icons library,
Copyright (c) 2013-2018 YOOtheme GmbH, getuikit.com */
;
var world = {
functional: true,
render: function (h, ref) {
var props = ref.props;
var width = props.width || 20;
var height = props.height || 20;
var viewBox = props.viewBox || '0 0 20 20';
return h('svg', {
attrs: {
version: '1.1',
meta: 'vk-icons-world',
width: width,
height: height,
viewBox: viewBox
},
domProps: {
innerHTML: '<path fill="none" stroke="#000" d="M1,10.5 L19,10.5" /><path fill="none" stroke="#000" d="M2.35,15.5 L17.65,15.5" /><path fill="none" stroke="#000" d="M2.35,5.5 L17.523,5.5" /><path fill="none" stroke="#000" d="M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z" /><circle fill="none" stroke="#000" cx="10" cy="10.5" r="9" />'
}
})
}
}
module.exports = world;