@fe6/icon-cube-vue
Version:
Water Icon 的支持自定义图标
55 lines • 1.73 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('byted-fireworks', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48"
}, [_createVNode("g", {
"stroke": "none",
"stroke-width": props.strokeWidth,
"fill": "none",
"fill-rule": "evenodd"
}, [_createVNode("g", {
"transform": "translate(6.000000, 2.000000)"
}, [_createVNode("polygon", {
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"fill": props.colors[1],
"fill-rule": "nonzero",
"stroke-linejoin": props.strokeLinejoin,
"points": "0 40 8.67409249 15.2640024 25 32.0384615"
}, null), _createVNode("path", {
"d": "M17,17 L22,12 C24.6666667,9.33333333 25,7 23,5",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M23,23 L28,18 C31.3333333,14.6666667 34.6666667,14.6666667 38,18",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("circle", {
"fill": props.colors[0],
"cx": "14",
"cy": "3",
"r": "2"
}, null), _createVNode("circle", {
"fill": props.colors[0],
"cx": "36",
"cy": "2",
"r": "2"
}, null), _createVNode("circle", {
"fill": props.colors[0],
"cx": "36",
"cy": "25",
"r": "2"
}, null), _createVNode("circle", {
"fill": props.colors[0],
"cx": "33",
"cy": "34",
"r": "2"
}, null)])])]);
});