vuikit
Version:
A responsive Vue UI library for web site interfaces based on UIkit
32 lines (28 loc) • 667 B
JavaScript
/**
* Vuikit 0.8.10
* (c) 2018 Miljan Aleksic
* @license MIT
**/
/* Substantial part of the code is adapted from UIkit,
Copyright (c) 2013-2018 YOOtheme GmbH, getuikit.com */
var triangleDown = {
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',
width: width,
height: height,
viewBox: viewBox
},
domProps: {
innerHTML: '<polygon points="5 7 15 7 10 12" />'
}
})
}
}
export default triangleDown;