@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
39 lines • 1.45 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedGame = IconWrapper('byted-game', 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(4.000000, 4.000000)",
"stroke-width": props.strokeWidth
}, [_createVNode("path", {
"d": "M34.5120527,5.53620381 C30.8466015,2.10248672 25.9188318,0 20.5,0 C9.17816263,0 1.98951966e-13,9.17816263 1.98951966e-13,20.5 C1.98951966e-13,31.8218374 9.17816263,41 20.5,41 C26.1148083,41 31.2023928,38.742687 34.9047551,35.0860595 L20,20 L34.5120527,5.53620381 Z",
"stroke": props.colors[0],
"fill": props.colors[1],
"fill-rule": "nonzero"
}, null), _createVNode("circle", {
"stroke": props.colors[0],
"fill": props.colors[1],
"fill-rule": "nonzero",
"cx": "36",
"cy": "20",
"r": "4"
}, null), _createVNode("path", {
"d": "M13,9 L13,17",
"stroke": props.colors[2],
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M9,13 L17,13",
"stroke": props.colors[2],
"stroke-linecap": props.strokeLinecap
}, null)])])]);
});
export default BytedGame;