@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
50 lines • 1.44 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedGameConsole = IconWrapper('byted-game-console', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("rect", {
"x": "10",
"y": "4",
"width": "28",
"height": "40",
"rx": "2",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("path", {
"d": "M16 34H24",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M20 30V38",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "16",
"y": "10",
"width": "16",
"height": "9",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("circle", {
"cx": "31",
"cy": "30",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "31",
"cy": "38",
"r": "2",
"fill": props.colors[0]
}, null)]);
});
export default BytedGameConsole;