UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

35 lines 1.34 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedOutbound = IconWrapper('byted-outbound', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("path", { "d": "M40 24L24 24", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M34 18L40 24L34 30", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("circle", { "cx": "20", "cy": "24", "r": "4", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth }, null), _createVNode("path", { "d": "M40.706 13C39.9214 11.8109 39.0133 10.7105 38 9.71713C34.3925 6.18064 29.4509 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44C29.4509 44 34.3925 41.8194 38 38.2829C39.0133 37.2895 39.9214 36.1891 40.706 35", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null)]); }); export default BytedOutbound;