UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

31 lines 1.05 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedHome = IconWrapper('byted-home', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("path", { "d": "M9 18V42H39V18L24 6L9 18Z", "fill": props.colors[1] }, null), _createVNode("path", { "d": "M9 42V18L4 22L24 6L44 22L39 18V42H9Z", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M19 29V42H29V29H19Z", "fill": props.colors[3], "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M9 42H39", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null)]); }); export default BytedHome;