UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

47 lines 1.45 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedGameHandle = IconWrapper('byted-game-handle', 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("rect", { "stroke": props.colors[0], "fill": props.colors[1], "fill-rule": "nonzero", "x": "0", "y": "14", "width": "40", "height": "24", "rx": "12" }, null), _createVNode("path", { "d": "M12,22 L12,30", "stroke": props.colors[2], "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M8,26 L16,26", "stroke": props.colors[2], "stroke-linecap": props.strokeLinecap }, null), _createVNode("polyline", { "stroke": props.colors[0], "stroke-linecap": props.strokeLinecap, "points": "20 12 20 5.71428571 28 5.71428571 28 2.84272605e-13" }, null), _createVNode("circle", { "stroke": props.colors[2], "fill": props.colors[3], "fill-rule": "nonzero", "cx": "28", "cy": "26", "r": "4" }, null)])])]); }); export default BytedGameHandle;