UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

28 lines 884 B
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedSketch = IconWrapper('byted-sketch', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("rect", { "x": "6", "y": "6", "width": "36", "height": "36", "rx": "3", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M18.6 16H29.4L33 20.7059L24 32L15 20.7059L18.6 16Z", "fill": props.colors[3], "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null)]); }); export default BytedSketch;