UNPKG

vuikit

Version:

A responsive Vue UI library for web site interfaces based on UIkit

21 lines (19 loc) 490 B
export default { functional: true, render: function (h, { props }) { let width = props.width || 20 let height = props.height || 20 const viewBox = props.viewBox || '0 0 20 20' return h('svg', { attrs: { version: '1.1', width: width, height: height, viewBox: viewBox }, domProps: { innerHTML: '<circle cx="3" cy="10" r="2" /><circle cx="10" cy="10" r="2" /><circle cx="17" cy="10" r="2" />' } }) } }