@vuikit/icons
Version:
UIkit icons as Vue functional components
35 lines (30 loc) • 1.02 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 fileEdit = {
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-file-edit',
width: width,
height: height,
viewBox: viewBox
},
domProps: {
innerHTML: '<path fill="none" stroke="#000" d="M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z" /><polyline fill="none" stroke="#000" points="16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5" />'
}
})
}
}
module.exports = fileEdit;