UNPKG

@vuikit/icons

Version:

UIkit icons as Vue functional components

35 lines (30 loc) 911 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 happy = { 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-happy', width: width, height: height, viewBox: viewBox }, domProps: { innerHTML: '<circle cx="13" cy="7" r="1" /><circle cx="7" cy="7" r="1" /><circle fill="none" stroke="#000" cx="10" cy="10" r="8.5" /><path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4" />' } }) } } module.exports = happy;