@icon-park/vue-next
Version:
Vue3 Icons for IconPark
50 lines • 1.81 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('panda', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("ellipse", {
"cx": "24",
"cy": "27",
"rx": "18",
"ry": "17",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("ellipse", {
"cx": "16.9333",
"cy": "24.6402",
"rx": "3",
"ry": "4",
"transform": "rotate(15 16.9333 24.6402)",
"fill": props.colors[3],
"stroke": props.colors[2],
"stroke-width": props.strokeWidth
}, null), _createVNode("ellipse", {
"rx": "3",
"ry": "4",
"transform": "matrix(-0.965926 0.258819 0.258819 0.965926 30.9329 24.6402)",
"fill": props.colors[3],
"stroke": props.colors[2],
"stroke-width": props.strokeWidth
}, null), _createVNode("path", {
"d": "M40.9995 20.999C44.1237 17.8748 44.4376 12.7804 41.3134 9.65616C38.1892 6.53196 32.124 6.87507 28.9998 9.99927",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M7 20.9995C3.87581 17.8753 3.53224 12.7807 6.65644 9.65655C9.78063 6.53236 15.8758 6.87532 19 9.99951",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M20 35C20.5 36.2935 22.2 38.2769 25 35.8623C27.8 38.2769 29.5 36.2935 30 35",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null)]);
});