UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

48 lines 1.49 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedHandheld = IconWrapper('byted-handheld', 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("polyline", { "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "points": "42 18 42 44 6 44 6 18 6 18" }, null), _createVNode("rect", { "stroke": props.colors[0], "stroke-width": props.strokeWidth, "fill": props.colors[1], "fill-rule": "nonzero", "x": "6", "y": "4", "width": "36", "height": "14" }, null), _createVNode("path", { "d": "M16,27 L16,35", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M12,31 L20,31", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("circle", { "stroke": props.colors[0], "stroke-width": props.strokeWidth, "fill": props.colors[1], "fill-rule": "nonzero", "cx": "32", "cy": "31", "r": "4" }, null)])]); }); export default BytedHandheld;