@fe6/icon-cube-vue
Version:
Water Icon 的支持自定义图标
31 lines • 1.15 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('byted-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",
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, [_createVNode("g", {
"transform": "translate(6.000000, 5.091863)",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, [_createVNode("path", {
"d": "M5,0.908136641 L0,36.9081366"
}, null), _createVNode("path", {
"d": "M36.9287415,0.908136641 L31.9643708,36.8633744",
"transform": "translate(33.964371, 18.886476) scale(-1, 1) translate(-33.964371, -18.886476) "
}, null), _createVNode("path", {
"d": "M18,0.908136641 L18,6.90813664"
}, null), _createVNode("path", {
"d": "M18,29.9081366 L18,36.9081366"
}, null), _createVNode("path", {
"d": "M18,14.9081366 L18,21.9081366"
}, null)])])]);
});