@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
44 lines • 1.44 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedChargingTreasure = IconWrapper('byted-charging-treasure', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"d": "M42.085 35L38.9573 8.64644C38.7782 7.13694 37.4983 6 35.9782 6H12.9425C11.4569 6 10.195 7.08729 9.97542 8.55657L6.02344 35",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("rect", {
"x": "6",
"y": "30",
"width": "36",
"height": "12",
"rx": "6",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("rect", {
"x": "19",
"y": "34",
"width": "4",
"height": "4",
"rx": "2",
"fill": props.colors[2]
}, null), _createVNode("path", {
"d": "M29 36H35",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M22 12H26",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null)]);
});
export default BytedChargingTreasure;