UNPKG

@vuikit/icons

Version:

UIkit icons as Vue functional components

35 lines (30 loc) 835 B
/** * 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 nut = { 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-nut', width: width, height: height, viewBox: viewBox }, domProps: { innerHTML: '<polygon fill="none" stroke="#000" points="2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3" /><circle fill="none" stroke="#000" cx="10" cy="10" r="3.5" />' } }) } } module.exports = nut;