@fe6/icon-cube-vue
Version:
Water Icon 的支持自定义图标
51 lines • 1.8 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('byted-workbench', 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("polygon", {
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"fill": props.colors[1],
"fill-rule": "nonzero",
"stroke-linejoin": props.strokeLinejoin,
"points": "12 33 4 33 4 7 44 7 44 33 36 33"
}, null), _createVNode("path", {
"d": "M16,22 L16,26",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M24,33 L24,39",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M24,18 L24,26",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M32,14 L32,26",
"stroke": props.colors[2],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M12,41 L36,41",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null)])])]);
});