@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
42 lines • 1.13 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedWaterfallsH = IconWrapper('byted-waterfalls-h', 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(6.000000, 6.000000)",
"fill": props.colors[1],
"fill-rule": "nonzero",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, [_createVNode("rect", {
"x": "0",
"y": "0",
"width": "14",
"height": "11"
}, null), _createVNode("rect", {
"x": "22",
"y": "25",
"width": "14",
"height": "11"
}, null), _createVNode("rect", {
"x": "22",
"y": "0",
"width": "14",
"height": "17"
}, null), _createVNode("rect", {
"x": "0",
"y": "19",
"width": "14",
"height": "17"
}, null)])])]);
});
export default BytedWaterfallsH;