@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
41 lines • 1.2 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedBranch = IconWrapper('byted-branch', 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",
"stroke-linejoin": props.strokeLinejoin
}, [_createVNode("g", {
"transform": "translate(5.000000, 4.000000)",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, [_createVNode("circle", {
"fill": props.colors[1],
"fill-rule": "nonzero",
"cx": "35",
"cy": "20",
"r": "4"
}, null), _createVNode("circle", {
"fill": props.colors[1],
"fill-rule": "nonzero",
"cx": "4",
"cy": "4",
"r": "4"
}, null), _createVNode("circle", {
"fill": props.colors[1],
"fill-rule": "nonzero",
"cx": "4",
"cy": "36",
"r": "4"
}, null), _createVNode("polyline", {
"stroke-linecap": props.strokeLinecap,
"points": "4 8 4 32 4 20.0083363 31 20.0083363"
}, null)])])]);
});
export default BytedBranch;