@fe6/icon-cube-vue
Version:
Water Icon 的支持自定义图标
35 lines • 1.39 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('byted-water-rate', 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", null, [_createVNode("path", {
"d": "M24,44 C32.836556,44 40,37.4875642 40,29.4545455 C40,21.5757576 34.6666667,13.0909091 24,4 C13.3333333,13.0909091 8,21.5757576 8,29.4545455 C8,37.4877782 15.163444,44 24,44 Z",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"fill": props.colors[1],
"fill-rule": "nonzero",
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("g", {
"transform": "translate(18.000000, 19.000000)",
"stroke": props.colors[2],
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin,
"stroke-width": props.strokeWidth
}, [_createVNode("polyline", {
"points": "0.857142857 0 6 5.36842105 11.1428571 0"
}, null), _createVNode("path", {
"d": "M0,7.15789474 L12,7.15789474"
}, null), _createVNode("path", {
"d": "M0,12.5263158 L12,12.5263158"
}, null), _createVNode("path", {
"d": "M6,7.15789474 L6,17"
}, null)])])])]);
});