@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
48 lines • 1.54 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedPullRequests = IconWrapper('byted-pull-requests', 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(7.000000, 4.000000)",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, [_createVNode("circle", {
"fill": props.colors[1],
"fill-rule": "nonzero",
"cx": "30",
"cy": "36",
"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("path", {
"d": "M4,8 L4,32",
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M17,6 L26,6 C28.209139,6 30,7.790861 30,10 L30,32",
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("polyline", {
"stroke-linecap": props.strokeLinecap,
"transform": "translate(20.000000, 6.000000) rotate(180.000000) translate(-20.000000, -6.000000) ",
"points": "17 0 23 6 17 12"
}, null)])])]);
});
export default BytedPullRequests;