@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
57 lines • 1.74 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedHdmiConnector = IconWrapper('byted-hdmi-connector', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("circle", {
"cx": "24",
"cy": "24",
"r": "20",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M29 43C29 40.2386 26.7614 38 24 38C21.2386 38 19 40.2386 19 43",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M15.5 42.1091C18.0797 43.322 20.9607 44 24 44C27.0393 44 29.9203 43.322 32.5 42.1091",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("circle", {
"cx": "15",
"cy": "15",
"r": "3",
"fill": props.colors[2]
}, null), _createVNode("circle", {
"cx": "11",
"cy": "23",
"r": "3",
"fill": props.colors[2]
}, null), _createVNode("circle", {
"cx": "24",
"cy": "11",
"r": "3",
"fill": props.colors[2]
}, null), _createVNode("circle", {
"cx": "33",
"cy": "15",
"r": "3",
"fill": props.colors[2]
}, null), _createVNode("circle", {
"cx": "37",
"cy": "23",
"r": "3",
"fill": props.colors[2]
}, null)]);
});
export default BytedHdmiConnector;