@vuikit/icons
Version:
UIkit icons as Vue functional components
35 lines (30 loc) • 912 B
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 push = {
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-push',
width: width,
height: height,
viewBox: viewBox
},
domProps: {
innerHTML: '<polygon points="12.15,4 9.5,1.4 6.85,4 6.15,3.3 9.5,0 12.85,3.3" /><line fill="none" stroke="#000" x1="9.5" y1="10" x2="9.5" y2="1" /><polyline fill="none" stroke="#000" points="6 5.5 3.5 5.5 3.5 18.5 15.5 18.5 15.5 5.5 13 5.5" />'
}
})
}
}
module.exports = push;