@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
57 lines • 1.97 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedMapRoad = IconWrapper('byted-map-road', 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"
}, [_createVNode("g", null, [_createVNode("rect", {
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"fill": props.colors[1],
"fill-rule": "nonzero",
"stroke-linejoin": props.strokeLinejoin,
"x": "4",
"y": "4",
"width": "40",
"height": "40",
"rx": "3"
}, null), _createVNode("path", {
"d": "M37,12 L33,36",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin,
"transform": "translate(35.000000, 24.000000) scale(-1, 1) translate(-35.000000, -24.000000) "
}, null), _createVNode("path", {
"d": "M16,12 L12,36",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M24,12 L24,16",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M24,22 L24,26",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M24,32 L24,36",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null)])])]);
});
export default BytedMapRoad;