@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
49 lines • 1.48 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedDistributeVertically = IconWrapper('byted-distribute-vertically', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("mask", {
"id": props.id + 'vue0',
"maskUnits": "userSpaceOnUse",
"x": "0",
"y": "0",
"width": "48",
"height": "48",
"style": {
maskType: 'alpha'
}
}, [_createVNode("rect", {
"width": "48",
"height": "48",
"fill": props.colors[2]
}, null)]), _createVNode("g", {
"mask": "url(#".concat(props.id, "vue0)")
}, [_createVNode("rect", {
"x": "38",
"y": "30",
"width": "28",
"height": "12",
"transform": "rotate(180 38 30)",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M42 40H6",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M42 8L6 8",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null)])]);
});
export default BytedDistributeVertically;