@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
29 lines • 1.19 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedBaseball = IconWrapper('byted-baseball', 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-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, [_createVNode("g", {
"transform": "translate(4.000000, 4.000000)",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, [_createVNode("circle", {
"cx": "20",
"cy": "20",
"r": "20"
}, null), _createVNode("path", {
"d": "M4.54545455,7.27272727 C8.78787879,10.9090909 10.9090909,15.1515152 10.9090909,20 C10.9090909,24.8484848 8.78787879,29.0909091 4.54545455,32.7272727"
}, null), _createVNode("path", {
"d": "M35.4545455,32.7272727 C31.2121212,29.0909091 29.0909091,24.8484848 29.0909091,20 C29.0909091,15.1515152 31.2121212,10.9090909 35.4545455,7.27272727 L35.4545455,7.27272727"
}, null)])])]);
});
export default BytedBaseball;