@vuikit/icons
Version:
UIkit icons as Vue functional components
35 lines (30 loc) • 1.19 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 */
'use strict';
var gitFork = {
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-git-fork',
width: width,
height: height,
viewBox: viewBox
},
domProps: {
innerHTML: '<circle fill="none" stroke="#000" stroke-width="1.2" cx="5.79" cy="2.79" r="1.79" /><circle fill="none" stroke="#000" stroke-width="1.2" cx="14.19" cy="2.79" r="1.79" /><ellipse fill="none" stroke="#000" stroke-width="1.2" cx="10.03" cy="16.79" rx="1.79" ry="1.79" /><path fill="none" stroke="#000" stroke-width="2" d="M5.79,4.57 L5.79,6.56 C5.79,9.19 10.03,10.22 10.03,13.31 C10.03,14.86 10.04,14.55 10.04,14.55 C10.04,14.37 10.04,14.86 10.04,13.31 C10.04,10.22 14.2,9.19 14.2,6.56 L14.2,4.57" />'
}
})
}
}
module.exports = gitFork;